]>
git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/CallTip.h
bdf1123c74a8447a896433ee060befc6a7999b56
1 // Scintilla source code edit control
3 ** Interface to the call tip control.
5 // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
18 int startHighlight
; // character offset to start and...
19 int endHighlight
; // ...end of highlighted text
22 PRectangle rectUp
; // rectangle of last up angle in the tip
23 PRectangle rectDown
; // rectangle of last down arrow in the tip
24 int lineHeight
; // vertical line spacing
25 int offsetMain
; // The alignment point of the call tip
26 int tabSize
; // Tab size in pixels, <=0 no TAB expand
27 bool useStyleCallTip
; // if true, STYLE_CALLTIP should be used
29 // Private so CallTip objects can not be copied
30 CallTip(const CallTip
&) {}
31 CallTip
&operator=(const CallTip
&) { return *this; }
32 void DrawChunk(Surface
*surface
, int &x
, const char *s
,
33 int posStart
, int posEnd
, int ytext
, PRectangle rcClient
,
34 bool highlight
, bool draw
);
35 int PaintContents(Surface
*surfaceWindow
, bool draw
);
36 bool IsTabCharacter(char c
);
37 int NextTabPos(int x
);
45 ColourPair colourUnSel
;
47 ColourPair colourShade
;
48 ColourPair colourLight
;
55 /// Claim or accept palette entries for the colours required to paint a calltip.
56 void RefreshColourPalette(Palette
&pal
, bool want
);
58 void PaintCT(Surface
*surfaceWindow
);
60 void MouseClick(Point pt
);
62 /// Setup the calltip and return a rectangle of the area required.
63 PRectangle
CallTipStart(int pos
, Point pt
, const char *defn
,
64 const char *faceName
, int size
, int codePage_
,
65 int characterSet
, Window
&wParent
);
69 /// Set a range of characters to be displayed in a highlight style.
70 /// Commonly used to highlight the current parameter.
71 void SetHighlight(int start
, int end
);
73 /// Set the tab size in pixels for the call tip. 0 or -ve means no tab expand.
74 void SetTabSize(int tabSz
);
76 /// Used to determine which STYLE_xxxx to use for call tip information
77 bool UseStyleCallTip() const { return useStyleCallTip
;}
79 // Modify foreground and background colours
80 void SetForeBack(const ColourPair
&fore
, const ColourPair
&back
);