]>
Commit | Line | Data |
---|---|---|
f97d84a6 | 1 | //////////////////////////////////////////////////////////////////////////// |
a5c2ccf2 | 2 | // Name: wx/stc/stc.h |
be698f50 | 3 | // Purpose: A wxWidgets implementation of Scintilla. This class is the |
f97d84a6 RD |
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. | |
11 | // | |
12 | // Author: Robin Dunn | |
13 | // | |
14 | // Created: 13-Jan-2000 | |
15 | // RCS-ID: $Id$ | |
16 | // Copyright: (c) 2000 by Total Control Software | |
17 | // Licence: wxWindows license | |
18 | ///////////////////////////////////////////////////////////////////////////// | |
19 | ||
a5c2ccf2 VZ |
20 | /* |
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! | |
25 | ||
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. | |
29 | */ | |
30 | ||
ea88e9bc VS |
31 | #ifndef _WX_STC_STC_H_ |
32 | #define _WX_STC_STC_H_ | |
f97d84a6 | 33 | |
29825f5f | 34 | #include "wx/defs.h" |
f97d84a6 | 35 | |
29825f5f PC |
36 | #if wxUSE_STC |
37 | ||
38 | #include "wx/control.h" | |
d6655166 | 39 | #include "wx/dnd.h" |
29825f5f | 40 | #include "wx/stopwatch.h" |
f97d84a6 | 41 | |
93578927 | 42 | #include "wx/textentry.h" |
2bfca191 VZ |
43 | #if wxUSE_TEXTCTRL |
44 | #include "wx/textctrl.h" | |
45 | #endif // wxUSE_TEXTCTRL | |
46 | ||
7e0c58e9 | 47 | class WXDLLIMPEXP_FWD_CORE wxScrollBar; |
2b5f62a0 | 48 | |
9d41f689 RD |
49 | // SWIG can't handle "#if" type of conditionals, only "#ifdef" |
50 | #ifdef SWIG | |
51 | #define STC_USE_DND 1 | |
52 | #else | |
53 | #if wxUSE_DRAG_AND_DROP | |
54 | #define STC_USE_DND 1 | |
55 | #endif | |
56 | #endif | |
57 | ||
9c46ea66 | 58 | |
f97d84a6 | 59 | //---------------------------------------------------------------------- |
a5c2ccf2 | 60 | // STC constants generated section {{{ |
f97d84a6 RD |
61 | |
62 | %(VALUES)s | |
63 | ||
a5c2ccf2 VZ |
64 | //}}} |
65 | //---------------------------------------------------------------------- | |
2b5f62a0 | 66 | |
a5c2ccf2 VZ |
67 | //---------------------------------------------------------------------- |
68 | // Commands that can be bound to keystrokes section {{{ | |
88a8b04e | 69 | |
2b5f62a0 VZ |
70 | %(CMDS)s |
71 | ||
a5c2ccf2 | 72 | //}}} |
f97d84a6 RD |
73 | //---------------------------------------------------------------------- |
74 | ||
75 | class ScintillaWX; // forward declare | |
76 | class WordList; | |
77 | struct SCNotification; | |
78 | ||
2b5f62a0 | 79 | #ifndef SWIG |
23318a53 | 80 | extern WXDLLIMPEXP_DATA_STC(const char) wxSTCNameStr[]; |
7e0c58e9 RD |
81 | class WXDLLIMPEXP_FWD_STC wxStyledTextCtrl; |
82 | class WXDLLIMPEXP_FWD_STC wxStyledTextEvent; | |
2b5f62a0 | 83 | #endif |
f97d84a6 RD |
84 | |
85 | //---------------------------------------------------------------------- | |
86 | ||
8e0945da | 87 | class WXDLLIMPEXP_STC wxStyledTextCtrl : public wxControl |
93578927 | 88 | , public wxTextEntryBase |
2bfca191 VZ |
89 | #if wxUSE_TEXTCTRL |
90 | , public wxTextAreaBase | |
91 | #endif // wxUSE_TEXTCTRL | |
8e0945da | 92 | { |
f97d84a6 RD |
93 | public: |
94 | ||
95 | #ifdef SWIG | |
faadde7e RD |
96 | %%pythonAppend wxStyledTextCtrl "self._setOORInfo(self)" |
97 | %%pythonAppend wxStyledTextCtrl() "" | |
39c0acb6 | 98 | |
f325fa52 | 99 | wxStyledTextCtrl(wxWindow *parent, wxWindowID id=wxID_ANY, |
f97d84a6 RD |
100 | const wxPoint& pos = wxDefaultPosition, |
101 | const wxSize& size = wxDefaultSize, long style = 0, | |
137b5242 | 102 | const wxString& name = wxPySTCNameStr); |
3c1705d9 | 103 | %%RenameCtor(PreStyledTextCtrl, wxStyledTextCtrl()); |
dc8005e2 | 104 | |
f97d84a6 | 105 | #else |
f325fa52 | 106 | wxStyledTextCtrl(wxWindow *parent, wxWindowID id=wxID_ANY, |
f97d84a6 RD |
107 | const wxPoint& pos = wxDefaultPosition, |
108 | const wxSize& size = wxDefaultSize, long style = 0, | |
109 | const wxString& name = wxSTCNameStr); | |
39c0acb6 RD |
110 | wxStyledTextCtrl() { m_swx = NULL; } |
111 | ~wxStyledTextCtrl(); | |
dc8005e2 | 112 | |
f97d84a6 RD |
113 | #endif |
114 | ||
a48cb415 RD |
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); | |
f97d84a6 | 119 | |
f97d84a6 | 120 | |
a5c2ccf2 VZ |
121 | //---------------------------------------------------------------------- |
122 | // Generated method declaration section {{{ | |
f97d84a6 RD |
123 | |
124 | %(METHOD_DEFS)s | |
125 | ||
a5c2ccf2 VZ |
126 | //}}} |
127 | //---------------------------------------------------------------------- | |
f97d84a6 | 128 | |
a5c2ccf2 | 129 | // Manually declared methods |
f97d84a6 RD |
130 | |
131 | // Returns the line number of the line with the caret. | |
132 | int GetCurrentLine(); | |
133 | ||
134 | // Extract style settings from a spec-string which is composed of one or | |
135 | // more of the following comma separated elements: | |
136 | // | |
137 | // bold turns on bold | |
138 | // italic turns on italics | |
5ee1d760 RD |
139 | // fore:[name or #RRGGBB] sets the foreground colour |
140 | // back:[name or #RRGGBB] sets the background colour | |
f97d84a6 RD |
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 | |
145 | // | |
146 | void StyleSetSpec(int styleNum, const wxString& spec); | |
147 | ||
148 | ||
7e0c58e9 RD |
149 | // Get the font of a style. |
150 | wxFont StyleGetFont(int style); | |
151 | ||
f97d84a6 RD |
152 | |
153 | // Set style size, face, bold, italic, and underline attributes from | |
154 | // a wxFont's attributes. | |
155 | void StyleSetFont(int styleNum, wxFont& font); | |
156 | ||
157 | ||
158 | ||
159 | // Set all font style attributes at once. | |
160 | void StyleSetFontAttr(int styleNum, int size, | |
161 | const wxString& faceName, | |
162 | bool bold, bool italic, | |
3727c043 RD |
163 | bool underline, |
164 | wxFontEncoding encoding=wxFONTENCODING_DEFAULT); | |
f97d84a6 RD |
165 | |
166 | ||
3727c043 RD |
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); | |
170 | ||
171 | // Set the font encoding to be used by a style. | |
172 | void StyleSetFontEncoding(int style, wxFontEncoding encoding); | |
a5c2ccf2 | 173 | |
f97d84a6 RD |
174 | |
175 | // Perform one of the operations defined by the wxSTC_CMD_* constants. | |
176 | void CmdKeyExecute(int cmd); | |
177 | ||
178 | ||
f97d84a6 RD |
179 | // Set the left and right margin in the edit area, measured in pixels. |
180 | void SetMargins(int left, int right); | |
181 | ||
182 | ||
f97d84a6 RD |
183 | // Retrieve the point in the window where a position is displayed. |
184 | wxPoint PointFromPosition(int pos); | |
185 | ||
186 | ||
187 | // Scroll enough to make the given line visible | |
188 | void ScrollToLine(int line); | |
189 | ||
190 | ||
191 | // Scroll enough to make the given column visible | |
192 | void ScrollToColumn(int column); | |
193 | ||
65ec6247 RD |
194 | |
195 | // Send a message to Scintilla | |
8e0945da VZ |
196 | // |
197 | // NB: this method is not really const as it can modify the control but it | |
198 | // has to be declared as such as it's called from both const and | |
199 | // non-const methods and we can't distinguish between the two | |
fafd43c5 | 200 | wxIntPtr SendMsg(int msg, wxUIntPtr wp=0, wxIntPtr lp=0) const; |
65ec6247 | 201 | |
5fa4613c RD |
202 | |
203 | // Set the vertical scrollbar to use instead of the ont that's built-in. | |
ccfc3219 | 204 | void SetVScrollBar(wxScrollBar* bar); |
5fa4613c RD |
205 | |
206 | ||
207 | // Set the horizontal scrollbar to use instead of the ont that's built-in. | |
ccfc3219 | 208 | void SetHScrollBar(wxScrollBar* bar); |
5fa4613c | 209 | |
0b9dfbc0 RD |
210 | // Can be used to prevent the EVT_CHAR handler from adding the char |
211 | bool GetLastKeydownProcessed() { return m_lastKeyDownConsumed; } | |
212 | void SetLastKeydownProcessed(bool val) { m_lastKeyDownConsumed = val; } | |
213 | ||
2bfca191 VZ |
214 | // if we derive from wxTextAreaBase it already provides these methods |
215 | #if !wxUSE_TEXTCTRL | |
51566b0b RD |
216 | // Write the contents of the editor to filename |
217 | bool SaveFile(const wxString& filename); | |
218 | ||
219 | // Load the contents of filename into the editor | |
220 | bool LoadFile(const wxString& filename); | |
2bfca191 | 221 | #endif // !wxUSE_TEXTCTRL |
51566b0b | 222 | |
9d41f689 | 223 | #ifdef STC_USE_DND |
4a65f2c8 | 224 | // Allow for simulating a DnD DragOver |
dc8005e2 | 225 | wxDragResult DoDragOver(wxCoord x, wxCoord y, wxDragResult def); |
4a65f2c8 RD |
226 | |
227 | // Allow for simulating a DnD DropText | |
228 | bool DoDropText(long x, long y, const wxString& data); | |
2fcce896 MB |
229 | #endif |
230 | ||
d1558f3d RD |
231 | // Specify whether anti-aliased fonts should be used. Will have no effect |
232 | // on some platforms, but on some (wxMac for example) can greatly improve | |
233 | // performance. | |
234 | void SetUseAntiAliasing(bool useAA); | |
4a65f2c8 | 235 | |
d1558f3d RD |
236 | // Returns the current UseAntiAliasing setting. |
237 | bool GetUseAntiAliasing(); | |
dc8005e2 | 238 | |
0b9dfbc0 | 239 | |
a5c2ccf2 | 240 | |
41a499cd RD |
241 | // The following methods are nearly equivallent to their similarly named |
242 | // cousins above. The difference is that these methods bypass wxString | |
243 | // and always use a char* even if used in a unicode build of wxWidgets. | |
244 | // In that case the character data will be utf-8 encoded since that is | |
245 | // what is used internally by Scintilla in unicode builds. | |
a5c2ccf2 | 246 | |
41a499cd RD |
247 | // Add text to the document at current position. |
248 | void AddTextRaw(const char* text); | |
249 | ||
250 | // Insert string at a position. | |
251 | void InsertTextRaw(int pos, const char* text); | |
252 | ||
253 | // Retrieve the text of the line containing the caret. | |
254 | // Returns the index of the caret on the line. | |
255 | #ifdef SWIG | |
256 | wxCharBuffer GetCurLineRaw(int* OUTPUT); | |
257 | #else | |
258 | wxCharBuffer GetCurLineRaw(int* linePos=NULL); | |
259 | #endif | |
260 | ||
261 | // Retrieve the contents of a line. | |
262 | wxCharBuffer GetLineRaw(int line); | |
263 | ||
264 | // Retrieve the selected text. | |
265 | wxCharBuffer GetSelectedTextRaw(); | |
266 | ||
267 | // Retrieve a range of text. | |
268 | wxCharBuffer GetTextRangeRaw(int startPos, int endPos); | |
269 | ||
270 | // Replace the contents of the document with the argument text. | |
271 | void SetTextRaw(const char* text); | |
272 | ||
273 | // Retrieve all the text in the document. | |
274 | wxCharBuffer GetTextRaw(); | |
275 | ||
276 | // Append a string to the end of the document without changing the selection. | |
277 | void AppendTextRaw(const char* text); | |
278 | ||
1ce1bd84 | 279 | #ifdef SWIG |
f2ccce28 | 280 | %%pythoncode "_stc_utf8_methods.py" |
1ce1bd84 | 281 | #endif |
f97d84a6 RD |
282 | |
283 | ||
93578927 VZ |
284 | // implement wxTextEntryBase pure virtual methods |
285 | // ---------------------------------------------- | |
286 | ||
287 | virtual void WriteText(const wxString& text) { AddText(text); } | |
288 | virtual wxString GetValue() const { return GetText(); } | |
289 | virtual void Remove(long from, long to) | |
290 | { | |
291 | Replace(from, to, ""); | |
292 | } | |
293 | virtual void Replace(long from, long to, const wxString& text) | |
294 | { | |
295 | SetTargetStart(from); | |
296 | SetTargetEnd(to); | |
297 | ReplaceTarget(text); | |
298 | } | |
299 | ||
300 | /* | |
301 | These functions are already declared in the generated section. | |
302 | ||
303 | virtual void Copy(); | |
304 | virtual void Cut(); | |
305 | virtual void Paste(); | |
306 | ||
307 | virtual void Undo(); | |
308 | virtual void Redo(); | |
309 | ||
310 | virtual bool CanUndo() const; | |
311 | virtual bool CanRedo() const; | |
312 | ||
313 | */ | |
314 | ||
315 | virtual void SetInsertionPoint(long pos) { SetCurrentPos(pos); } | |
316 | virtual long GetInsertionPoint() const { return GetCurrentPos(); } | |
317 | virtual long GetLastPosition() const { return GetTextLength(); } | |
318 | ||
319 | virtual void SetSelection(long from, long to) | |
320 | { | |
321 | if ( from == -1 && to == -1 ) | |
322 | { | |
323 | SelectAll(); | |
324 | } | |
325 | else | |
326 | { | |
327 | SetSelectionStart(from); | |
328 | SetSelectionEnd(to); | |
329 | } | |
330 | } | |
331 | ||
fa70ec2b RD |
332 | #ifdef SWIG |
333 | void GetSelection(long* OUTPUT, long* OUTPUT) const; | |
334 | #else | |
93578927 VZ |
335 | virtual void GetSelection(long *from, long *to) const |
336 | { | |
337 | if ( from ) | |
338 | *from = GetSelectionStart(); | |
339 | if ( to ) | |
340 | *to = GetSelectionEnd(); | |
341 | } | |
23318a53 | 342 | |
fa70ec2b RD |
343 | // kept for compatibility only |
344 | void GetSelection(int *from, int *to) | |
345 | { | |
346 | long f, t; | |
347 | GetSelection(&f, &t); | |
348 | if ( from ) | |
349 | *from = f; | |
350 | if ( to ) | |
351 | *to = t; | |
352 | } | |
353 | #endif | |
23318a53 | 354 | |
93578927 VZ |
355 | virtual bool IsEditable() const { return !GetReadOnly(); } |
356 | virtual void SetEditable(bool editable) { SetReadOnly(!editable); } | |
357 | ||
2bfca191 VZ |
358 | // implement wxTextAreaBase pure virtual methods |
359 | // --------------------------------------------- | |
360 | ||
361 | virtual int GetLineLength(long n) const { return GetLine(n).length(); } | |
362 | virtual wxString GetLineText(long n) const { return GetLine(n); } | |
363 | virtual int GetNumberOfLines() const { return GetLineCount(); } | |
364 | ||
365 | virtual bool IsModified() const { return GetModify(); } | |
366 | virtual void MarkDirty() { wxFAIL_MSG("not implemented"); } | |
367 | virtual void DiscardEdits() { SetSavePoint(); } | |
368 | ||
369 | virtual bool SetStyle(long WXUNUSED(start), long WXUNUSED(end), | |
370 | const wxTextAttr& WXUNUSED(style)) | |
371 | { | |
372 | wxFAIL_MSG("not implemented"); | |
373 | ||
374 | return false; | |
375 | } | |
376 | ||
377 | virtual bool GetStyle(long WXUNUSED(position), wxTextAttr& WXUNUSED(style)) | |
378 | { | |
379 | wxFAIL_MSG("not implemented"); | |
380 | ||
381 | return false; | |
382 | } | |
383 | ||
384 | virtual bool SetDefaultStyle(const wxTextAttr& WXUNUSED(style)) | |
385 | { | |
386 | wxFAIL_MSG("not implemented"); | |
387 | ||
388 | return false; | |
389 | } | |
390 | ||
391 | virtual long XYToPosition(long x, long y) const | |
392 | { | |
393 | long pos = PositionFromLine(y); | |
394 | pos += x; | |
395 | return pos; | |
396 | } | |
397 | ||
398 | virtual bool PositionToXY(long pos, long *x, long *y) const | |
399 | { | |
400 | if ( x ) | |
401 | *x = -1; // TODO | |
402 | ||
403 | if ( y ) | |
404 | { | |
405 | long l = LineFromPosition(pos); | |
406 | if ( l == -1 ) | |
407 | return false; | |
408 | *y = l; | |
409 | } | |
410 | ||
411 | return true; | |
412 | } | |
413 | ||
93578927 | 414 | virtual void ShowPosition(long pos) { GotoPos(pos); } |
2bfca191 | 415 | |
a2fd8a45 VZ |
416 | // FIXME-VC6: can't use wxWindow here because of "error C2603: illegal |
417 | // access declaration: 'wxWindow' is not a direct base of | |
418 | // 'wxStyledTextCtrl'" with VC6 | |
419 | using wxControl::HitTest; | |
2bfca191 VZ |
420 | |
421 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const | |
422 | { | |
423 | const long l = PositionFromPoint(pt); | |
424 | if ( l == -1 ) | |
425 | return wxTE_HT_BELOW; // we don't really know where it was | |
426 | ||
427 | if ( pos ) | |
428 | *pos = l; | |
429 | ||
430 | return wxTE_HT_ON_TEXT; | |
431 | } | |
432 | ||
0aa619b5 VZ |
433 | // just unhide it |
434 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, | |
435 | wxTextCoord *col, | |
436 | wxTextCoord *row) const | |
437 | { | |
438 | return wxTextAreaBase::HitTest(pt, col, row); | |
439 | } | |
440 | ||
f97d84a6 | 441 | #ifndef SWIG |
5e6880e6 | 442 | protected: |
2bfca191 VZ |
443 | virtual bool DoLoadFile(const wxString& file, int fileType); |
444 | virtual bool DoSaveFile(const wxString& file, int fileType); | |
445 | ||
f97d84a6 RD |
446 | // Event handlers |
447 | void OnPaint(wxPaintEvent& evt); | |
448 | void OnScrollWin(wxScrollWinEvent& evt); | |
5fa4613c | 449 | void OnScroll(wxScrollEvent& evt); |
f97d84a6 RD |
450 | void OnSize(wxSizeEvent& evt); |
451 | void OnMouseLeftDown(wxMouseEvent& evt); | |
452 | void OnMouseMove(wxMouseEvent& evt); | |
453 | void OnMouseLeftUp(wxMouseEvent& evt); | |
ddf2da08 | 454 | void OnMouseRightUp(wxMouseEvent& evt); |
2b5f62a0 | 455 | void OnMouseMiddleUp(wxMouseEvent& evt); |
65ec6247 | 456 | void OnContextMenu(wxContextMenuEvent& evt); |
37d62433 | 457 | void OnMouseWheel(wxMouseEvent& evt); |
f97d84a6 RD |
458 | void OnChar(wxKeyEvent& evt); |
459 | void OnKeyDown(wxKeyEvent& evt); | |
460 | void OnLoseFocus(wxFocusEvent& evt); | |
461 | void OnGainFocus(wxFocusEvent& evt); | |
462 | void OnSysColourChanged(wxSysColourChangedEvent& evt); | |
463 | void OnEraseBackground(wxEraseEvent& evt); | |
464 | void OnMenu(wxCommandEvent& evt); | |
465 | void OnListBox(wxCommandEvent& evt); | |
8e54aaed | 466 | void OnIdle(wxIdleEvent& evt); |
dc8005e2 | 467 | |
8ae4f086 | 468 | virtual wxSize DoGetBestSize() const; |
f97d84a6 RD |
469 | |
470 | // Turn notifications from Scintilla into events | |
471 | void NotifyChange(); | |
472 | void NotifyParent(SCNotification* scn); | |
473 | ||
5e6880e6 | 474 | private: |
f97d84a6 | 475 | DECLARE_EVENT_TABLE() |
ba8a4f66 | 476 | DECLARE_DYNAMIC_CLASS(wxStyledTextCtrl) |
f97d84a6 | 477 | |
9e730a78 RD |
478 | protected: |
479 | ||
f97d84a6 RD |
480 | ScintillaWX* m_swx; |
481 | wxStopWatch m_stopWatch; | |
5fa4613c RD |
482 | wxScrollBar* m_vScrollBar; |
483 | wxScrollBar* m_hScrollBar; | |
f97d84a6 | 484 | |
d6582821 | 485 | bool m_lastKeyDownConsumed; |
f97d84a6 | 486 | |
60957703 VZ |
487 | // the timestamp that consists of the last wheel event |
488 | // added to the time taken to process that event. | |
489 | long m_lastWheelTimestamp; | |
490 | ||
f97d84a6 RD |
491 | friend class ScintillaWX; |
492 | friend class Platform; | |
2bfca191 | 493 | #endif // !SWIG |
f97d84a6 RD |
494 | }; |
495 | ||
496 | //---------------------------------------------------------------------- | |
497 | ||
ba8a4f66 | 498 | class WXDLLIMPEXP_STC wxStyledTextEvent : public wxCommandEvent { |
f97d84a6 RD |
499 | public: |
500 | wxStyledTextEvent(wxEventType commandType=0, int id=0); | |
4161723f RD |
501 | #ifndef SWIG |
502 | wxStyledTextEvent(const wxStyledTextEvent& event); | |
503 | #endif | |
f97d84a6 RD |
504 | ~wxStyledTextEvent() {} |
505 | ||
a29a241f RD |
506 | void SetPosition(int pos) { m_position = pos; } |
507 | void SetKey(int k) { m_key = k; } | |
508 | void SetModifiers(int m) { m_modifiers = m; } | |
509 | void SetModificationType(int t) { m_modificationType = t; } | |
10ef30eb | 510 | void SetText(const wxString& t) { m_text = t; } |
a29a241f RD |
511 | void SetLength(int len) { m_length = len; } |
512 | void SetLinesAdded(int num) { m_linesAdded = num; } | |
513 | void SetLine(int val) { m_line = val; } | |
514 | void SetFoldLevelNow(int val) { m_foldLevelNow = val; } | |
515 | void SetFoldLevelPrev(int val) { m_foldLevelPrev = val; } | |
516 | void SetMargin(int val) { m_margin = val; } | |
517 | void SetMessage(int val) { m_message = val; } | |
518 | void SetWParam(int val) { m_wParam = val; } | |
519 | void SetLParam(int val) { m_lParam = val; } | |
520 | void SetListType(int val) { m_listType = val; } | |
521 | void SetX(int val) { m_x = val; } | |
522 | void SetY(int val) { m_y = val; } | |
523 | void SetDragText(const wxString& val) { m_dragText = val; } | |
524 | void SetDragAllowMove(bool val) { m_dragAllowMove = val; } | |
92bbd64f | 525 | #ifdef STC_USE_DND |
a29a241f | 526 | void SetDragResult(wxDragResult val) { m_dragResult = val; } |
92bbd64f | 527 | #endif |
f97d84a6 RD |
528 | |
529 | int GetPosition() const { return m_position; } | |
530 | int GetKey() const { return m_key; } | |
531 | int GetModifiers() const { return m_modifiers; } | |
532 | int GetModificationType() const { return m_modificationType; } | |
533 | wxString GetText() const { return m_text; } | |
534 | int GetLength() const { return m_length; } | |
535 | int GetLinesAdded() const { return m_linesAdded; } | |
536 | int GetLine() const { return m_line; } | |
537 | int GetFoldLevelNow() const { return m_foldLevelNow; } | |
538 | int GetFoldLevelPrev() const { return m_foldLevelPrev; } | |
539 | int GetMargin() const { return m_margin; } | |
540 | int GetMessage() const { return m_message; } | |
541 | int GetWParam() const { return m_wParam; } | |
542 | int GetLParam() const { return m_lParam; } | |
65ec6247 RD |
543 | int GetListType() const { return m_listType; } |
544 | int GetX() const { return m_x; } | |
545 | int GetY() const { return m_y; } | |
a29a241f RD |
546 | wxString GetDragText() { return m_dragText; } |
547 | bool GetDragAllowMove() { return m_dragAllowMove; } | |
92bbd64f | 548 | #ifdef STC_USE_DND |
a29a241f | 549 | wxDragResult GetDragResult() { return m_dragResult; } |
92bbd64f | 550 | #endif |
f97d84a6 RD |
551 | |
552 | bool GetShift() const; | |
553 | bool GetControl() const; | |
554 | bool GetAlt() const; | |
555 | ||
5fa4613c | 556 | virtual wxEvent* Clone() const { return new wxStyledTextEvent(*this); } |
f97d84a6 RD |
557 | |
558 | #ifndef SWIG | |
559 | private: | |
560 | DECLARE_DYNAMIC_CLASS(wxStyledTextEvent) | |
561 | ||
562 | int m_position; | |
563 | int m_key; | |
564 | int m_modifiers; | |
565 | ||
566 | int m_modificationType; // wxEVT_STC_MODIFIED | |
567 | wxString m_text; | |
568 | int m_length; | |
569 | int m_linesAdded; | |
570 | int m_line; | |
571 | int m_foldLevelNow; | |
572 | int m_foldLevelPrev; | |
573 | ||
574 | int m_margin; // wxEVT_STC_MARGINCLICK | |
575 | ||
576 | int m_message; // wxEVT_STC_MACRORECORD | |
577 | int m_wParam; | |
578 | int m_lParam; | |
65ec6247 RD |
579 | |
580 | int m_listType; | |
581 | int m_x; | |
582 | int m_y; | |
a29a241f RD |
583 | |
584 | wxString m_dragText; // wxEVT_STC_START_DRAG, wxEVT_STC_DO_DROP | |
585 | bool m_dragAllowMove; // wxEVT_STC_START_DRAG | |
586 | ||
92bbd64f | 587 | #if wxUSE_DRAG_AND_DROP |
a29a241f | 588 | wxDragResult m_dragResult; // wxEVT_STC_DRAG_OVER,wxEVT_STC_DO_DROP |
f97d84a6 | 589 | #endif |
92bbd64f | 590 | #endif |
f97d84a6 RD |
591 | }; |
592 | ||
9e730a78 RD |
593 | |
594 | ||
d25f5fbb | 595 | #ifndef SWIG |
316c9cfe RD |
596 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_CHANGE; |
597 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_STYLENEEDED; | |
598 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_CHARADDED; | |
599 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_SAVEPOINTREACHED; | |
600 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_SAVEPOINTLEFT; | |
601 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_ROMODIFYATTEMPT; | |
602 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_KEY; | |
603 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_DOUBLECLICK; | |
604 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_UPDATEUI; | |
605 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_MODIFIED; | |
606 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_MACRORECORD; | |
607 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_MARGINCLICK; | |
608 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_NEEDSHOWN; | |
609 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_PAINTED; | |
610 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_USERLISTSELECTION; | |
611 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_URIDROPPED; | |
612 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_DWELLSTART; | |
613 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_DWELLEND; | |
614 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_START_DRAG; | |
615 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_DRAG_OVER; | |
616 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_DO_DROP; | |
617 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_ZOOM; | |
618 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_HOTSPOT_CLICK; | |
619 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_HOTSPOT_DCLICK; | |
620 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_CALLTIP_CLICK; | |
621 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_AUTOCOMP_SELECTION; | |
622 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_INDICATOR_CLICK; | |
623 | extern WXDLLIMPEXP_STC const wxEventType wxEVT_STC_INDICATOR_RELEASE; | |
d25f5fbb RD |
624 | #else |
625 | enum { | |
626 | wxEVT_STC_CHANGE, | |
627 | wxEVT_STC_STYLENEEDED, | |
628 | wxEVT_STC_CHARADDED, | |
d25f5fbb RD |
629 | wxEVT_STC_SAVEPOINTREACHED, |
630 | wxEVT_STC_SAVEPOINTLEFT, | |
631 | wxEVT_STC_ROMODIFYATTEMPT, | |
65ec6247 | 632 | wxEVT_STC_KEY, |
d25f5fbb | 633 | wxEVT_STC_DOUBLECLICK, |
65ec6247 | 634 | wxEVT_STC_UPDATEUI, |
d25f5fbb | 635 | wxEVT_STC_MODIFIED, |
d25f5fbb RD |
636 | wxEVT_STC_MACRORECORD, |
637 | wxEVT_STC_MARGINCLICK, | |
638 | wxEVT_STC_NEEDSHOWN, | |
65ec6247 RD |
639 | wxEVT_STC_PAINTED, |
640 | wxEVT_STC_USERLISTSELECTION, | |
641 | wxEVT_STC_URIDROPPED, | |
642 | wxEVT_STC_DWELLSTART, | |
643 | wxEVT_STC_DWELLEND, | |
a29a241f RD |
644 | wxEVT_STC_START_DRAG, |
645 | wxEVT_STC_DRAG_OVER, | |
646 | wxEVT_STC_DO_DROP, | |
a834585d | 647 | wxEVT_STC_ZOOM, |
9e730a78 RD |
648 | wxEVT_STC_HOTSPOT_CLICK, |
649 | wxEVT_STC_HOTSPOT_DCLICK, | |
1e9bafca | 650 | wxEVT_STC_CALLTIP_CLICK, |
7e0c58e9 RD |
651 | wxEVT_STC_AUTOCOMP_SELECTION, |
652 | wxEVT_STC_INDICATOR_CLICK, | |
653 | wxEVT_STC_INDICATOR_RELEASE | |
d25f5fbb RD |
654 | }; |
655 | #endif | |
f97d84a6 | 656 | |
f97d84a6 RD |
657 | |
658 | ||
659 | #ifndef SWIG | |
660 | typedef void (wxEvtHandler::*wxStyledTextEventFunction)(wxStyledTextEvent&); | |
661 | ||
dc8005e2 RD |
662 | #define EVT_STC_CHANGE(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_CHANGE, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), |
663 | #define EVT_STC_STYLENEEDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_STYLENEEDED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
664 | #define EVT_STC_CHARADDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_CHARADDED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
665 | #define EVT_STC_SAVEPOINTREACHED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_SAVEPOINTREACHED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
666 | #define EVT_STC_SAVEPOINTLEFT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_SAVEPOINTLEFT, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
667 | #define EVT_STC_ROMODIFYATTEMPT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_ROMODIFYATTEMPT, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
668 | #define EVT_STC_KEY(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_KEY, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
669 | #define EVT_STC_DOUBLECLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DOUBLECLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
670 | #define EVT_STC_UPDATEUI(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_UPDATEUI, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
671 | #define EVT_STC_MODIFIED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_MODIFIED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
672 | #define EVT_STC_MACRORECORD(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_MACRORECORD, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
673 | #define EVT_STC_MARGINCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_MARGINCLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
674 | #define EVT_STC_NEEDSHOWN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_NEEDSHOWN, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
675 | #define EVT_STC_PAINTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_PAINTED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
676 | #define EVT_STC_USERLISTSELECTION(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_USERLISTSELECTION, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
677 | #define EVT_STC_URIDROPPED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_URIDROPPED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
678 | #define EVT_STC_DWELLSTART(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DWELLSTART, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
679 | #define EVT_STC_DWELLEND(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_DWELLEND, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
680 | #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 ), | |
681 | #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 ), | |
682 | #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 ), | |
683 | #define EVT_STC_ZOOM(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_ZOOM, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ), | |
684 | #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 ), | |
685 | #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 ), | |
06b2f04b | 686 | #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 ), |
1e9bafca | 687 | #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 ), |
7e0c58e9 RD |
688 | #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 ), |
689 | #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 ), | |
690 | ||
1bc32508 | 691 | #endif |
f97d84a6 | 692 | |
29825f5f | 693 | #endif // wxUSE_STC |
ea88e9bc VS |
694 | |
695 | #endif // _WX_STC_STC_H_ |