]> git.saurik.com Git - wxWidgets.git/blame - src/stc/stc.cpp.in
Patch from Joe "shmengie" Brown joebrown@podiatryfl.com
[wxWidgets.git] / src / stc / stc.cpp.in
CommitLineData
f97d84a6
RD
1////////////////////////////////////////////////////////////////////////////
2// Name: stc.cpp
be5a51fb 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, 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
9e730a78 20#include <wx/wx.h>
f97d84a6 21#include <wx/tokenzr.h>
9e730a78
RD
22#include <wx/mstream.h>
23#include <wx/image.h>
51566b0b 24#include <wx/file.h>
f97d84a6 25
f9ee2e27
RD
26#include "wx/stc/stc.h"
27#include "ScintillaWX.h"
f97d84a6
RD
28
29//----------------------------------------------------------------------
30
10ef30eb 31const wxChar* wxSTCNameStr = wxT("stcwindow");
f97d84a6 32
451c5cc7
RD
33#ifdef MAKELONG
34#undef MAKELONG
35#endif
36
37#define MAKELONG(a, b) ((a) | ((b) << 16))
38
39
40static long wxColourAsLong(const wxColour& co) {
41 return (((long)co.Blue() << 16) |
42 ((long)co.Green() << 8) |
43 ((long)co.Red()));
44}
45
46static wxColour wxColourFromLong(long c) {
47 wxColour clr;
a5b274d7
WS
48 clr.Set((unsigned char)(c & 0xff),
49 (unsigned char)((c >> 8) & 0xff),
50 (unsigned char)((c >> 16) & 0xff));
451c5cc7
RD
51 return clr;
52}
53
54
55static wxColour wxColourFromSpec(const wxString& spec) {
5ee1d760
RD
56 // spec should be a colour name or "#RRGGBB"
57 if (spec.GetChar(0) == wxT('#')) {
dc8005e2 58
5ee1d760
RD
59 long red, green, blue;
60 red = green = blue = 0;
61 spec.Mid(1,2).ToLong(&red, 16);
62 spec.Mid(3,2).ToLong(&green, 16);
63 spec.Mid(5,2).ToLong(&blue, 16);
a5b274d7
WS
64 return wxColour((unsigned char)red,
65 (unsigned char)green,
66 (unsigned char)blue);
5ee1d760
RD
67 }
68 else
69 return wxColour(spec);
451c5cc7
RD
70}
71
72//----------------------------------------------------------------------
73
d25f5fbb
RD
74DEFINE_EVENT_TYPE( wxEVT_STC_CHANGE )
75DEFINE_EVENT_TYPE( wxEVT_STC_STYLENEEDED )
76DEFINE_EVENT_TYPE( wxEVT_STC_CHARADDED )
d25f5fbb
RD
77DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTREACHED )
78DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTLEFT )
79DEFINE_EVENT_TYPE( wxEVT_STC_ROMODIFYATTEMPT )
65ec6247 80DEFINE_EVENT_TYPE( wxEVT_STC_KEY )
d25f5fbb 81DEFINE_EVENT_TYPE( wxEVT_STC_DOUBLECLICK )
65ec6247 82DEFINE_EVENT_TYPE( wxEVT_STC_UPDATEUI )
d25f5fbb 83DEFINE_EVENT_TYPE( wxEVT_STC_MODIFIED )
d25f5fbb
RD
84DEFINE_EVENT_TYPE( wxEVT_STC_MACRORECORD )
85DEFINE_EVENT_TYPE( wxEVT_STC_MARGINCLICK )
86DEFINE_EVENT_TYPE( wxEVT_STC_NEEDSHOWN )
65ec6247
RD
87DEFINE_EVENT_TYPE( wxEVT_STC_PAINTED )
88DEFINE_EVENT_TYPE( wxEVT_STC_USERLISTSELECTION )
89DEFINE_EVENT_TYPE( wxEVT_STC_URIDROPPED )
90DEFINE_EVENT_TYPE( wxEVT_STC_DWELLSTART )
91DEFINE_EVENT_TYPE( wxEVT_STC_DWELLEND )
a29a241f
RD
92DEFINE_EVENT_TYPE( wxEVT_STC_START_DRAG )
93DEFINE_EVENT_TYPE( wxEVT_STC_DRAG_OVER )
94DEFINE_EVENT_TYPE( wxEVT_STC_DO_DROP )
a834585d 95DEFINE_EVENT_TYPE( wxEVT_STC_ZOOM )
9e730a78
RD
96DEFINE_EVENT_TYPE( wxEVT_STC_HOTSPOT_CLICK )
97DEFINE_EVENT_TYPE( wxEVT_STC_HOTSPOT_DCLICK )
98DEFINE_EVENT_TYPE( wxEVT_STC_CALLTIP_CLICK )
99
d25f5fbb
RD
100
101
f97d84a6
RD
102BEGIN_EVENT_TABLE(wxStyledTextCtrl, wxControl)
103 EVT_PAINT (wxStyledTextCtrl::OnPaint)
104 EVT_SCROLLWIN (wxStyledTextCtrl::OnScrollWin)
5fa4613c 105 EVT_SCROLL (wxStyledTextCtrl::OnScroll)
f97d84a6
RD
106 EVT_SIZE (wxStyledTextCtrl::OnSize)
107 EVT_LEFT_DOWN (wxStyledTextCtrl::OnMouseLeftDown)
4ceb1196
RD
108 // Let Scintilla see the double click as a second click
109 EVT_LEFT_DCLICK (wxStyledTextCtrl::OnMouseLeftDown)
f97d84a6
RD
110 EVT_MOTION (wxStyledTextCtrl::OnMouseMove)
111 EVT_LEFT_UP (wxStyledTextCtrl::OnMouseLeftUp)
451c5cc7 112#if defined(__WXGTK__) || defined(__WXMAC__)
ddf2da08
RD
113 EVT_RIGHT_UP (wxStyledTextCtrl::OnMouseRightUp)
114#else
65ec6247 115 EVT_CONTEXT_MENU (wxStyledTextCtrl::OnContextMenu)
ddf2da08 116#endif
37d62433 117 EVT_MOUSEWHEEL (wxStyledTextCtrl::OnMouseWheel)
2b5f62a0 118 EVT_MIDDLE_UP (wxStyledTextCtrl::OnMouseMiddleUp)
f97d84a6
RD
119 EVT_CHAR (wxStyledTextCtrl::OnChar)
120 EVT_KEY_DOWN (wxStyledTextCtrl::OnKeyDown)
121 EVT_KILL_FOCUS (wxStyledTextCtrl::OnLoseFocus)
122 EVT_SET_FOCUS (wxStyledTextCtrl::OnGainFocus)
123 EVT_SYS_COLOUR_CHANGED (wxStyledTextCtrl::OnSysColourChanged)
124 EVT_ERASE_BACKGROUND (wxStyledTextCtrl::OnEraseBackground)
dd4aa550 125 EVT_MENU_RANGE (10, 16, wxStyledTextCtrl::OnMenu)
dc8005e2 126 EVT_LISTBOX_DCLICK (wxID_ANY, wxStyledTextCtrl::OnListBox)
f97d84a6
RD
127END_EVENT_TABLE()
128
129
130IMPLEMENT_CLASS(wxStyledTextCtrl, wxControl)
131IMPLEMENT_DYNAMIC_CLASS(wxStyledTextEvent, wxCommandEvent)
132
40716a51 133#ifdef LINK_LEXERS
1a2fb4cd 134// forces the linking of the lexer modules
a834585d 135int Scintilla_LinkLexers();
40716a51 136#endif
1a2fb4cd 137
f97d84a6
RD
138//----------------------------------------------------------------------
139// Constructor and Destructor
140
141wxStyledTextCtrl::wxStyledTextCtrl(wxWindow *parent,
142 wxWindowID id,
143 const wxPoint& pos,
144 const wxSize& size,
145 long style,
39c0acb6
RD
146 const wxString& name)
147{
148 m_swx = NULL;
149 Create(parent, id, pos, size, style, name);
150}
151
152
a48cb415
RD
153bool wxStyledTextCtrl::Create(wxWindow *parent,
154 wxWindowID id,
155 const wxPoint& pos,
156 const wxSize& size,
157 long style,
158 const wxString& name)
f97d84a6 159{
2659dad3
RD
160#ifdef __WXMAC__
161 style |= wxVSCROLL | wxHSCROLL;
162#endif
a48cb415
RD
163 if (!wxControl::Create(parent, id, pos, size,
164 style | wxWANTS_CHARS | wxCLIP_CHILDREN,
165 wxDefaultValidator, name))
166 return false;
39c0acb6 167
40716a51 168#ifdef LINK_LEXERS
a834585d 169 Scintilla_LinkLexers();
40716a51 170#endif
f97d84a6
RD
171 m_swx = new ScintillaWX(this);
172 m_stopWatch.Start();
dc8005e2 173 m_lastKeyDownConsumed = false;
5fa4613c
RD
174 m_vScrollBar = NULL;
175 m_hScrollBar = NULL;
10ef30eb
RD
176#if wxUSE_UNICODE
177 // Put Scintilla into unicode (UTF-8) mode
178 SetCodePage(wxSTC_CP_UTF8);
179#endif
8ae4f086
RD
180
181 SetBestFittingSize(size);
f9ee2e27
RD
182
183 // Reduces flicker on GTK+/X11
184 SetBackgroundStyle(wxBG_STYLE_CUSTOM);
a48cb415 185 return true;
f97d84a6
RD
186}
187
188
189wxStyledTextCtrl::~wxStyledTextCtrl() {
190 delete m_swx;
191}
192
193
194//----------------------------------------------------------------------
195
196long wxStyledTextCtrl::SendMsg(int msg, long wp, long lp) {
197
198 return m_swx->WndProc(msg, wp, lp);
199}
200
ccfc3219
RD
201//----------------------------------------------------------------------
202
203// Set the vertical scrollbar to use instead of the ont that's built-in.
204void wxStyledTextCtrl::SetVScrollBar(wxScrollBar* bar) {
205 m_vScrollBar = bar;
206 if (bar != NULL) {
207 // ensure that the built-in scrollbar is not visible
208 SetScrollbar(wxVERTICAL, 0, 0, 0);
209 }
210}
f97d84a6 211
f97d84a6 212
ccfc3219
RD
213// Set the horizontal scrollbar to use instead of the ont that's built-in.
214void wxStyledTextCtrl::SetHScrollBar(wxScrollBar* bar) {
215 m_hScrollBar = bar;
216 if (bar != NULL) {
217 // ensure that the built-in scrollbar is not visible
218 SetScrollbar(wxHORIZONTAL, 0, 0, 0);
219 }
220}
221
f97d84a6
RD
222//----------------------------------------------------------------------
223// BEGIN generated section. The following code is automatically generated
224// by gen_iface.py from the contents of Scintilla.iface. Do not edit
225// this file. Edit stc.cpp.in or gen_iface.py instead and regenerate.
226
227%(METHOD_IMPS)s
228
229// END of generated section
230//----------------------------------------------------------------------
231
232
233// Returns the line number of the line with the caret.
234int wxStyledTextCtrl::GetCurrentLine() {
235 int line = LineFromPosition(GetCurrentPos());
236 return line;
237}
238
239
240// Extract style settings from a spec-string which is composed of one or
241// more of the following comma separated elements:
242//
243// bold turns on bold
244// italic turns on italics
5ee1d760
RD
245// fore:[name or #RRGGBB] sets the foreground colour
246// back:[name or #RRGGBB] sets the background colour
f97d84a6
RD
247// face:[facename] sets the font face name to use
248// size:[num] sets the font size in points
249// eol turns on eol filling
250// underline turns on underlining
251//
252void wxStyledTextCtrl::StyleSetSpec(int styleNum, const wxString& spec) {
253
451c5cc7 254 wxStringTokenizer tkz(spec, wxT(","));
f97d84a6
RD
255 while (tkz.HasMoreTokens()) {
256 wxString token = tkz.GetNextToken();
257
258 wxString option = token.BeforeFirst(':');
259 wxString val = token.AfterFirst(':');
260
451c5cc7 261 if (option == wxT("bold"))
f97d84a6
RD
262 StyleSetBold(styleNum, true);
263
451c5cc7 264 else if (option == wxT("italic"))
f97d84a6
RD
265 StyleSetItalic(styleNum, true);
266
451c5cc7 267 else if (option == wxT("underline"))
f97d84a6
RD
268 StyleSetUnderline(styleNum, true);
269
451c5cc7 270 else if (option == wxT("eol"))
f97d84a6
RD
271 StyleSetEOLFilled(styleNum, true);
272
451c5cc7 273 else if (option == wxT("size")) {
f97d84a6
RD
274 long points;
275 if (val.ToLong(&points))
276 StyleSetSize(styleNum, points);
277 }
278
451c5cc7 279 else if (option == wxT("face"))
f97d84a6
RD
280 StyleSetFaceName(styleNum, val);
281
451c5cc7 282 else if (option == wxT("fore"))
f97d84a6
RD
283 StyleSetForeground(styleNum, wxColourFromSpec(val));
284
451c5cc7 285 else if (option == wxT("back"))
f97d84a6
RD
286 StyleSetBackground(styleNum, wxColourFromSpec(val));
287 }
288}
289
290
291// Set style size, face, bold, italic, and underline attributes from
292// a wxFont's attributes.
293void wxStyledTextCtrl::StyleSetFont(int styleNum, wxFont& font) {
7475e814
RD
294#ifdef __WXGTK__
295 // Ensure that the native font is initialized
296 int x, y;
297 GetTextExtent(wxT("X"), &x, &y, NULL, NULL, &font);
298#endif
f97d84a6
RD
299 int size = font.GetPointSize();
300 wxString faceName = font.GetFaceName();
301 bool bold = font.GetWeight() == wxBOLD;
302 bool italic = font.GetStyle() != wxNORMAL;
303 bool under = font.GetUnderlined();
304
305 // TODO: add encoding/charset mapping
306 StyleSetFontAttr(styleNum, size, faceName, bold, italic, under);
307}
308
309// Set all font style attributes at once.
310void wxStyledTextCtrl::StyleSetFontAttr(int styleNum, int size,
311 const wxString& faceName,
312 bool bold, bool italic,
313 bool underline) {
314 StyleSetSize(styleNum, size);
315 StyleSetFaceName(styleNum, faceName);
316 StyleSetBold(styleNum, bold);
317 StyleSetItalic(styleNum, italic);
318 StyleSetUnderline(styleNum, underline);
319
320 // TODO: add encoding/charset mapping
321}
322
323
324// Perform one of the operations defined by the wxSTC_CMD_* constants.
325void wxStyledTextCtrl::CmdKeyExecute(int cmd) {
326 SendMsg(cmd);
327}
328
329
330// Set the left and right margin in the edit area, measured in pixels.
331void wxStyledTextCtrl::SetMargins(int left, int right) {
332 SetMarginLeft(left);
333 SetMarginRight(right);
334}
335
336
337// Retrieve the start and end positions of the current selection.
338void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) {
339 if (startPos != NULL)
340 *startPos = SendMsg(SCI_GETSELECTIONSTART);
341 if (endPos != NULL)
342 *endPos = SendMsg(SCI_GETSELECTIONEND);
343}
344
345
346// Retrieve the point in the window where a position is displayed.
347wxPoint wxStyledTextCtrl::PointFromPosition(int pos) {
348 int x = SendMsg(SCI_POINTXFROMPOSITION, 0, pos);
349 int y = SendMsg(SCI_POINTYFROMPOSITION, 0, pos);
350 return wxPoint(x, y);
351}
352
353// Scroll enough to make the given line visible
354void wxStyledTextCtrl::ScrollToLine(int line) {
355 m_swx->DoScrollToLine(line);
356}
357
358
359// Scroll enough to make the given column visible
360void wxStyledTextCtrl::ScrollToColumn(int column) {
361 m_swx->DoScrollToColumn(column);
362}
363
364
51566b0b
RD
365bool wxStyledTextCtrl::SaveFile(const wxString& filename)
366{
367 wxFile file(filename, wxFile::write);
368
369 if (!file.IsOpened())
dc8005e2 370 return false;
51566b0b 371
4a65f2c8 372 bool success = file.Write(GetText(), *wxConvCurrent);
51566b0b
RD
373
374 if (success)
375 SetSavePoint();
376
377 return success;
378}
379
380bool wxStyledTextCtrl::LoadFile(const wxString& filename)
381{
041973c5 382 bool success = false;
51566b0b
RD
383 wxFile file(filename, wxFile::read);
384
041973c5 385 if (file.IsOpened())
51566b0b 386 {
041973c5 387 wxString contents;
a5b274d7
WS
388 // get the file size (assume it is not huge file...)
389 ssize_t len = (ssize_t)file.Length();
390
041973c5
RD
391 if (len > 0)
392 {
1e545382 393#if wxUSE_UNICODE
1c26fbe0 394 wxMemoryBuffer buffer(len+1);
8e5ec9cc 395 success = (file.Read(buffer.GetData(), len) == len);
dc8005e2 396 if (success) {
9efe0302
RD
397 ((char*)buffer.GetData())[len] = 0;
398 contents = wxString(buffer, *wxConvCurrent, len);
399 }
4a65f2c8 400#else
8e5ec9cc
MB
401 wxString buffer;
402 success = (file.Read(wxStringBuffer(buffer, len), len) == len);
4a65f2c8
RD
403 contents = buffer;
404#endif
041973c5
RD
405 }
406 else
a5b274d7
WS
407 {
408 if (len == 0)
409 success = true; // empty file is ok
410 else
411 success = false; // len == wxInvalidOffset
412 }
041973c5
RD
413
414 if (success)
415 {
416 SetText(contents);
417 EmptyUndoBuffer();
418 SetSavePoint();
419 }
51566b0b
RD
420 }
421
422 return success;
423}
424
f97d84a6 425
2fcce896 426#if wxUSE_DRAG_AND_DROP
dc8005e2
RD
427wxDragResult wxStyledTextCtrl::DoDragOver(wxCoord x, wxCoord y, wxDragResult def) {
428 return m_swx->DoDragOver(x, y, def);
429}
4a65f2c8
RD
430
431
dc8005e2 432bool wxStyledTextCtrl::DoDropText(long x, long y, const wxString& data) {
4a65f2c8
RD
433 return m_swx->DoDropText(x, y, data);
434}
2fcce896 435#endif
4a65f2c8
RD
436
437
d1558f3d
RD
438void wxStyledTextCtrl::SetUseAntiAliasing(bool useAA) {
439 m_swx->SetUseAntiAliasing(useAA);
440}
441
442bool wxStyledTextCtrl::GetUseAntiAliasing() {
443 return m_swx->GetUseAntiAliasing();
444}
445
f97d84a6
RD
446//----------------------------------------------------------------------
447// Event handlers
448
88a8b04e 449void wxStyledTextCtrl::OnPaint(wxPaintEvent& WXUNUSED(evt)) {
f97d84a6 450 wxPaintDC dc(this);
9e730a78 451 m_swx->DoPaint(&dc, GetUpdateRegion().GetBox());
f97d84a6
RD
452}
453
454void wxStyledTextCtrl::OnScrollWin(wxScrollWinEvent& evt) {
455 if (evt.GetOrientation() == wxHORIZONTAL)
456 m_swx->DoHScroll(evt.GetEventType(), evt.GetPosition());
457 else
458 m_swx->DoVScroll(evt.GetEventType(), evt.GetPosition());
459}
460
5fa4613c
RD
461void wxStyledTextCtrl::OnScroll(wxScrollEvent& evt) {
462 wxScrollBar* sb = wxDynamicCast(evt.GetEventObject(), wxScrollBar);
463 if (sb) {
464 if (sb->IsVertical())
465 m_swx->DoVScroll(evt.GetEventType(), evt.GetPosition());
466 else
467 m_swx->DoHScroll(evt.GetEventType(), evt.GetPosition());
468 }
469}
470
88a8b04e 471void wxStyledTextCtrl::OnSize(wxSizeEvent& WXUNUSED(evt)) {
39c0acb6
RD
472 if (m_swx) {
473 wxSize sz = GetClientSize();
474 m_swx->DoSize(sz.x, sz.y);
475 }
f97d84a6
RD
476}
477
478void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent& evt) {
cb1871ca 479 SetFocus();
f97d84a6 480 wxPoint pt = evt.GetPosition();
2b5f62a0 481 m_swx->DoLeftButtonDown(Point(pt.x, pt.y), m_stopWatch.Time(),
f97d84a6
RD
482 evt.ShiftDown(), evt.ControlDown(), evt.AltDown());
483}
484
485void wxStyledTextCtrl::OnMouseMove(wxMouseEvent& evt) {
486 wxPoint pt = evt.GetPosition();
2b5f62a0 487 m_swx->DoLeftButtonMove(Point(pt.x, pt.y));
f97d84a6
RD
488}
489
490void wxStyledTextCtrl::OnMouseLeftUp(wxMouseEvent& evt) {
491 wxPoint pt = evt.GetPosition();
2b5f62a0 492 m_swx->DoLeftButtonUp(Point(pt.x, pt.y), m_stopWatch.Time(),
f97d84a6
RD
493 evt.ControlDown());
494}
495
496
ddf2da08
RD
497void wxStyledTextCtrl::OnMouseRightUp(wxMouseEvent& evt) {
498 wxPoint pt = evt.GetPosition();
499 m_swx->DoContextMenu(Point(pt.x, pt.y));
500}
501
502
2b5f62a0
VZ
503void wxStyledTextCtrl::OnMouseMiddleUp(wxMouseEvent& evt) {
504 wxPoint pt = evt.GetPosition();
505 m_swx->DoMiddleButtonUp(Point(pt.x, pt.y));
506}
507
65ec6247 508void wxStyledTextCtrl::OnContextMenu(wxContextMenuEvent& evt) {
f97d84a6 509 wxPoint pt = evt.GetPosition();
65ec6247 510 ScreenToClient(&pt.x, &pt.y);
25484746
RD
511 /*
512 Show context menu at event point if it's within the window,
513 or at caret location if not
514 */
515 wxHitTest ht = this->HitTest(pt);
516 if (ht != wxHT_WINDOW_INSIDE) {
517 pt = this->PointFromPosition(this->GetCurrentPos());
518 }
f97d84a6
RD
519 m_swx->DoContextMenu(Point(pt.x, pt.y));
520}
521
37d62433
RD
522
523void wxStyledTextCtrl::OnMouseWheel(wxMouseEvent& evt) {
524 m_swx->DoMouseWheel(evt.GetWheelRotation(),
525 evt.GetWheelDelta(),
65ec6247 526 evt.GetLinesPerAction(),
9b9337da
RD
527 evt.ControlDown(),
528 evt.IsPageScroll());
37d62433
RD
529}
530
531
f97d84a6 532void wxStyledTextCtrl::OnChar(wxKeyEvent& evt) {
5fd656d5 533 // On (some?) non-US PC keyboards the AltGr key is required to enter some
f3c2c221
RD
534 // common characters. It comes to us as both Alt and Ctrl down so we need
535 // to let the char through in that case, otherwise if only ctrl or only
536 // alt let's skip it.
537 bool ctrl = evt.ControlDown();
28e0c28e
RD
538#ifdef __WXMAC__
539 // On the Mac the Alt key is just a modifier key (like Shift) so we need
540 // to allow the char events to be processed when Alt is pressed.
541 // TODO: Should we check MetaDown instead in this case?
542 bool alt = false;
543#else
f3c2c221 544 bool alt = evt.AltDown();
28e0c28e 545#endif
00c64037 546 bool skip = ((ctrl || alt) && ! (ctrl && alt));
f3c2c221 547
5fd656d5
RD
548 if (!m_lastKeyDownConsumed && !skip) {
549#if wxUSE_UNICODE
550 int key = evt.GetUnicodeKey();
551 bool keyOk = true;
552
553 // if the unicode key code is not really a unicode character (it may
554 // be a function key or etc., the platforms appear to always give us a
555 // small value in this case) then fallback to the ascii key code but
556 // don't do anything for function keys or etc.
1b14227e 557 if (key <= 127) {
5fd656d5 558 key = evt.GetKeyCode();
1b14227e 559 keyOk = (key <= 127);
5fd656d5
RD
560 }
561 if (keyOk) {
562 m_swx->DoAddChar(key);
563 return;
564 }
565#else
566 int key = evt.GetKeyCode();
567 if (key <= WXK_START || key > WXK_COMMAND) {
568 m_swx->DoAddChar(key);
569 return;
570 }
571#endif
f97d84a6 572 }
5fd656d5 573
f3c2c221 574 evt.Skip();
f97d84a6
RD
575}
576
d6582821 577
f97d84a6 578void wxStyledTextCtrl::OnKeyDown(wxKeyEvent& evt) {
5fd656d5 579 int processed = m_swx->DoKeyDown(evt, &m_lastKeyDownConsumed);
d6582821 580 if (!processed && !m_lastKeyDownConsumed)
f97d84a6
RD
581 evt.Skip();
582}
583
d6582821 584
b6bfd8e8 585void wxStyledTextCtrl::OnLoseFocus(wxFocusEvent& evt) {
ec830416 586 m_swx->DoLoseFocus();
b6bfd8e8 587 evt.Skip();
f97d84a6
RD
588}
589
d6582821 590
b6bfd8e8 591void wxStyledTextCtrl::OnGainFocus(wxFocusEvent& evt) {
f97d84a6 592 m_swx->DoGainFocus();
b6bfd8e8 593 evt.Skip();
f97d84a6
RD
594}
595
d6582821 596
88a8b04e 597void wxStyledTextCtrl::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(evt)) {
f97d84a6
RD
598 m_swx->DoSysColourChange();
599}
600
d6582821 601
88a8b04e 602void wxStyledTextCtrl::OnEraseBackground(wxEraseEvent& WXUNUSED(evt)) {
f97d84a6
RD
603 // do nothing to help avoid flashing
604}
605
606
607
608void wxStyledTextCtrl::OnMenu(wxCommandEvent& evt) {
609 m_swx->DoCommand(evt.GetId());
610}
611
612
88a8b04e 613void wxStyledTextCtrl::OnListBox(wxCommandEvent& WXUNUSED(evt)) {
f97d84a6
RD
614 m_swx->DoOnListBox();
615}
616
617
8e54aaed
RD
618void wxStyledTextCtrl::OnIdle(wxIdleEvent& evt) {
619 m_swx->DoOnIdle(evt);
620}
621
622
8ae4f086
RD
623wxSize wxStyledTextCtrl::DoGetBestSize() const
624{
625 // What would be the best size for a wxSTC?
626 // Just give a reasonable minimum until something else can be figured out.
627 return wxSize(200,100);
628}
629
630
f97d84a6
RD
631//----------------------------------------------------------------------
632// Turn notifications from Scintilla into events
633
634
635void wxStyledTextCtrl::NotifyChange() {
636 wxStyledTextEvent evt(wxEVT_STC_CHANGE, GetId());
a29a241f 637 evt.SetEventObject(this);
f97d84a6
RD
638 GetEventHandler()->ProcessEvent(evt);
639}
640
2b5f62a0
VZ
641
642static void SetEventText(wxStyledTextEvent& evt, const char* text,
643 size_t length) {
644 if(!text) return;
645
646 // The unicode conversion MUST have a null byte to terminate the
647 // string so move it into a buffer first and give it one.
648 wxMemoryBuffer buf(length+1);
649 buf.AppendData((void*)text, length);
650 buf.AppendByte(0);
651 evt.SetText(stc2wx(buf));
652}
653
654
f97d84a6
RD
655void wxStyledTextCtrl::NotifyParent(SCNotification* _scn) {
656 SCNotification& scn = *_scn;
65ec6247
RD
657 wxStyledTextEvent evt(0, GetId());
658
a29a241f 659 evt.SetEventObject(this);
65ec6247
RD
660 evt.SetPosition(scn.position);
661 evt.SetKey(scn.ch);
662 evt.SetModifiers(scn.modifiers);
663
f97d84a6
RD
664 switch (scn.nmhdr.code) {
665 case SCN_STYLENEEDED:
65ec6247 666 evt.SetEventType(wxEVT_STC_STYLENEEDED);
f97d84a6 667 break;
65ec6247 668
f97d84a6 669 case SCN_CHARADDED:
65ec6247 670 evt.SetEventType(wxEVT_STC_CHARADDED);
f97d84a6 671 break;
65ec6247 672
f97d84a6 673 case SCN_SAVEPOINTREACHED:
65ec6247 674 evt.SetEventType(wxEVT_STC_SAVEPOINTREACHED);
f97d84a6 675 break;
65ec6247 676
f97d84a6 677 case SCN_SAVEPOINTLEFT:
65ec6247 678 evt.SetEventType(wxEVT_STC_SAVEPOINTLEFT);
f97d84a6 679 break;
65ec6247 680
f97d84a6 681 case SCN_MODIFYATTEMPTRO:
65ec6247
RD
682 evt.SetEventType(wxEVT_STC_ROMODIFYATTEMPT);
683 break;
684
685 case SCN_KEY:
686 evt.SetEventType(wxEVT_STC_KEY);
f97d84a6 687 break;
65ec6247 688
f97d84a6 689 case SCN_DOUBLECLICK:
65ec6247 690 evt.SetEventType(wxEVT_STC_DOUBLECLICK);
f97d84a6 691 break;
65ec6247
RD
692
693 case SCN_UPDATEUI:
694 evt.SetEventType(wxEVT_STC_UPDATEUI);
f97d84a6 695 break;
65ec6247
RD
696
697 case SCN_MODIFIED:
698 evt.SetEventType(wxEVT_STC_MODIFIED);
699 evt.SetModificationType(scn.modificationType);
2b5f62a0 700 SetEventText(evt, scn.text, scn.length);
65ec6247
RD
701 evt.SetLength(scn.length);
702 evt.SetLinesAdded(scn.linesAdded);
703 evt.SetLine(scn.line);
704 evt.SetFoldLevelNow(scn.foldLevelNow);
705 evt.SetFoldLevelPrev(scn.foldLevelPrev);
f97d84a6 706 break;
65ec6247 707
f97d84a6 708 case SCN_MACRORECORD:
65ec6247
RD
709 evt.SetEventType(wxEVT_STC_MACRORECORD);
710 evt.SetMessage(scn.message);
711 evt.SetWParam(scn.wParam);
712 evt.SetLParam(scn.lParam);
f97d84a6 713 break;
65ec6247 714
f97d84a6 715 case SCN_MARGINCLICK:
65ec6247
RD
716 evt.SetEventType(wxEVT_STC_MARGINCLICK);
717 evt.SetMargin(scn.margin);
f97d84a6 718 break;
65ec6247 719
f97d84a6 720 case SCN_NEEDSHOWN:
65ec6247
RD
721 evt.SetEventType(wxEVT_STC_NEEDSHOWN);
722 evt.SetLength(scn.length);
f97d84a6 723 break;
65ec6247 724
65ec6247
RD
725 case SCN_PAINTED:
726 evt.SetEventType(wxEVT_STC_PAINTED);
727 break;
728
729 case SCN_USERLISTSELECTION:
730 evt.SetEventType(wxEVT_STC_USERLISTSELECTION);
731 evt.SetListType(scn.listType);
2b5f62a0 732 SetEventText(evt, scn.text, strlen(scn.text));
f97d84a6 733 break;
f97d84a6 734
65ec6247
RD
735 case SCN_URIDROPPED:
736 evt.SetEventType(wxEVT_STC_URIDROPPED);
2b5f62a0 737 SetEventText(evt, scn.text, strlen(scn.text));
65ec6247
RD
738 break;
739
740 case SCN_DWELLSTART:
741 evt.SetEventType(wxEVT_STC_DWELLSTART);
742 evt.SetX(scn.x);
743 evt.SetY(scn.y);
744 break;
745
746 case SCN_DWELLEND:
747 evt.SetEventType(wxEVT_STC_DWELLEND);
748 evt.SetX(scn.x);
749 evt.SetY(scn.y);
750 break;
751
a834585d
RD
752 case SCN_ZOOM:
753 evt.SetEventType(wxEVT_STC_ZOOM);
754 break;
755
9e730a78
RD
756 case SCN_HOTSPOTCLICK:
757 evt.SetEventType(wxEVT_STC_HOTSPOT_CLICK);
758 break;
759
760 case SCN_HOTSPOTDOUBLECLICK:
761 evt.SetEventType(wxEVT_STC_HOTSPOT_DCLICK);
762 break;
763
764 case SCN_CALLTIPCLICK:
765 evt.SetEventType(wxEVT_STC_CALLTIP_CLICK);
766 break;
767
65ec6247
RD
768 default:
769 return;
f97d84a6 770 }
65ec6247
RD
771
772 GetEventHandler()->ProcessEvent(evt);
f97d84a6
RD
773}
774
775
f97d84a6
RD
776//----------------------------------------------------------------------
777//----------------------------------------------------------------------
778//----------------------------------------------------------------------
779
780wxStyledTextEvent::wxStyledTextEvent(wxEventType commandType, int id)
781 : wxCommandEvent(commandType, id)
782{
783 m_position = 0;
784 m_key = 0;
785 m_modifiers = 0;
786 m_modificationType = 0;
787 m_length = 0;
788 m_linesAdded = 0;
789 m_line = 0;
790 m_foldLevelNow = 0;
791 m_foldLevelPrev = 0;
792 m_margin = 0;
793 m_message = 0;
794 m_wParam = 0;
795 m_lParam = 0;
65ec6247
RD
796 m_listType = 0;
797 m_x = 0;
798 m_y = 0;
dc8005e2 799 m_dragAllowMove = false;
92bbd64f 800#if wxUSE_DRAG_AND_DROP
a29a241f 801 m_dragResult = wxDragNone;
92bbd64f 802#endif
f97d84a6
RD
803}
804
805bool wxStyledTextEvent::GetShift() const { return (m_modifiers & SCI_SHIFT) != 0; }
806bool wxStyledTextEvent::GetControl() const { return (m_modifiers & SCI_CTRL) != 0; }
807bool wxStyledTextEvent::GetAlt() const { return (m_modifiers & SCI_ALT) != 0; }
808
f97d84a6 809
5fa4613c
RD
810wxStyledTextEvent::wxStyledTextEvent(const wxStyledTextEvent& event):
811 wxCommandEvent(event)
812{
813 m_position = event.m_position;
814 m_key = event.m_key;
815 m_modifiers = event.m_modifiers;
816 m_modificationType = event.m_modificationType;
817 m_text = event.m_text;
818 m_length = event.m_length;
819 m_linesAdded = event.m_linesAdded;
820 m_line = event.m_line;
821 m_foldLevelNow = event.m_foldLevelNow;
822 m_foldLevelPrev = event.m_foldLevelPrev;
823
824 m_margin = event.m_margin;
825
826 m_message = event.m_message;
827 m_wParam = event.m_wParam;
828 m_lParam = event.m_lParam;
829
830 m_listType = event.m_listType;
831 m_x = event.m_x;
832 m_y = event.m_y;
f97d84a6 833
5fa4613c
RD
834 m_dragText = event.m_dragText;
835 m_dragAllowMove =event.m_dragAllowMove;
92bbd64f 836#if wxUSE_DRAG_AND_DROP
5fa4613c 837 m_dragResult = event.m_dragResult;
92bbd64f 838#endif
f97d84a6
RD
839}
840
841//----------------------------------------------------------------------
842//----------------------------------------------------------------------
843
a29a241f
RD
844
845
846
5fa4613c
RD
847
848
849
850
851