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 /////////////////////////////////////////////////////////////////////////////
21 IMPORTANT: include/wx/stc/stc.h is generated by src/stc/gen_iface.py from
22 src/stc/stc.h.in, don't edit stc.h file as your changes will be
23 lost after the next regeneration, edit stc.h.in and rerun the
24 gen_iface.py script instead!
26 Parts of this file generated by the script are found in between
27 the special "{{{" and "}}}" markers, the rest of it is copied
28 verbatim from src.h.in.
31 #ifndef _WX_STC_STC_H_
32 #define _WX_STC_STC_H_
38 #include "wx/control.h"
40 #include "wx/stopwatch.h"
42 #include "wx/textentry.h"
44 #include "wx/textctrl.h"
45 #endif // wxUSE_TEXTCTRL
47 class WXDLLIMPEXP_FWD_CORE wxScrollBar
;
49 // SWIG can't handle "#if" type of conditionals, only "#ifdef"
53 #if wxUSE_DRAG_AND_DROP
59 //----------------------------------------------------------------------
60 // STC constants generated section {{{
65 //----------------------------------------------------------------------
67 //----------------------------------------------------------------------
68 // Commands that can be bound to keystrokes section {{{
73 //----------------------------------------------------------------------
75 class ScintillaWX
; // forward declare
77 struct SCNotification
;
80 extern WXDLLIMPEXP_STC
const wxChar
* wxSTCNameStr
;
81 class WXDLLIMPEXP_FWD_STC wxStyledTextCtrl
;
82 class WXDLLIMPEXP_FWD_STC wxStyledTextEvent
;
85 //----------------------------------------------------------------------
87 class WXDLLIMPEXP_STC wxStyledTextCtrl
: public wxControl
88 , public wxTextEntryBase
90 , public wxTextAreaBase
91 #endif // wxUSE_TEXTCTRL
96 %%pythonAppend wxStyledTextCtrl
"self._setOORInfo(self)"
97 %%pythonAppend
wxStyledTextCtrl() ""
99 wxStyledTextCtrl(wxWindow
*parent
, wxWindowID id
=wxID_ANY
,
100 const wxPoint
& pos
= wxDefaultPosition
,
101 const wxSize
& size
= wxDefaultSize
, long style
= 0,
102 const wxString
& name
= wxPySTCNameStr
);
103 %%RenameCtor
(PreStyledTextCtrl
, wxStyledTextCtrl());
106 wxStyledTextCtrl(wxWindow
*parent
, wxWindowID id
=wxID_ANY
,
107 const wxPoint
& pos
= wxDefaultPosition
,
108 const wxSize
& size
= wxDefaultSize
, long style
= 0,
109 const wxString
& name
= wxSTCNameStr
);
110 wxStyledTextCtrl() { m_swx
= NULL
; }
115 bool Create(wxWindow
*parent
, wxWindowID id
=wxID_ANY
,
116 const wxPoint
& pos
= wxDefaultPosition
,
117 const wxSize
& size
= wxDefaultSize
, long style
= 0,
118 const wxString
& name
= wxSTCNameStr
);
121 //----------------------------------------------------------------------
122 // Generated method declaration section {{{
127 //----------------------------------------------------------------------
129 // Manually declared methods
131 // Returns the line number of the line with the caret.
132 int GetCurrentLine();
134 // Extract style settings from a spec-string which is composed of one or
135 // more of the following comma separated elements:
137 // bold turns on bold
138 // italic turns on italics
139 // fore:[name or #RRGGBB] sets the foreground colour
140 // back:[name or #RRGGBB] sets the background colour
141 // face:[facename] sets the font face name to use
142 // size:[num] sets the font size in points
143 // eol turns on eol filling
144 // underline turns on underlining
146 void StyleSetSpec(int styleNum
, const wxString
& spec
);
149 // Get the font of a style.
150 wxFont
StyleGetFont(int style
);
153 // Set style size, face, bold, italic, and underline attributes from
154 // a wxFont's attributes.
155 void StyleSetFont(int styleNum
, wxFont
& font
);
159 // Set all font style attributes at once.
160 void StyleSetFontAttr(int styleNum
, int size
,
161 const wxString
& faceName
,
162 bool bold
, bool italic
,
164 wxFontEncoding encoding
=wxFONTENCODING_DEFAULT
);
167 // Set the character set of the font in a style. Converts the Scintilla
168 // character set values to a wxFontEncoding.
169 void StyleSetCharacterSet(int style
, int characterSet
);
171 // Set the font encoding to be used by a style.
172 void StyleSetFontEncoding(int style
, wxFontEncoding encoding
);
175 // Perform one of the operations defined by the wxSTC_CMD_* constants.
176 void CmdKeyExecute(int cmd
);
179 // Set the left and right margin in the edit area, measured in pixels.
180 void SetMargins(int left
, int right
);
183 // Retrieve the start and end positions of the current selection.
185 void GetSelection(int* OUTPUT
, int* OUTPUT
);
187 void GetSelection(int* startPos
, int* endPos
);
190 // Retrieve the point in the window where a position is displayed.
191 wxPoint
PointFromPosition(int pos
);
194 // Scroll enough to make the given line visible
195 void ScrollToLine(int line
);
198 // Scroll enough to make the given column visible
199 void ScrollToColumn(int column
);
202 // Send a message to Scintilla
204 // NB: this method is not really const as it can modify the control but it
205 // has to be declared as such as it's called from both const and
206 // non-const methods and we can't distinguish between the two
207 wxIntPtr
SendMsg(int msg
, wxUIntPtr wp
=0, wxIntPtr lp
=0) const;
210 // Set the vertical scrollbar to use instead of the ont that's built-in.
211 void SetVScrollBar(wxScrollBar
* bar
);
214 // Set the horizontal scrollbar to use instead of the ont that's built-in.
215 void SetHScrollBar(wxScrollBar
* bar
);
217 // Can be used to prevent the EVT_CHAR handler from adding the char
218 bool GetLastKeydownProcessed() { return m_lastKeyDownConsumed
; }
219 void SetLastKeydownProcessed(bool val
) { m_lastKeyDownConsumed
= val
; }
221 // if we derive from wxTextAreaBase it already provides these methods
223 // Write the contents of the editor to filename
224 bool SaveFile(const wxString
& filename
);
226 // Load the contents of filename into the editor
227 bool LoadFile(const wxString
& filename
);
228 #endif // !wxUSE_TEXTCTRL
231 // Allow for simulating a DnD DragOver
232 wxDragResult
DoDragOver(wxCoord x
, wxCoord y
, wxDragResult def
);
234 // Allow for simulating a DnD DropText
235 bool DoDropText(long x
, long y
, const wxString
& data
);
238 // Specify whether anti-aliased fonts should be used. Will have no effect
239 // on some platforms, but on some (wxMac for example) can greatly improve
241 void SetUseAntiAliasing(bool useAA
);
243 // Returns the current UseAntiAliasing setting.
244 bool GetUseAntiAliasing();
248 // The following methods are nearly equivallent to their similarly named
249 // cousins above. The difference is that these methods bypass wxString
250 // and always use a char* even if used in a unicode build of wxWidgets.
251 // In that case the character data will be utf-8 encoded since that is
252 // what is used internally by Scintilla in unicode builds.
254 // Add text to the document at current position.
255 void AddTextRaw(const char* text
);
257 // Insert string at a position.
258 void InsertTextRaw(int pos
, const char* text
);
260 // Retrieve the text of the line containing the caret.
261 // Returns the index of the caret on the line.
263 wxCharBuffer
GetCurLineRaw(int* OUTPUT
);
265 wxCharBuffer
GetCurLineRaw(int* linePos
=NULL
);
268 // Retrieve the contents of a line.
269 wxCharBuffer
GetLineRaw(int line
);
271 // Retrieve the selected text.
272 wxCharBuffer
GetSelectedTextRaw();
274 // Retrieve a range of text.
275 wxCharBuffer
GetTextRangeRaw(int startPos
, int endPos
);
277 // Replace the contents of the document with the argument text.
278 void SetTextRaw(const char* text
);
280 // Retrieve all the text in the document.
281 wxCharBuffer
GetTextRaw();
283 // Append a string to the end of the document without changing the selection.
284 void AppendTextRaw(const char* text
);
287 %%pythoncode
"_stc_utf8_methods.py"
291 // implement wxTextEntryBase pure virtual methods
292 // ----------------------------------------------
294 virtual void WriteText(const wxString
& text
) { AddText(text
); }
295 virtual wxString
GetValue() const { return GetText(); }
296 virtual void Remove(long from
, long to
)
298 Replace(from
, to
, "");
300 virtual void Replace(long from
, long to
, const wxString
& text
)
302 SetTargetStart(from
);
308 These functions are already declared in the generated section.
312 virtual void Paste();
317 virtual bool CanUndo() const;
318 virtual bool CanRedo() const;
322 virtual void SetInsertionPoint(long pos
) { SetCurrentPos(pos
); }
323 virtual long GetInsertionPoint() const { return GetCurrentPos(); }
324 virtual long GetLastPosition() const { return GetTextLength(); }
326 virtual void SetSelection(long from
, long to
)
328 if ( from
== -1 && to
== -1 )
334 SetSelectionStart(from
);
339 virtual void GetSelection(long *from
, long *to
) const
342 *from
= GetSelectionStart();
344 *to
= GetSelectionEnd();
347 virtual bool IsEditable() const { return !GetReadOnly(); }
348 virtual void SetEditable(bool editable
) { SetReadOnly(!editable
); }
350 // implement wxTextAreaBase pure virtual methods
351 // ---------------------------------------------
353 virtual int GetLineLength(long n
) const { return GetLine(n
).length(); }
354 virtual wxString
GetLineText(long n
) const { return GetLine(n
); }
355 virtual int GetNumberOfLines() const { return GetLineCount(); }
357 virtual bool IsModified() const { return GetModify(); }
358 virtual void MarkDirty() { wxFAIL_MSG("not implemented"); }
359 virtual void DiscardEdits() { SetSavePoint(); }
361 virtual bool SetStyle(long WXUNUSED(start
), long WXUNUSED(end
),
362 const wxTextAttr
& WXUNUSED(style
))
364 wxFAIL_MSG("not implemented");
369 virtual bool GetStyle(long WXUNUSED(position
), wxTextAttr
& WXUNUSED(style
))
371 wxFAIL_MSG("not implemented");
376 virtual bool SetDefaultStyle(const wxTextAttr
& WXUNUSED(style
))
378 wxFAIL_MSG("not implemented");
383 virtual long XYToPosition(long x
, long y
) const
385 long pos
= PositionFromLine(y
);
390 virtual bool PositionToXY(long pos
, long *x
, long *y
) const
397 long l
= LineFromPosition(pos
);
406 virtual void ShowPosition(long pos
) { GotoPos(pos
); }
408 // FIXME-VC6: can't use wxWindow here because of "error C2603: illegal
409 // access declaration: 'wxWindow' is not a direct base of
410 // 'wxStyledTextCtrl'" with VC6
411 using wxControl::HitTest
;
413 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const
415 const long l
= PositionFromPoint(pt
);
417 return wxTE_HT_BELOW
; // we don't really know where it was
422 return wxTE_HT_ON_TEXT
;
427 virtual bool DoLoadFile(const wxString
& file
, int fileType
);
428 virtual bool DoSaveFile(const wxString
& file
, int fileType
);
431 void OnPaint(wxPaintEvent
& evt
);
432 void OnScrollWin(wxScrollWinEvent
& evt
);
433 void OnScroll(wxScrollEvent
& evt
);
434 void OnSize(wxSizeEvent
& evt
);
435 void OnMouseLeftDown(wxMouseEvent
& evt
);
436 void OnMouseMove(wxMouseEvent
& evt
);
437 void OnMouseLeftUp(wxMouseEvent
& evt
);
438 void OnMouseRightUp(wxMouseEvent
& evt
);
439 void OnMouseMiddleUp(wxMouseEvent
& evt
);
440 void OnContextMenu(wxContextMenuEvent
& evt
);
441 void OnMouseWheel(wxMouseEvent
& evt
);
442 void OnChar(wxKeyEvent
& evt
);
443 void OnKeyDown(wxKeyEvent
& evt
);
444 void OnLoseFocus(wxFocusEvent
& evt
);
445 void OnGainFocus(wxFocusEvent
& evt
);
446 void OnSysColourChanged(wxSysColourChangedEvent
& evt
);
447 void OnEraseBackground(wxEraseEvent
& evt
);
448 void OnMenu(wxCommandEvent
& evt
);
449 void OnListBox(wxCommandEvent
& evt
);
450 void OnIdle(wxIdleEvent
& evt
);
452 virtual wxSize
DoGetBestSize() const;
454 // Turn notifications from Scintilla into events
456 void NotifyParent(SCNotification
* scn
);
459 DECLARE_EVENT_TABLE()
460 DECLARE_DYNAMIC_CLASS(wxStyledTextCtrl
)
465 wxStopWatch m_stopWatch
;
466 wxScrollBar
* m_vScrollBar
;
467 wxScrollBar
* m_hScrollBar
;
469 bool m_lastKeyDownConsumed
;
471 // the timestamp that consists of the last wheel event
472 // added to the time taken to process that event.
473 long m_lastWheelTimestamp
;
475 friend class ScintillaWX
;
476 friend class Platform
;
480 //----------------------------------------------------------------------
482 class WXDLLIMPEXP_STC wxStyledTextEvent
: public wxCommandEvent
{
484 wxStyledTextEvent(wxEventType commandType
=0, int id
=0);
486 wxStyledTextEvent(const wxStyledTextEvent
& event
);
488 ~wxStyledTextEvent() {}
490 void SetPosition(int pos
) { m_position
= pos
; }
491 void SetKey(int k
) { m_key
= k
; }
492 void SetModifiers(int m
) { m_modifiers
= m
; }
493 void SetModificationType(int t
) { m_modificationType
= t
; }
494 void SetText(const wxString
& t
) { m_text
= t
; }
495 void SetLength(int len
) { m_length
= len
; }
496 void SetLinesAdded(int num
) { m_linesAdded
= num
; }
497 void SetLine(int val
) { m_line
= val
; }
498 void SetFoldLevelNow(int val
) { m_foldLevelNow
= val
; }
499 void SetFoldLevelPrev(int val
) { m_foldLevelPrev
= val
; }
500 void SetMargin(int val
) { m_margin
= val
; }
501 void SetMessage(int val
) { m_message
= val
; }
502 void SetWParam(int val
) { m_wParam
= val
; }
503 void SetLParam(int val
) { m_lParam
= val
; }
504 void SetListType(int val
) { m_listType
= val
; }
505 void SetX(int val
) { m_x
= val
; }
506 void SetY(int val
) { m_y
= val
; }
507 void SetDragText(const wxString
& val
) { m_dragText
= val
; }
508 void SetDragAllowMove(bool val
) { m_dragAllowMove
= val
; }
510 void SetDragResult(wxDragResult val
) { m_dragResult
= val
; }
513 int GetPosition() const { return m_position
; }
514 int GetKey() const { return m_key
; }
515 int GetModifiers() const { return m_modifiers
; }
516 int GetModificationType() const { return m_modificationType
; }
517 wxString
GetText() const { return m_text
; }
518 int GetLength() const { return m_length
; }
519 int GetLinesAdded() const { return m_linesAdded
; }
520 int GetLine() const { return m_line
; }
521 int GetFoldLevelNow() const { return m_foldLevelNow
; }
522 int GetFoldLevelPrev() const { return m_foldLevelPrev
; }
523 int GetMargin() const { return m_margin
; }
524 int GetMessage() const { return m_message
; }
525 int GetWParam() const { return m_wParam
; }
526 int GetLParam() const { return m_lParam
; }
527 int GetListType() const { return m_listType
; }
528 int GetX() const { return m_x
; }
529 int GetY() const { return m_y
; }
530 wxString
GetDragText() { return m_dragText
; }
531 bool GetDragAllowMove() { return m_dragAllowMove
; }
533 wxDragResult
GetDragResult() { return m_dragResult
; }
536 bool GetShift() const;
537 bool GetControl() const;
540 virtual wxEvent
* Clone() const { return new wxStyledTextEvent(*this); }
544 DECLARE_DYNAMIC_CLASS(wxStyledTextEvent
)
550 int m_modificationType
; // wxEVT_STC_MODIFIED
558 int m_margin
; // wxEVT_STC_MARGINCLICK
560 int m_message
; // wxEVT_STC_MACRORECORD
568 wxString m_dragText
; // wxEVT_STC_START_DRAG, wxEVT_STC_DO_DROP
569 bool m_dragAllowMove
; // wxEVT_STC_START_DRAG
571 #if wxUSE_DRAG_AND_DROP
572 wxDragResult m_dragResult
; // wxEVT_STC_DRAG_OVER,wxEVT_STC_DO_DROP
580 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_CHANGE
;
581 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_STYLENEEDED
;
582 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_CHARADDED
;
583 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_SAVEPOINTREACHED
;
584 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_SAVEPOINTLEFT
;
585 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_ROMODIFYATTEMPT
;
586 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_KEY
;
587 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_DOUBLECLICK
;
588 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_UPDATEUI
;
589 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_MODIFIED
;
590 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_MACRORECORD
;
591 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_MARGINCLICK
;
592 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_NEEDSHOWN
;
593 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_PAINTED
;
594 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_USERLISTSELECTION
;
595 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_URIDROPPED
;
596 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_DWELLSTART
;
597 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_DWELLEND
;
598 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_START_DRAG
;
599 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_DRAG_OVER
;
600 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_DO_DROP
;
601 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_ZOOM
;
602 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_HOTSPOT_CLICK
;
603 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_HOTSPOT_DCLICK
;
604 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_CALLTIP_CLICK
;
605 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_AUTOCOMP_SELECTION
;
606 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_INDICATOR_CLICK
;
607 extern WXDLLIMPEXP_STC
const wxEventType wxEVT_STC_INDICATOR_RELEASE
;
611 wxEVT_STC_STYLENEEDED
,
613 wxEVT_STC_SAVEPOINTREACHED
,
614 wxEVT_STC_SAVEPOINTLEFT
,
615 wxEVT_STC_ROMODIFYATTEMPT
,
617 wxEVT_STC_DOUBLECLICK
,
620 wxEVT_STC_MACRORECORD
,
621 wxEVT_STC_MARGINCLICK
,
624 wxEVT_STC_USERLISTSELECTION
,
625 wxEVT_STC_URIDROPPED
,
626 wxEVT_STC_DWELLSTART
,
628 wxEVT_STC_START_DRAG
,
632 wxEVT_STC_HOTSPOT_CLICK
,
633 wxEVT_STC_HOTSPOT_DCLICK
,
634 wxEVT_STC_CALLTIP_CLICK
,
635 wxEVT_STC_AUTOCOMP_SELECTION
,
636 wxEVT_STC_INDICATOR_CLICK
,
637 wxEVT_STC_INDICATOR_RELEASE
644 typedef void (wxEvtHandler::*wxStyledTextEventFunction
)(wxStyledTextEvent
&);
646 #define EVT_STC_CHANGE(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_CHANGE, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
647 #define EVT_STC_STYLENEEDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_STYLENEEDED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
648 #define EVT_STC_CHARADDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_CHARADDED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
649 #define EVT_STC_SAVEPOINTREACHED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_SAVEPOINTREACHED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
650 #define EVT_STC_SAVEPOINTLEFT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_SAVEPOINTLEFT, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
651 #define EVT_STC_ROMODIFYATTEMPT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_ROMODIFYATTEMPT, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
652 #define EVT_STC_KEY(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_KEY, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
653 #define EVT_STC_DOUBLECLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DOUBLECLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
654 #define EVT_STC_UPDATEUI(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_UPDATEUI, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
655 #define EVT_STC_MODIFIED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_MODIFIED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
656 #define EVT_STC_MACRORECORD(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_MACRORECORD, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
657 #define EVT_STC_MARGINCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_MARGINCLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
658 #define EVT_STC_NEEDSHOWN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_NEEDSHOWN, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
659 #define EVT_STC_PAINTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_PAINTED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
660 #define EVT_STC_USERLISTSELECTION(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_USERLISTSELECTION, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
661 #define EVT_STC_URIDROPPED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_URIDROPPED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
662 #define EVT_STC_DWELLSTART(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DWELLSTART, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
663 #define EVT_STC_DWELLEND(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DWELLEND, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
664 #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 ),
665 #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 ),
666 #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 ),
667 #define EVT_STC_ZOOM(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_ZOOM, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
668 #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 ),
669 #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 ),
670 #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 ),
671 #define EVT_STC_AUTOCOMP_SELECTION(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_AUTOCOMP_SELECTION id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
672 #define EVT_STC_INDICATOR_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_INDICATOR_CLICK id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
673 #define EVT_STC_INDICATOR_RELEASE(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_INDICATOR_RELEASE id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
679 #endif // _WX_STC_STC_H_