diff options
author | Gergo Mocsi <gmocsi91@gmail.com> | 2013-07-23 23:00:55 +0200 |
---|---|---|
committer | Gergo Mocsi <gmocsi91@gmail.com> | 2013-09-02 18:16:48 +0200 |
commit | 70ab744ccf047a90bee0506c6a60ade1935ece3d (patch) | |
tree | 1f84a5f1016decc5f0a9d725020cbcc1bd993115 /include/basic/codecompletecache.hxx | |
parent | 61ee2598b18890eb5798a3943fbedd22a24e7aea (diff) |
GSOC work, ModalDialog instead of menu entry
Created a ModalDialog named CodeCompleteOptionsDlg to edit options for code completition/suggestion.
Unimplemented features in it are disabled.
The dialog window uses Glade .ui file.
Change-Id: I1b59f386a9575aa25b38c5a1d7d1f020498a69ab
Diffstat (limited to 'include/basic/codecompletecache.hxx')
-rw-r--r-- | include/basic/codecompletecache.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/basic/codecompletecache.hxx b/include/basic/codecompletecache.hxx index 9033b89e2a1a..57ed673c13fa 100644 --- a/include/basic/codecompletecache.hxx +++ b/include/basic/codecompletecache.hxx @@ -41,6 +41,7 @@ class BASIC_DLLPUBLIC CodeCompleteOptions * */ private: bool bIsCodeCompleteOn; + bool bIsProcedureAutoCompleteOn; SvtMiscOptions aMiscOptions; public: @@ -49,6 +50,9 @@ public: static bool IsCodeCompleteOn(); static void SetCodeCompleteOn( const bool& b ); static bool IsExtendedTypeDeclaration(); + + static bool IsProcedureAutoCompleteOn(); + static void SetProcedureAutoCompleteOn( const bool& b ); }; class BASIC_DLLPUBLIC CodeCompleteDataCache |