summaryrefslogtreecommitdiff
path: root/include/basic
diff options
context:
space:
mode:
authorGergo Mocsi <gmocsi91@gmail.com>2013-07-31 17:08:18 +0200
committerGergo Mocsi <gmocsi91@gmail.com>2013-09-02 18:16:53 +0200
commit27da1e7340c37c4cc098a367592da9e0ed42f7dc (patch)
tree7bbc86571dc65b85ab3d8da437732ce1f1736ef6 /include/basic
parentc40ba9c3e041a5b94bcbc2be7aa49a1c7df6a188 (diff)
GSOC work, ListBox appearance fix (at the borders) + code fixes
ListBox appearance fixed at the borders: a) bottom: it it placed over the current line (not under) b) right side: listbox's right side is adjusted to the window's right side Coed fixes: CodeCompleteOptions now intializes itself from the configuration file BasicIDE.xcs Added a checkbox for enabling extended types in the options dialog. Cursor is visible when the listbox is active. Fixed the small issue when deleting a character. Change-Id: I68b80143de245cebfce65cdd8af37ea4694aa81b
Diffstat (limited to 'include/basic')
-rw-r--r--include/basic/codecompletecache.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/basic/codecompletecache.hxx b/include/basic/codecompletecache.hxx
index cb92a64320cf..10c2f7335e91 100644
--- a/include/basic/codecompletecache.hxx
+++ b/include/basic/codecompletecache.hxx
@@ -53,7 +53,9 @@ public:
static bool IsCodeCompleteOn();
static void SetCodeCompleteOn( const bool& b );
+
static bool IsExtendedTypeDeclaration();
+ static void SetExtendedTypeDeclaration( const bool& b );
static bool IsProcedureAutoCompleteOn();
static void SetProcedureAutoCompleteOn( const bool& b );
@@ -66,7 +68,6 @@ public:
static bool IsAutoCorrectSpellingOn();
static void SetAutoCorrectSpellingOn( const bool& b );
-
};
class BASIC_DLLPUBLIC CodeCompleteDataCache