r5116 | eht16 | 2010-08-05 22:13:47 +0100 (Thu, 05 Aug 2010) | 3 lines
[geany-mirror.git] / scintilla / ScintillaBase.h
blob704ca88f8ac20dd6d3fdc353ff5540ffde7d5589
1 // Scintilla source code edit control
2 /** @file ScintillaBase.h
3 ** Defines an enhanced subclass of Editor with calltips, autocomplete and context menu.
4 **/
5 // Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
8 #ifndef SCINTILLABASE_H
9 #define SCINTILLABASE_H
11 #ifdef SCI_NAMESPACE
12 namespace Scintilla {
13 #endif
15 /**
17 class ScintillaBase : public Editor {
18 // Private so ScintillaBase objects can not be copied
19 ScintillaBase(const ScintillaBase &);
20 ScintillaBase &operator=(const ScintillaBase &);
22 protected:
23 /** Enumeration of commands and child windows. */
24 enum {
25 idCallTip=1,
26 idAutoComplete=2,
28 idcmdUndo=10,
29 idcmdRedo=11,
30 idcmdCut=12,
31 idcmdCopy=13,
32 idcmdPaste=14,
33 idcmdDelete=15,
34 idcmdSelectAll=16
37 bool displayPopupMenu;
38 Menu popup;
39 AutoComplete ac;
41 CallTip ct;
43 int listType; ///< 0 is an autocomplete list
44 int maxListWidth; /// Maximum width of list, in average character widths
46 #ifdef SCI_LEXER
47 bool performingStyle; ///< Prevent reentrance
48 int lexLanguage;
49 const LexerModule *lexCurrent;
50 PropSetSimple props;
51 enum {numWordLists=KEYWORDSET_MAX+1};
52 WordList *keyWordLists[numWordLists+1];
53 void SetLexer(uptr_t wParam);
54 void SetLexerLanguage(const char *languageName);
55 void Colourise(int start, int end);
56 #endif
58 ScintillaBase();
59 virtual ~ScintillaBase();
60 virtual void Initialise() = 0;
61 virtual void Finalise() = 0;
63 virtual void RefreshColourPalette(Palette &pal, bool want);
65 virtual void AddCharUTF(char *s, unsigned int len, bool treatAsDBCS=false);
66 void Command(int cmdId);
67 virtual void CancelModes();
68 virtual int KeyCommand(unsigned int iMessage);
70 void AutoCompleteStart(int lenEntered, const char *list);
71 void AutoCompleteCancel();
72 void AutoCompleteMove(int delta);
73 int AutoCompleteGetCurrent();
74 int AutoCompleteGetCurrentText(char *buffer);
75 void AutoCompleteCharacterAdded(char ch);
76 void AutoCompleteCharacterDeleted();
77 void AutoCompleteCompleted();
78 void AutoCompleteMoveToCurrentWord();
79 static void AutoCompleteDoubleClick(void *p);
81 void CallTipClick();
82 void CallTipShow(Point pt, const char *defn);
83 virtual void CreateCallTipWindow(PRectangle rc) = 0;
85 virtual void AddToPopUp(const char *label, int cmd=0, bool enabled=true) = 0;
86 void ContextMenu(Point pt);
88 virtual void ButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, bool alt);
90 virtual void NotifyStyleToNeeded(int endStyleNeeded);
91 public:
92 // Public so scintilla_send_message can use it
93 virtual sptr_t WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam);
96 #ifdef SCI_NAMESPACE
98 #endif
100 #endif