]> git.saurik.com Git - wxWidgets.git/blame - src/stc/stc.cpp.in
more demo updates
[wxWidgets.git] / src / stc / stc.cpp.in
CommitLineData
f97d84a6
RD
1////////////////////////////////////////////////////////////////////////////
2// Name: stc.cpp
3// Purpose: A wxWindows 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, but instead
6// delegates most things to the real Scintilla class.
7// This allows the use of Scintilla without polluting the
8// namespace with all the classes and identifiers from Scintilla.
9//
10// Author: Robin Dunn
11//
12// Created: 13-Jan-2000
13// RCS-ID: $Id$
14// Copyright: (c) 2000 by Total Control Software
15// Licence: wxWindows license
16/////////////////////////////////////////////////////////////////////////////
17
18#include <ctype.h>
19
20#include "wx/stc/stc.h"
21#include "ScintillaWX.h"
22
23#include <wx/tokenzr.h>
24
f97d84a6
RD
25
26//----------------------------------------------------------------------
27
10ef30eb 28const wxChar* wxSTCNameStr = wxT("stcwindow");
f97d84a6 29
d25f5fbb
RD
30DEFINE_EVENT_TYPE( wxEVT_STC_CHANGE )
31DEFINE_EVENT_TYPE( wxEVT_STC_STYLENEEDED )
32DEFINE_EVENT_TYPE( wxEVT_STC_CHARADDED )
d25f5fbb
RD
33DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTREACHED )
34DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTLEFT )
35DEFINE_EVENT_TYPE( wxEVT_STC_ROMODIFYATTEMPT )
65ec6247 36DEFINE_EVENT_TYPE( wxEVT_STC_KEY )
d25f5fbb 37DEFINE_EVENT_TYPE( wxEVT_STC_DOUBLECLICK )
65ec6247 38DEFINE_EVENT_TYPE( wxEVT_STC_UPDATEUI )
d25f5fbb 39DEFINE_EVENT_TYPE( wxEVT_STC_MODIFIED )
d25f5fbb
RD
40DEFINE_EVENT_TYPE( wxEVT_STC_MACRORECORD )
41DEFINE_EVENT_TYPE( wxEVT_STC_MARGINCLICK )
42DEFINE_EVENT_TYPE( wxEVT_STC_NEEDSHOWN )
43DEFINE_EVENT_TYPE( wxEVT_STC_POSCHANGED )
65ec6247
RD
44DEFINE_EVENT_TYPE( wxEVT_STC_PAINTED )
45DEFINE_EVENT_TYPE( wxEVT_STC_USERLISTSELECTION )
46DEFINE_EVENT_TYPE( wxEVT_STC_URIDROPPED )
47DEFINE_EVENT_TYPE( wxEVT_STC_DWELLSTART )
48DEFINE_EVENT_TYPE( wxEVT_STC_DWELLEND )
a29a241f
RD
49DEFINE_EVENT_TYPE( wxEVT_STC_START_DRAG )
50DEFINE_EVENT_TYPE( wxEVT_STC_DRAG_OVER )
51DEFINE_EVENT_TYPE( wxEVT_STC_DO_DROP )
d25f5fbb
RD
52
53
f97d84a6
RD
54BEGIN_EVENT_TABLE(wxStyledTextCtrl, wxControl)
55 EVT_PAINT (wxStyledTextCtrl::OnPaint)
56 EVT_SCROLLWIN (wxStyledTextCtrl::OnScrollWin)
5fa4613c 57 EVT_SCROLL (wxStyledTextCtrl::OnScroll)
f97d84a6
RD
58 EVT_SIZE (wxStyledTextCtrl::OnSize)
59 EVT_LEFT_DOWN (wxStyledTextCtrl::OnMouseLeftDown)
4ceb1196
RD
60#ifdef __WXMSW__
61 // Let Scintilla see the double click as a second click
62 EVT_LEFT_DCLICK (wxStyledTextCtrl::OnMouseLeftDown)
63#endif
f97d84a6
RD
64 EVT_MOTION (wxStyledTextCtrl::OnMouseMove)
65 EVT_LEFT_UP (wxStyledTextCtrl::OnMouseLeftUp)
ddf2da08
RD
66#ifdef __WXGTK__
67 EVT_RIGHT_UP (wxStyledTextCtrl::OnMouseRightUp)
68#else
65ec6247 69 EVT_CONTEXT_MENU (wxStyledTextCtrl::OnContextMenu)
ddf2da08 70#endif
37d62433 71 EVT_MOUSEWHEEL (wxStyledTextCtrl::OnMouseWheel)
f97d84a6
RD
72 EVT_CHAR (wxStyledTextCtrl::OnChar)
73 EVT_KEY_DOWN (wxStyledTextCtrl::OnKeyDown)
74 EVT_KILL_FOCUS (wxStyledTextCtrl::OnLoseFocus)
75 EVT_SET_FOCUS (wxStyledTextCtrl::OnGainFocus)
76 EVT_SYS_COLOUR_CHANGED (wxStyledTextCtrl::OnSysColourChanged)
77 EVT_ERASE_BACKGROUND (wxStyledTextCtrl::OnEraseBackground)
78 EVT_MENU_RANGE (-1, -1, wxStyledTextCtrl::OnMenu)
79 EVT_LISTBOX_DCLICK (-1, wxStyledTextCtrl::OnListBox)
80END_EVENT_TABLE()
81
82
83IMPLEMENT_CLASS(wxStyledTextCtrl, wxControl)
84IMPLEMENT_DYNAMIC_CLASS(wxStyledTextEvent, wxCommandEvent)
85
1a2fb4cd
RD
86// forces the linking of the lexer modules
87int Scintilla_LinkLexers();
88
f97d84a6
RD
89//----------------------------------------------------------------------
90// Constructor and Destructor
91
92wxStyledTextCtrl::wxStyledTextCtrl(wxWindow *parent,
93 wxWindowID id,
94 const wxPoint& pos,
95 const wxSize& size,
96 long style,
97 const wxString& name) :
98 wxControl(parent, id, pos, size,
99 style | wxVSCROLL | wxHSCROLL | wxWANTS_CHARS | wxCLIP_CHILDREN,
100 wxDefaultValidator, name)
101{
1a2fb4cd 102 Scintilla_LinkLexers();
f97d84a6
RD
103 m_swx = new ScintillaWX(this);
104 m_stopWatch.Start();
d6582821 105 m_lastKeyDownConsumed = FALSE;
5fa4613c
RD
106 m_vScrollBar = NULL;
107 m_hScrollBar = NULL;
10ef30eb
RD
108#if wxUSE_UNICODE
109 // Put Scintilla into unicode (UTF-8) mode
110 SetCodePage(wxSTC_CP_UTF8);
111#endif
f97d84a6
RD
112}
113
114
115wxStyledTextCtrl::~wxStyledTextCtrl() {
116 delete m_swx;
117}
118
119
120//----------------------------------------------------------------------
121
122long wxStyledTextCtrl::SendMsg(int msg, long wp, long lp) {
123
124 return m_swx->WndProc(msg, wp, lp);
125}
126
127
128#ifdef MAKELONG
129#undef MAKELONG
130#endif
131
132#define MAKELONG(a, b) ((a) | ((b) << 16))
133
134
135static long wxColourAsLong(const wxColour& co) {
136 return (((long)co.Blue() << 16) |
137 ((long)co.Green() << 8) |
138 ((long)co.Red()));
139}
140
141static wxColour wxColourFromLong(long c) {
142 wxColour clr;
143 clr.Set(c & 0xff, (c >> 8) & 0xff, (c >> 16) & 0xff);
144 return clr;
145}
146
147
148static wxColour wxColourFromSpec(const wxString& spec) {
10ef30eb
RD
149 // spec should be "#RRGGBB"
150 long red, green, blue;
151 red = green = blue = 0;
152 spec.Mid(1,2).ToLong(&red, 16);
153 spec.Mid(3,2).ToLong(&green, 16);
154 spec.Mid(5,2).ToLong(&blue, 16);
f97d84a6
RD
155 return wxColour(red, green, blue);
156}
157
158
159//----------------------------------------------------------------------
160// BEGIN generated section. The following code is automatically generated
161// by gen_iface.py from the contents of Scintilla.iface. Do not edit
162// this file. Edit stc.cpp.in or gen_iface.py instead and regenerate.
163
164%(METHOD_IMPS)s
165
166// END of generated section
167//----------------------------------------------------------------------
168
169
170// Returns the line number of the line with the caret.
171int wxStyledTextCtrl::GetCurrentLine() {
172 int line = LineFromPosition(GetCurrentPos());
173 return line;
174}
175
176
177// Extract style settings from a spec-string which is composed of one or
178// more of the following comma separated elements:
179//
180// bold turns on bold
181// italic turns on italics
182// fore:#RRGGBB sets the foreground colour
183// back:#RRGGBB sets the background colour
184// face:[facename] sets the font face name to use
185// size:[num] sets the font size in points
186// eol turns on eol filling
187// underline turns on underlining
188//
189void wxStyledTextCtrl::StyleSetSpec(int styleNum, const wxString& spec) {
190
191 wxStringTokenizer tkz(spec, ",");
192 while (tkz.HasMoreTokens()) {
193 wxString token = tkz.GetNextToken();
194
195 wxString option = token.BeforeFirst(':');
196 wxString val = token.AfterFirst(':');
197
198 if (option == "bold")
199 StyleSetBold(styleNum, true);
200
201 else if (option == "italic")
202 StyleSetItalic(styleNum, true);
203
204 else if (option == "underline")
205 StyleSetUnderline(styleNum, true);
206
207 else if (option == "eol")
208 StyleSetEOLFilled(styleNum, true);
209
210 else if (option == "size") {
211 long points;
212 if (val.ToLong(&points))
213 StyleSetSize(styleNum, points);
214 }
215
216 else if (option == "face")
217 StyleSetFaceName(styleNum, val);
218
219 else if (option == "fore")
220 StyleSetForeground(styleNum, wxColourFromSpec(val));
221
222 else if (option == "back")
223 StyleSetBackground(styleNum, wxColourFromSpec(val));
224 }
225}
226
227
228// Set style size, face, bold, italic, and underline attributes from
229// a wxFont's attributes.
230void wxStyledTextCtrl::StyleSetFont(int styleNum, wxFont& font) {
231 int size = font.GetPointSize();
232 wxString faceName = font.GetFaceName();
233 bool bold = font.GetWeight() == wxBOLD;
234 bool italic = font.GetStyle() != wxNORMAL;
235 bool under = font.GetUnderlined();
236
237 // TODO: add encoding/charset mapping
238 StyleSetFontAttr(styleNum, size, faceName, bold, italic, under);
239}
240
241// Set all font style attributes at once.
242void wxStyledTextCtrl::StyleSetFontAttr(int styleNum, int size,
243 const wxString& faceName,
244 bool bold, bool italic,
245 bool underline) {
246 StyleSetSize(styleNum, size);
247 StyleSetFaceName(styleNum, faceName);
248 StyleSetBold(styleNum, bold);
249 StyleSetItalic(styleNum, italic);
250 StyleSetUnderline(styleNum, underline);
251
252 // TODO: add encoding/charset mapping
253}
254
255
256// Perform one of the operations defined by the wxSTC_CMD_* constants.
257void wxStyledTextCtrl::CmdKeyExecute(int cmd) {
258 SendMsg(cmd);
259}
260
261
262// Set the left and right margin in the edit area, measured in pixels.
263void wxStyledTextCtrl::SetMargins(int left, int right) {
264 SetMarginLeft(left);
265 SetMarginRight(right);
266}
267
268
269// Retrieve the start and end positions of the current selection.
270void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) {
271 if (startPos != NULL)
272 *startPos = SendMsg(SCI_GETSELECTIONSTART);
273 if (endPos != NULL)
274 *endPos = SendMsg(SCI_GETSELECTIONEND);
275}
276
277
278// Retrieve the point in the window where a position is displayed.
279wxPoint wxStyledTextCtrl::PointFromPosition(int pos) {
280 int x = SendMsg(SCI_POINTXFROMPOSITION, 0, pos);
281 int y = SendMsg(SCI_POINTYFROMPOSITION, 0, pos);
282 return wxPoint(x, y);
283}
284
285// Scroll enough to make the given line visible
286void wxStyledTextCtrl::ScrollToLine(int line) {
287 m_swx->DoScrollToLine(line);
288}
289
290
291// Scroll enough to make the given column visible
292void wxStyledTextCtrl::ScrollToColumn(int column) {
293 m_swx->DoScrollToColumn(column);
294}
295
296
297
298//----------------------------------------------------------------------
299// Event handlers
300
301void wxStyledTextCtrl::OnPaint(wxPaintEvent& evt) {
302 wxPaintDC dc(this);
303 wxRegion region = GetUpdateRegion();
304
305 m_swx->DoPaint(&dc, region.GetBox());
306}
307
308void wxStyledTextCtrl::OnScrollWin(wxScrollWinEvent& evt) {
309 if (evt.GetOrientation() == wxHORIZONTAL)
310 m_swx->DoHScroll(evt.GetEventType(), evt.GetPosition());
311 else
312 m_swx->DoVScroll(evt.GetEventType(), evt.GetPosition());
313}
314
5fa4613c
RD
315void wxStyledTextCtrl::OnScroll(wxScrollEvent& evt) {
316 wxScrollBar* sb = wxDynamicCast(evt.GetEventObject(), wxScrollBar);
317 if (sb) {
318 if (sb->IsVertical())
319 m_swx->DoVScroll(evt.GetEventType(), evt.GetPosition());
320 else
321 m_swx->DoHScroll(evt.GetEventType(), evt.GetPosition());
322 }
323}
324
f97d84a6
RD
325void wxStyledTextCtrl::OnSize(wxSizeEvent& evt) {
326 wxSize sz = GetClientSize();
327 m_swx->DoSize(sz.x, sz.y);
10ef30eb 328 Refresh(FALSE);
f97d84a6
RD
329}
330
331void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent& evt) {
332 wxPoint pt = evt.GetPosition();
333 m_swx->DoButtonDown(Point(pt.x, pt.y), m_stopWatch.Time(),
334 evt.ShiftDown(), evt.ControlDown(), evt.AltDown());
335}
336
337void wxStyledTextCtrl::OnMouseMove(wxMouseEvent& evt) {
338 wxPoint pt = evt.GetPosition();
339 m_swx->DoButtonMove(Point(pt.x, pt.y));
340}
341
342void wxStyledTextCtrl::OnMouseLeftUp(wxMouseEvent& evt) {
343 wxPoint pt = evt.GetPosition();
344 m_swx->DoButtonUp(Point(pt.x, pt.y), m_stopWatch.Time(),
345 evt.ControlDown());
346}
347
348
ddf2da08
RD
349void wxStyledTextCtrl::OnMouseRightUp(wxMouseEvent& evt) {
350 wxPoint pt = evt.GetPosition();
351 m_swx->DoContextMenu(Point(pt.x, pt.y));
352}
353
354
65ec6247 355void wxStyledTextCtrl::OnContextMenu(wxContextMenuEvent& evt) {
f97d84a6 356 wxPoint pt = evt.GetPosition();
65ec6247 357 ScreenToClient(&pt.x, &pt.y);
f97d84a6
RD
358 m_swx->DoContextMenu(Point(pt.x, pt.y));
359}
360
37d62433
RD
361
362void wxStyledTextCtrl::OnMouseWheel(wxMouseEvent& evt) {
363 m_swx->DoMouseWheel(evt.GetWheelRotation(),
364 evt.GetWheelDelta(),
65ec6247
RD
365 evt.GetLinesPerAction(),
366 evt.ControlDown());
37d62433
RD
367}
368
369
f97d84a6 370void wxStyledTextCtrl::OnChar(wxKeyEvent& evt) {
10ef30eb 371 int key = evt.GetKeyCode();
f3c2c221 372
f3c2c221
RD
373 // On (some?) non-US keyboards the AltGr key is required to enter some
374 // common characters. It comes to us as both Alt and Ctrl down so we need
375 // to let the char through in that case, otherwise if only ctrl or only
376 // alt let's skip it.
377 bool ctrl = evt.ControlDown();
378 bool alt = evt.AltDown();
00c64037 379 bool skip = ((ctrl || alt) && ! (ctrl && alt));
f3c2c221 380
10ef30eb
RD
381 //printf("OnChar key:%%d consumed:%%d ctrl:%%d alt:%%d skip:%%d\n",
382 // key, m_lastKeyDownConsumed, ctrl, alt, skip);
383
384 if (key <= WXK_START && /*key >= 32 &&*/ !m_lastKeyDownConsumed && !skip) {
f97d84a6 385 m_swx->DoAddChar(key);
f3c2c221 386 return;
f97d84a6 387 }
f3c2c221 388 evt.Skip();
f97d84a6
RD
389}
390
d6582821 391
f97d84a6 392void wxStyledTextCtrl::OnKeyDown(wxKeyEvent& evt) {
10ef30eb 393 int key = evt.GetKeyCode();
f3c2c221 394 bool shift = evt.ShiftDown(),
10ef30eb
RD
395 ctrl = evt.ControlDown(),
396 alt = evt.AltDown();
f3c2c221
RD
397
398 int processed = m_swx->DoKeyDown(key, shift, ctrl, alt, &m_lastKeyDownConsumed);
399
400// printf("key: %%d shift: %%d ctrl: %%d alt: %%d processed: %%d consumed: %%d\n",
401// key, shift, ctrl, alt, processed, m_lastKeyDownConsumed);
402
d6582821 403 if (!processed && !m_lastKeyDownConsumed)
f97d84a6
RD
404 evt.Skip();
405}
406
d6582821 407
f97d84a6
RD
408void wxStyledTextCtrl::OnLoseFocus(wxFocusEvent& evt) {
409 m_swx->DoLoseFocus();
410}
411
d6582821 412
f97d84a6
RD
413void wxStyledTextCtrl::OnGainFocus(wxFocusEvent& evt) {
414 m_swx->DoGainFocus();
415}
416
d6582821 417
f97d84a6
RD
418void wxStyledTextCtrl::OnSysColourChanged(wxSysColourChangedEvent& evt) {
419 m_swx->DoSysColourChange();
420}
421
d6582821 422
f97d84a6
RD
423void wxStyledTextCtrl::OnEraseBackground(wxEraseEvent& evt) {
424 // do nothing to help avoid flashing
425}
426
427
428
429void wxStyledTextCtrl::OnMenu(wxCommandEvent& evt) {
430 m_swx->DoCommand(evt.GetId());
431}
432
433
434void wxStyledTextCtrl::OnListBox(wxCommandEvent& evt) {
435 m_swx->DoOnListBox();
436}
437
438
439//----------------------------------------------------------------------
440// Turn notifications from Scintilla into events
441
442
443void wxStyledTextCtrl::NotifyChange() {
444 wxStyledTextEvent evt(wxEVT_STC_CHANGE, GetId());
a29a241f 445 evt.SetEventObject(this);
f97d84a6
RD
446 GetEventHandler()->ProcessEvent(evt);
447}
448
449void wxStyledTextCtrl::NotifyParent(SCNotification* _scn) {
450 SCNotification& scn = *_scn;
65ec6247
RD
451 wxStyledTextEvent evt(0, GetId());
452
a29a241f 453 evt.SetEventObject(this);
65ec6247
RD
454 evt.SetPosition(scn.position);
455 evt.SetKey(scn.ch);
456 evt.SetModifiers(scn.modifiers);
457
f97d84a6
RD
458 switch (scn.nmhdr.code) {
459 case SCN_STYLENEEDED:
65ec6247 460 evt.SetEventType(wxEVT_STC_STYLENEEDED);
f97d84a6 461 break;
65ec6247 462
f97d84a6 463 case SCN_CHARADDED:
65ec6247 464 evt.SetEventType(wxEVT_STC_CHARADDED);
f97d84a6 465 break;
65ec6247 466
f97d84a6 467 case SCN_SAVEPOINTREACHED:
65ec6247 468 evt.SetEventType(wxEVT_STC_SAVEPOINTREACHED);
f97d84a6 469 break;
65ec6247 470
f97d84a6 471 case SCN_SAVEPOINTLEFT:
65ec6247 472 evt.SetEventType(wxEVT_STC_SAVEPOINTLEFT);
f97d84a6 473 break;
65ec6247 474
f97d84a6 475 case SCN_MODIFYATTEMPTRO:
65ec6247
RD
476 evt.SetEventType(wxEVT_STC_ROMODIFYATTEMPT);
477 break;
478
479 case SCN_KEY:
480 evt.SetEventType(wxEVT_STC_KEY);
f97d84a6 481 break;
65ec6247 482
f97d84a6 483 case SCN_DOUBLECLICK:
65ec6247 484 evt.SetEventType(wxEVT_STC_DOUBLECLICK);
f97d84a6 485 break;
65ec6247
RD
486
487 case SCN_UPDATEUI:
488 evt.SetEventType(wxEVT_STC_UPDATEUI);
f97d84a6 489 break;
65ec6247
RD
490
491 case SCN_MODIFIED:
492 evt.SetEventType(wxEVT_STC_MODIFIED);
493 evt.SetModificationType(scn.modificationType);
10ef30eb
RD
494 if (scn.text) {
495 // The unicode conversion MUST have a null byte to terminate the
496 // string so move it into a buffer first and give it one.
497 wxMemoryBuffer buf(scn.length+1);
498 buf.AppendData((void*)scn.text, scn.length);
499 buf.AppendByte(0);
0c5b83b0 500 evt.SetText(stc2wx(buf));
10ef30eb 501 }
65ec6247
RD
502 evt.SetLength(scn.length);
503 evt.SetLinesAdded(scn.linesAdded);
504 evt.SetLine(scn.line);
505 evt.SetFoldLevelNow(scn.foldLevelNow);
506 evt.SetFoldLevelPrev(scn.foldLevelPrev);
f97d84a6 507 break;
65ec6247 508
f97d84a6 509 case SCN_MACRORECORD:
65ec6247
RD
510 evt.SetEventType(wxEVT_STC_MACRORECORD);
511 evt.SetMessage(scn.message);
512 evt.SetWParam(scn.wParam);
513 evt.SetLParam(scn.lParam);
f97d84a6 514 break;
65ec6247 515
f97d84a6 516 case SCN_MARGINCLICK:
65ec6247
RD
517 evt.SetEventType(wxEVT_STC_MARGINCLICK);
518 evt.SetMargin(scn.margin);
f97d84a6 519 break;
65ec6247 520
f97d84a6 521 case SCN_NEEDSHOWN:
65ec6247
RD
522 evt.SetEventType(wxEVT_STC_NEEDSHOWN);
523 evt.SetLength(scn.length);
f97d84a6 524 break;
65ec6247 525
65ec6247
RD
526 case SCN_PAINTED:
527 evt.SetEventType(wxEVT_STC_PAINTED);
528 break;
529
530 case SCN_USERLISTSELECTION:
531 evt.SetEventType(wxEVT_STC_USERLISTSELECTION);
532 evt.SetListType(scn.listType);
533 evt.SetText(scn.text);
f97d84a6 534 break;
f97d84a6 535
65ec6247
RD
536 case SCN_URIDROPPED:
537 evt.SetEventType(wxEVT_STC_URIDROPPED);
538 evt.SetText(scn.text);
539 break;
540
541 case SCN_DWELLSTART:
542 evt.SetEventType(wxEVT_STC_DWELLSTART);
543 evt.SetX(scn.x);
544 evt.SetY(scn.y);
545 break;
546
547 case SCN_DWELLEND:
548 evt.SetEventType(wxEVT_STC_DWELLEND);
549 evt.SetX(scn.x);
550 evt.SetY(scn.y);
551 break;
552
553 default:
554 return;
f97d84a6 555 }
65ec6247
RD
556
557 GetEventHandler()->ProcessEvent(evt);
f97d84a6
RD
558}
559
560
f97d84a6
RD
561//----------------------------------------------------------------------
562//----------------------------------------------------------------------
563//----------------------------------------------------------------------
564
565wxStyledTextEvent::wxStyledTextEvent(wxEventType commandType, int id)
566 : wxCommandEvent(commandType, id)
567{
568 m_position = 0;
569 m_key = 0;
570 m_modifiers = 0;
571 m_modificationType = 0;
572 m_length = 0;
573 m_linesAdded = 0;
574 m_line = 0;
575 m_foldLevelNow = 0;
576 m_foldLevelPrev = 0;
577 m_margin = 0;
578 m_message = 0;
579 m_wParam = 0;
580 m_lParam = 0;
65ec6247
RD
581 m_listType = 0;
582 m_x = 0;
583 m_y = 0;
a29a241f
RD
584 m_dragAllowMove = FALSE;
585 m_dragResult = wxDragNone;
f97d84a6
RD
586}
587
588bool wxStyledTextEvent::GetShift() const { return (m_modifiers & SCI_SHIFT) != 0; }
589bool wxStyledTextEvent::GetControl() const { return (m_modifiers & SCI_CTRL) != 0; }
590bool wxStyledTextEvent::GetAlt() const { return (m_modifiers & SCI_ALT) != 0; }
591
f97d84a6 592
5fa4613c
RD
593wxStyledTextEvent::wxStyledTextEvent(const wxStyledTextEvent& event):
594 wxCommandEvent(event)
595{
596 m_position = event.m_position;
597 m_key = event.m_key;
598 m_modifiers = event.m_modifiers;
599 m_modificationType = event.m_modificationType;
600 m_text = event.m_text;
601 m_length = event.m_length;
602 m_linesAdded = event.m_linesAdded;
603 m_line = event.m_line;
604 m_foldLevelNow = event.m_foldLevelNow;
605 m_foldLevelPrev = event.m_foldLevelPrev;
606
607 m_margin = event.m_margin;
608
609 m_message = event.m_message;
610 m_wParam = event.m_wParam;
611 m_lParam = event.m_lParam;
612
613 m_listType = event.m_listType;
614 m_x = event.m_x;
615 m_y = event.m_y;
f97d84a6 616
5fa4613c
RD
617 m_dragText = event.m_dragText;
618 m_dragAllowMove =event.m_dragAllowMove;
619 m_dragResult = event.m_dragResult;
f97d84a6
RD
620}
621
622//----------------------------------------------------------------------
623//----------------------------------------------------------------------
624
a29a241f
RD
625
626
627
5fa4613c
RD
628
629
630
631
632