]>
git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/CallTip.h
cb5bc29032fb3914d5740631fda935f3227c1b77
1 // Scintilla source code edit control
2 // CallTip.h - interface to the call tip control
3 // Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org>
4 // The License.txt file describes the conditions under which this software may be distributed.
14 // Private so CallTip objects can not be copied
15 CallTip(const CallTip
&) {}
16 CallTip
&operator=(const CallTip
&) { return *this; }
23 ColourPair colourUnSel
;
25 ColourPair colourShade
;
26 ColourPair colourLight
;
31 // Claim or accept palette entries for the colours required to paint a calltip
32 void RefreshColourPalette(Palette
&pal
, bool want
);
34 void PaintCT(Surface
*surfaceWindow
);
36 // Setup the calltip and return a rectangle of the area required
37 PRectangle
CallTipStart(int pos
, Point pt
, const char *defn
,
38 const char *faceName
, int size
);
42 // Set a range of characters to be displayed in a highlight style.
43 // Commonly used to highlight the current parameter.
44 void SetHighlight(int start
, int end
);