Code::Blocks
SVN r11506
|
Structure representing an individual calltip with an optional highlighted range. More...
#include <cbplugin.h>
Public Member Functions | |
CCCallTip (const wxString &tp) | |
Convenience constructor. More... | |
CCCallTip (const wxString &tp, int highlightStart, int highlightEnd) | |
Construct a calltip, specifying a highlighted range. More... | |
Public Attributes | |
int | hlStart |
The start index of the desired highlighted range. More... | |
int | hlEnd |
The end index of the desired highlighted range. More... | |
wxString | tip |
The content of the calltip. More... | |
Structure representing an individual calltip with an optional highlighted range.
Definition at line 782 of file cbplugin.h.
|
inline |
Convenience constructor.
Represents an individual calltip to be processed and displayed by CCManager.
tp | The content of the calltip. |
Definition at line 790 of file cbplugin.h.
|
inline |
Construct a calltip, specifying a highlighted range.
Represents an individual calltip, containing a highlighted range (generally the active parameter), to be processed and displayed by CCManager.
tp | The content of the calltip. |
highlightStart | The start index of the desired highlighted range. |
highlightEndThe | end index of the desired highlighted range. |
Definition at line 802 of file cbplugin.h.
int cbCodeCompletionPlugin::CCCallTip::hlEnd |
The end index of the desired highlighted range.
Definition at line 806 of file cbplugin.h.
int cbCodeCompletionPlugin::CCCallTip::hlStart |
The start index of the desired highlighted range.
Definition at line 805 of file cbplugin.h.
wxString cbCodeCompletionPlugin::CCCallTip::tip |
The content of the calltip.
Definition at line 807 of file cbplugin.h.