1 ////////////////////////////////////////////////////////////////////////////
3 // Purpose: A wxWidgets implementation of Scintilla. This class is the
4 // one meant to be used directly by wx applications. It does not
5 // derive directly from the Scintilla classes, and in fact there
6 // is no mention of Scintilla classes at all in this header.
7 // This class delegates all method calls and events to the
8 // Scintilla objects and so forth. This allows the use of
9 // Scintilla without polluting the namespace with all the
10 // classes and itentifiers from Scintilla.
14 // Created: 13-Jan-2000
16 // Copyright: (c) 2000 by Total Control Software
17 // Licence: wxWindows license
18 /////////////////////////////////////////////////////////////////////////////
28 #ifdef WXMAKINGDLL_STC
29 #define WXDLLIMPEXP_STC WXEXPORT
30 #elif defined(WXUSINGDLL)
31 #define WXDLLIMPEXP_STC WXIMPORT
32 #else // not making nor using DLL
33 #define WXDLLIMPEXP_STC
37 // SWIG can't handle "#if" type of conditionals, only "#ifdef"
41 #if wxUSE_DRAG_AND_DROP
46 //----------------------------------------------------------------------
48 // Should a wxPopupWindow be used for the call tips and autocomplete windows?
49 #ifndef wxSTC_USE_POPUP
50 #define wxSTC_USE_POPUP 1
53 //----------------------------------------------------------------------
54 // BEGIN generated section. The following code is automatically generated
55 // by gen_iface.py. Do not edit this file. Edit stc.h.in instead
61 //-----------------------------------------
62 // Commands that can be bound to keystrokes
67 // END of generated section
68 //----------------------------------------------------------------------
70 class ScintillaWX
; // forward declare
72 struct SCNotification
;
75 extern WXDLLIMPEXP_STC
const wxChar
* wxSTCNameStr
;
76 class WXDLLIMPEXP_STC wxStyledTextCtrl
;
77 class WXDLLIMPEXP_STC wxStyledTextEvent
;
80 //----------------------------------------------------------------------
82 class WXDLLIMPEXP_STC wxStyledTextCtrl
: public wxControl
{
86 %%pythonAppend wxStyledTextCtrl
"self._setOORInfo(self)"
87 %%pythonAppend
wxStyledTextCtrl() ""
89 wxStyledTextCtrl(wxWindow
*parent
, wxWindowID id
=wxID_ANY
,
90 const wxPoint
& pos
= wxDefaultPosition
,
91 const wxSize
& size
= wxDefaultSize
, long style
= 0,
92 const wxString
& name
= wxPySTCNameStr
);
93 %%RenameCtor
(PreStyledTextCtrl
, wxStyledTextCtrl());
96 wxStyledTextCtrl(wxWindow
*parent
, wxWindowID id
=wxID_ANY
,
97 const wxPoint
& pos
= wxDefaultPosition
,
98 const wxSize
& size
= wxDefaultSize
, long style
= 0,
99 const wxString
& name
= wxSTCNameStr
);
100 wxStyledTextCtrl() { m_swx
= NULL
; }
105 bool Create(wxWindow
*parent
, wxWindowID id
=wxID_ANY
,
106 const wxPoint
& pos
= wxDefaultPosition
,
107 const wxSize
& size
= wxDefaultSize
, long style
= 0,
108 const wxString
& name
= wxSTCNameStr
);
111 //----------------------------------------------------------------------
112 // BEGIN generated section. The following code is automatically generated
113 // by gen_iface.py. Do not edit this file. Edit stc.h.in instead
118 // END of generated section
119 //----------------------------------------------------------------------
123 // Returns the line number of the line with the caret.
124 int GetCurrentLine();
126 // Extract style settings from a spec-string which is composed of one or
127 // more of the following comma separated elements:
129 // bold turns on bold
130 // italic turns on italics
131 // fore:[name or #RRGGBB] sets the foreground colour
132 // back:[name or #RRGGBB] sets the background colour
133 // face:[facename] sets the font face name to use
134 // size:[num] sets the font size in points
135 // eol turns on eol filling
136 // underline turns on underlining
138 void StyleSetSpec(int styleNum
, const wxString
& spec
);
142 // Set style size, face, bold, italic, and underline attributes from
143 // a wxFont's attributes.
144 void StyleSetFont(int styleNum
, wxFont
& font
);
148 // Set all font style attributes at once.
149 void StyleSetFontAttr(int styleNum
, int size
,
150 const wxString
& faceName
,
151 bool bold
, bool italic
,
156 // Perform one of the operations defined by the wxSTC_CMD_* constants.
157 void CmdKeyExecute(int cmd
);
161 // Set the left and right margin in the edit area, measured in pixels.
162 void SetMargins(int left
, int right
);
165 // Retrieve the start and end positions of the current selection.
167 void GetSelection(int* OUTPUT
, int* OUTPUT
);
169 void GetSelection(int* startPos
, int* endPos
);
172 // Retrieve the point in the window where a position is displayed.
173 wxPoint
PointFromPosition(int pos
);
176 // Scroll enough to make the given line visible
177 void ScrollToLine(int line
);
180 // Scroll enough to make the given column visible
181 void ScrollToColumn(int column
);
184 // Send a message to Scintilla
185 long SendMsg(int msg
, long wp
=0, long lp
=0);
188 // Set the vertical scrollbar to use instead of the ont that's built-in.
189 void SetVScrollBar(wxScrollBar
* bar
);
192 // Set the horizontal scrollbar to use instead of the ont that's built-in.
193 void SetHScrollBar(wxScrollBar
* bar
);
195 // Can be used to prevent the EVT_CHAR handler from adding the char
196 bool GetLastKeydownProcessed() { return m_lastKeyDownConsumed
; }
197 void SetLastKeydownProcessed(bool val
) { m_lastKeyDownConsumed
= val
; }
199 // Write the contents of the editor to filename
200 bool SaveFile(const wxString
& filename
);
202 // Load the contents of filename into the editor
203 bool LoadFile(const wxString
& filename
);
206 // Allow for simulating a DnD DragOver
207 wxDragResult
DoDragOver(wxCoord x
, wxCoord y
, wxDragResult def
);
209 // Allow for simulating a DnD DropText
210 bool DoDropText(long x
, long y
, const wxString
& data
);
213 // Specify whether anti-aliased fonts should be used. Will have no effect
214 // on some platforms, but on some (wxMac for example) can greatly improve
216 void SetUseAntiAliasing(bool useAA
);
218 // Returns the current UseAntiAliasing setting.
219 bool GetUseAntiAliasing();
223 // The following methods are nearly equivallent to their similarly named
224 // cousins above. The difference is that these methods bypass wxString
225 // and always use a char* even if used in a unicode build of wxWidgets.
226 // In that case the character data will be utf-8 encoded since that is
227 // what is used internally by Scintilla in unicode builds.
229 // Add text to the document at current position.
230 void AddTextRaw(const char* text
);
232 // Insert string at a position.
233 void InsertTextRaw(int pos
, const char* text
);
235 // Retrieve the text of the line containing the caret.
236 // Returns the index of the caret on the line.
238 wxCharBuffer
GetCurLineRaw(int* OUTPUT
);
240 wxCharBuffer
GetCurLineRaw(int* linePos
=NULL
);
243 // Retrieve the contents of a line.
244 wxCharBuffer
GetLineRaw(int line
);
246 // Retrieve the selected text.
247 wxCharBuffer
GetSelectedTextRaw();
249 // Retrieve a range of text.
250 wxCharBuffer
GetTextRangeRaw(int startPos
, int endPos
);
252 // Replace the contents of the document with the argument text.
253 void SetTextRaw(const char* text
);
255 // Retrieve all the text in the document.
256 wxCharBuffer
GetTextRaw();
258 // Append a string to the end of the document without changing the selection.
259 void AppendTextRaw(const char* text
);
263 %pythoncode
"_stc_utf8_methods.py"
265 //----------------------------------------------------------------------
271 void OnPaint(wxPaintEvent
& evt
);
272 void OnScrollWin(wxScrollWinEvent
& evt
);
273 void OnScroll(wxScrollEvent
& evt
);
274 void OnSize(wxSizeEvent
& evt
);
275 void OnMouseLeftDown(wxMouseEvent
& evt
);
276 void OnMouseMove(wxMouseEvent
& evt
);
277 void OnMouseLeftUp(wxMouseEvent
& evt
);
278 void OnMouseRightUp(wxMouseEvent
& evt
);
279 void OnMouseMiddleUp(wxMouseEvent
& evt
);
280 void OnContextMenu(wxContextMenuEvent
& evt
);
281 void OnMouseWheel(wxMouseEvent
& evt
);
282 void OnChar(wxKeyEvent
& evt
);
283 void OnKeyDown(wxKeyEvent
& evt
);
284 void OnLoseFocus(wxFocusEvent
& evt
);
285 void OnGainFocus(wxFocusEvent
& evt
);
286 void OnSysColourChanged(wxSysColourChangedEvent
& evt
);
287 void OnEraseBackground(wxEraseEvent
& evt
);
288 void OnMenu(wxCommandEvent
& evt
);
289 void OnListBox(wxCommandEvent
& evt
);
290 void OnIdle(wxIdleEvent
& evt
);
292 virtual wxSize
DoGetBestSize() const;
294 // Turn notifications from Scintilla into events
296 void NotifyParent(SCNotification
* scn
);
298 DECLARE_EVENT_TABLE()
299 DECLARE_DYNAMIC_CLASS(wxStyledTextCtrl
)
304 wxStopWatch m_stopWatch
;
305 wxScrollBar
* m_vScrollBar
;
306 wxScrollBar
* m_hScrollBar
;
308 bool m_lastKeyDownConsumed
;
310 friend class ScintillaWX
;
311 friend class Platform
;
315 //----------------------------------------------------------------------
317 class WXDLLIMPEXP_STC wxStyledTextEvent
: public wxCommandEvent
{
319 wxStyledTextEvent(wxEventType commandType
=0, int id
=0);
321 wxStyledTextEvent(const wxStyledTextEvent
& event
);
323 ~wxStyledTextEvent() {}
325 void SetPosition(int pos
) { m_position
= pos
; }
326 void SetKey(int k
) { m_key
= k
; }
327 void SetModifiers(int m
) { m_modifiers
= m
; }
328 void SetModificationType(int t
) { m_modificationType
= t
; }
329 void SetText(const wxString
& t
) { m_text
= t
; }
330 void SetLength(int len
) { m_length
= len
; }
331 void SetLinesAdded(int num
) { m_linesAdded
= num
; }
332 void SetLine(int val
) { m_line
= val
; }
333 void SetFoldLevelNow(int val
) { m_foldLevelNow
= val
; }
334 void SetFoldLevelPrev(int val
) { m_foldLevelPrev
= val
; }
335 void SetMargin(int val
) { m_margin
= val
; }
336 void SetMessage(int val
) { m_message
= val
; }
337 void SetWParam(int val
) { m_wParam
= val
; }
338 void SetLParam(int val
) { m_lParam
= val
; }
339 void SetListType(int val
) { m_listType
= val
; }
340 void SetX(int val
) { m_x
= val
; }
341 void SetY(int val
) { m_y
= val
; }
342 void SetDragText(const wxString
& val
) { m_dragText
= val
; }
343 void SetDragAllowMove(bool val
) { m_dragAllowMove
= val
; }
345 void SetDragResult(wxDragResult val
) { m_dragResult
= val
; }
348 int GetPosition() const { return m_position
; }
349 int GetKey() const { return m_key
; }
350 int GetModifiers() const { return m_modifiers
; }
351 int GetModificationType() const { return m_modificationType
; }
352 wxString
GetText() const { return m_text
; }
353 int GetLength() const { return m_length
; }
354 int GetLinesAdded() const { return m_linesAdded
; }
355 int GetLine() const { return m_line
; }
356 int GetFoldLevelNow() const { return m_foldLevelNow
; }
357 int GetFoldLevelPrev() const { return m_foldLevelPrev
; }
358 int GetMargin() const { return m_margin
; }
359 int GetMessage() const { return m_message
; }
360 int GetWParam() const { return m_wParam
; }
361 int GetLParam() const { return m_lParam
; }
362 int GetListType() const { return m_listType
; }
363 int GetX() const { return m_x
; }
364 int GetY() const { return m_y
; }
365 wxString
GetDragText() { return m_dragText
; }
366 bool GetDragAllowMove() { return m_dragAllowMove
; }
368 wxDragResult
GetDragResult() { return m_dragResult
; }
371 bool GetShift() const;
372 bool GetControl() const;
375 virtual wxEvent
* Clone() const { return new wxStyledTextEvent(*this); }
379 DECLARE_DYNAMIC_CLASS(wxStyledTextEvent
)
385 int m_modificationType
; // wxEVT_STC_MODIFIED
393 int m_margin
; // wxEVT_STC_MARGINCLICK
395 int m_message
; // wxEVT_STC_MACRORECORD
403 wxString m_dragText
; // wxEVT_STC_START_DRAG, wxEVT_STC_DO_DROP
404 bool m_dragAllowMove
; // wxEVT_STC_START_DRAG
406 #if wxUSE_DRAG_AND_DROP
407 wxDragResult m_dragResult
; // wxEVT_STC_DRAG_OVER,wxEVT_STC_DO_DROP
415 BEGIN_DECLARE_EVENT_TYPES()
416 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_CHANGE
, 1650)
417 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_STYLENEEDED
, 1651)
418 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_CHARADDED
, 1652)
419 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_SAVEPOINTREACHED
, 1653)
420 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_SAVEPOINTLEFT
, 1654)
421 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_ROMODIFYATTEMPT
, 1655)
422 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_KEY
, 1656)
423 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_DOUBLECLICK
, 1657)
424 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_UPDATEUI
, 1658)
425 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_MODIFIED
, 1659)
426 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_MACRORECORD
, 1660)
427 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_MARGINCLICK
, 1661)
428 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_NEEDSHOWN
, 1662)
429 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_PAINTED
, 1664)
430 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_USERLISTSELECTION
, 1665)
431 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_URIDROPPED
, 1666)
432 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_DWELLSTART
, 1667)
433 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_DWELLEND
, 1668)
434 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_START_DRAG
, 1669)
435 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_DRAG_OVER
, 1670)
436 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_DO_DROP
, 1671)
437 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_ZOOM
, 1672)
438 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_HOTSPOT_CLICK
, 1673)
439 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_HOTSPOT_DCLICK
, 1674)
440 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_STC
, wxEVT_STC_CALLTIP_CLICK
, 1675)
441 END_DECLARE_EVENT_TYPES()
445 wxEVT_STC_STYLENEEDED
,
447 wxEVT_STC_SAVEPOINTREACHED
,
448 wxEVT_STC_SAVEPOINTLEFT
,
449 wxEVT_STC_ROMODIFYATTEMPT
,
451 wxEVT_STC_DOUBLECLICK
,
454 wxEVT_STC_MACRORECORD
,
455 wxEVT_STC_MARGINCLICK
,
458 wxEVT_STC_USERLISTSELECTION
,
459 wxEVT_STC_URIDROPPED
,
460 wxEVT_STC_DWELLSTART
,
462 wxEVT_STC_START_DRAG
,
466 wxEVT_STC_HOTSPOT_CLICK
,
467 wxEVT_STC_HOTSPOT_DCLICK
,
468 wxEVT_STC_CALLTIP_CLICK
475 typedef void (wxEvtHandler::*wxStyledTextEventFunction
)(wxStyledTextEvent
&);
477 #define EVT_STC_CHANGE(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_CHANGE, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
478 #define EVT_STC_STYLENEEDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_STYLENEEDED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
479 #define EVT_STC_CHARADDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_CHARADDED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
480 #define EVT_STC_SAVEPOINTREACHED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_SAVEPOINTREACHED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
481 #define EVT_STC_SAVEPOINTLEFT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_SAVEPOINTLEFT, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
482 #define EVT_STC_ROMODIFYATTEMPT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_ROMODIFYATTEMPT, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
483 #define EVT_STC_KEY(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_KEY, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
484 #define EVT_STC_DOUBLECLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DOUBLECLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
485 #define EVT_STC_UPDATEUI(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_UPDATEUI, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
486 #define EVT_STC_MODIFIED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_MODIFIED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
487 #define EVT_STC_MACRORECORD(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_MACRORECORD, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
488 #define EVT_STC_MARGINCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_MARGINCLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
489 #define EVT_STC_NEEDSHOWN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_NEEDSHOWN, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
490 #define EVT_STC_PAINTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_PAINTED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
491 #define EVT_STC_USERLISTSELECTION(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_USERLISTSELECTION, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
492 #define EVT_STC_URIDROPPED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_URIDROPPED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
493 #define EVT_STC_DWELLSTART(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DWELLSTART, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
494 #define EVT_STC_DWELLEND(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DWELLEND, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
495 #define EVT_STC_START_DRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_START_DRAG, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
496 #define EVT_STC_DRAG_OVER(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DRAG_OVER, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
497 #define EVT_STC_DO_DROP(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DO_DROP, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
498 #define EVT_STC_ZOOM(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_ZOOM, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
499 #define EVT_STC_HOTSPOT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_HOTSPOT_CLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
500 #define EVT_STC_HOTSPOT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_HOTSPOT_DCLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
501 #define EVT_STC_CALLTIP_CLICK(id, fn)) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_CALLTIP_CLICK id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
505 //----------------------------------------------------------------------
506 // Utility functions used within wxSTC
511 wxString
stc2wx(const char* str
);
512 wxString
stc2wx(const char* str
, size_t len
);
513 const wxWX2MBbuf
wx2stc(const wxString
& str
);
517 inline wxString
stc2wx(const char* str
) {
518 return wxString(str
);
520 inline wxString
stc2wx(const char* str
, size_t len
) {
521 return wxString(str
, len
);
523 inline const wxWX2MBbuf
wx2stc(const wxString
& str
) {
524 return str
.mbc_str();
530 //----------------------------------------------------------------------