fix for wxGTK. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
677 lines
19 KiB
C++
677 lines
19 KiB
C++
////////////////////////////////////////////////////////////////////////////
|
||
// Name: stc.cpp
|
||
// Purpose: A wxWindows implementation of Scintilla. This class is the
|
||
// one meant to be used directly by wx applications. It does not
|
||
// derive directly from the Scintilla classes, but instead
|
||
// delegates most things to the real Scintilla class.
|
||
// This allows the use of Scintilla without polluting the
|
||
// namespace with all the classes and identifiers from Scintilla.
|
||
//
|
||
// Author: Robin Dunn
|
||
//
|
||
// Created: 13-Jan-2000
|
||
// RCS-ID: $Id$
|
||
// Copyright: (c) 2000 by Total Control Software
|
||
// Licence: wxWindows license
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
|
||
#include <ctype.h>
|
||
|
||
#include "wx/stc/stc.h"
|
||
#include "ScintillaWX.h"
|
||
|
||
#include <wx/tokenzr.h>
|
||
|
||
// The following code forces a reference to all of the Scintilla lexers.
|
||
// If we don't do something like this, then the linker tends to "optimize"
|
||
// them away. (eric@sourcegear.com)
|
||
|
||
int wxForceScintillaLexers(void)
|
||
{
|
||
extern LexerModule lmAda;
|
||
extern LexerModule lmAVE;
|
||
extern LexerModule lmConf;
|
||
extern LexerModule lmCPP;
|
||
extern LexerModule lmNncrontab;
|
||
extern LexerModule lmEiffel;
|
||
extern LexerModule lmHTML;
|
||
extern LexerModule lmLISP;
|
||
extern LexerModule lmLua;
|
||
extern LexerModule lmBatch; // In LexOthers.cxx
|
||
extern LexerModule lmPascal;
|
||
extern LexerModule lmPerl;
|
||
extern LexerModule lmPython;
|
||
extern LexerModule lmRuby;
|
||
extern LexerModule lmSQL;
|
||
extern LexerModule lmVB;
|
||
|
||
if ( &lmAda
|
||
&& &lmAVE
|
||
&& &lmConf
|
||
&& &lmCPP
|
||
&& &lmNncrontab
|
||
&& &lmEiffel
|
||
&& &lmHTML
|
||
&& &lmLISP
|
||
&& &lmLua
|
||
&& &lmBatch
|
||
&& &lmPascal
|
||
&& &lmPerl
|
||
&& &lmPython
|
||
&& &lmRuby
|
||
&& &lmSQL
|
||
&& &lmVB )
|
||
{
|
||
return 1;
|
||
}
|
||
else
|
||
{
|
||
return 0;
|
||
}
|
||
}
|
||
|
||
//----------------------------------------------------------------------
|
||
|
||
const wxChar* wxSTCNameStr = "stcwindow";
|
||
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_CHANGE )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_STYLENEEDED )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_CHARADDED )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTREACHED )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTLEFT )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_ROMODIFYATTEMPT )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_KEY )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_DOUBLECLICK )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_UPDATEUI )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_MODIFIED )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_MACRORECORD )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_MARGINCLICK )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_NEEDSHOWN )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_POSCHANGED )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_PAINTED )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_USERLISTSELECTION )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_URIDROPPED )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_DWELLSTART )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_DWELLEND )
|
||
#if wxUSE_DRAG_AND_DROP
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_START_DRAG )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_DRAG_OVER )
|
||
DEFINE_EVENT_TYPE( wxEVT_STC_DO_DROP )
|
||
#endif
|
||
|
||
|
||
BEGIN_EVENT_TABLE(wxStyledTextCtrl, wxControl)
|
||
EVT_PAINT (wxStyledTextCtrl::OnPaint)
|
||
EVT_SCROLLWIN (wxStyledTextCtrl::OnScrollWin)
|
||
EVT_SCROLL (wxStyledTextCtrl::OnScroll)
|
||
EVT_SIZE (wxStyledTextCtrl::OnSize)
|
||
EVT_LEFT_DOWN (wxStyledTextCtrl::OnMouseLeftDown)
|
||
#ifdef __WXMSW__
|
||
// Let Scintilla see the double click as a second click
|
||
EVT_LEFT_DCLICK (wxStyledTextCtrl::OnMouseLeftDown)
|
||
#endif
|
||
EVT_MOTION (wxStyledTextCtrl::OnMouseMove)
|
||
EVT_LEFT_UP (wxStyledTextCtrl::OnMouseLeftUp)
|
||
#ifdef __WXGTK__
|
||
EVT_RIGHT_UP (wxStyledTextCtrl::OnMouseRightUp)
|
||
#else
|
||
EVT_CONTEXT_MENU (wxStyledTextCtrl::OnContextMenu)
|
||
#endif
|
||
EVT_MOUSEWHEEL (wxStyledTextCtrl::OnMouseWheel)
|
||
EVT_CHAR (wxStyledTextCtrl::OnChar)
|
||
EVT_KEY_DOWN (wxStyledTextCtrl::OnKeyDown)
|
||
EVT_KILL_FOCUS (wxStyledTextCtrl::OnLoseFocus)
|
||
EVT_SET_FOCUS (wxStyledTextCtrl::OnGainFocus)
|
||
EVT_SYS_COLOUR_CHANGED (wxStyledTextCtrl::OnSysColourChanged)
|
||
EVT_ERASE_BACKGROUND (wxStyledTextCtrl::OnEraseBackground)
|
||
EVT_MENU_RANGE (-1, -1, wxStyledTextCtrl::OnMenu)
|
||
EVT_LISTBOX_DCLICK (-1, wxStyledTextCtrl::OnListBox)
|
||
END_EVENT_TABLE()
|
||
|
||
|
||
IMPLEMENT_CLASS(wxStyledTextCtrl, wxControl)
|
||
IMPLEMENT_DYNAMIC_CLASS(wxStyledTextEvent, wxCommandEvent)
|
||
|
||
//----------------------------------------------------------------------
|
||
// Constructor and Destructor
|
||
|
||
wxStyledTextCtrl::wxStyledTextCtrl(wxWindow *parent,
|
||
wxWindowID id,
|
||
const wxPoint& pos,
|
||
const wxSize& size,
|
||
long style,
|
||
const wxString& name) :
|
||
wxControl(parent, id, pos, size,
|
||
style | wxVSCROLL | wxHSCROLL | wxWANTS_CHARS | wxCLIP_CHILDREN,
|
||
wxDefaultValidator, name)
|
||
{
|
||
m_swx = new ScintillaWX(this);
|
||
m_stopWatch.Start();
|
||
m_lastKeyDownConsumed = FALSE;
|
||
m_vScrollBar = NULL;
|
||
m_hScrollBar = NULL;
|
||
}
|
||
|
||
|
||
wxStyledTextCtrl::~wxStyledTextCtrl() {
|
||
delete m_swx;
|
||
}
|
||
|
||
|
||
//----------------------------------------------------------------------
|
||
|
||
long wxStyledTextCtrl::SendMsg(int msg, long wp, long lp) {
|
||
|
||
return m_swx->WndProc(msg, wp, lp);
|
||
}
|
||
|
||
|
||
#ifdef MAKELONG
|
||
#undef MAKELONG
|
||
#endif
|
||
|
||
#define MAKELONG(a, b) ((a) | ((b) << 16))
|
||
|
||
|
||
static long wxColourAsLong(const wxColour& co) {
|
||
return (((long)co.Blue() << 16) |
|
||
((long)co.Green() << 8) |
|
||
((long)co.Red()));
|
||
}
|
||
|
||
static wxColour wxColourFromLong(long c) {
|
||
wxColour clr;
|
||
clr.Set(c & 0xff, (c >> 8) & 0xff, (c >> 16) & 0xff);
|
||
return clr;
|
||
}
|
||
|
||
|
||
static wxColour wxColourFromSpec(const wxString& spec) {
|
||
// spec should be #RRGGBB
|
||
char* junk;
|
||
int red = strtol(spec.Mid(1,2), &junk, 16);
|
||
int green = strtol(spec.Mid(3,2), &junk, 16);
|
||
int blue = strtol(spec.Mid(5,2), &junk, 16);
|
||
return wxColour(red, green, blue);
|
||
}
|
||
|
||
|
||
//----------------------------------------------------------------------
|
||
// BEGIN generated section. The following code is automatically generated
|
||
// by gen_iface.py from the contents of Scintilla.iface. Do not edit
|
||
// this file. Edit stc.cpp.in or gen_iface.py instead and regenerate.
|
||
|
||
%(METHOD_IMPS)s
|
||
|
||
// END of generated section
|
||
//----------------------------------------------------------------------
|
||
|
||
|
||
// Returns the line number of the line with the caret.
|
||
int wxStyledTextCtrl::GetCurrentLine() {
|
||
int line = LineFromPosition(GetCurrentPos());
|
||
return line;
|
||
}
|
||
|
||
|
||
// Extract style settings from a spec-string which is composed of one or
|
||
// more of the following comma separated elements:
|
||
//
|
||
// bold turns on bold
|
||
// italic turns on italics
|
||
// fore:#RRGGBB sets the foreground colour
|
||
// back:#RRGGBB sets the background colour
|
||
// face:[facename] sets the font face name to use
|
||
// size:[num] sets the font size in points
|
||
// eol turns on eol filling
|
||
// underline turns on underlining
|
||
//
|
||
void wxStyledTextCtrl::StyleSetSpec(int styleNum, const wxString& spec) {
|
||
|
||
wxStringTokenizer tkz(spec, ",");
|
||
while (tkz.HasMoreTokens()) {
|
||
wxString token = tkz.GetNextToken();
|
||
|
||
wxString option = token.BeforeFirst(':');
|
||
wxString val = token.AfterFirst(':');
|
||
|
||
if (option == "bold")
|
||
StyleSetBold(styleNum, true);
|
||
|
||
else if (option == "italic")
|
||
StyleSetItalic(styleNum, true);
|
||
|
||
else if (option == "underline")
|
||
StyleSetUnderline(styleNum, true);
|
||
|
||
else if (option == "eol")
|
||
StyleSetEOLFilled(styleNum, true);
|
||
|
||
else if (option == "size") {
|
||
long points;
|
||
if (val.ToLong(&points))
|
||
StyleSetSize(styleNum, points);
|
||
}
|
||
|
||
else if (option == "face")
|
||
StyleSetFaceName(styleNum, val);
|
||
|
||
else if (option == "fore")
|
||
StyleSetForeground(styleNum, wxColourFromSpec(val));
|
||
|
||
else if (option == "back")
|
||
StyleSetBackground(styleNum, wxColourFromSpec(val));
|
||
}
|
||
}
|
||
|
||
|
||
// Set style size, face, bold, italic, and underline attributes from
|
||
// a wxFont's attributes.
|
||
void wxStyledTextCtrl::StyleSetFont(int styleNum, wxFont& font) {
|
||
int size = font.GetPointSize();
|
||
wxString faceName = font.GetFaceName();
|
||
bool bold = font.GetWeight() == wxBOLD;
|
||
bool italic = font.GetStyle() != wxNORMAL;
|
||
bool under = font.GetUnderlined();
|
||
|
||
// TODO: add encoding/charset mapping
|
||
StyleSetFontAttr(styleNum, size, faceName, bold, italic, under);
|
||
}
|
||
|
||
// Set all font style attributes at once.
|
||
void wxStyledTextCtrl::StyleSetFontAttr(int styleNum, int size,
|
||
const wxString& faceName,
|
||
bool bold, bool italic,
|
||
bool underline) {
|
||
StyleSetSize(styleNum, size);
|
||
StyleSetFaceName(styleNum, faceName);
|
||
StyleSetBold(styleNum, bold);
|
||
StyleSetItalic(styleNum, italic);
|
||
StyleSetUnderline(styleNum, underline);
|
||
|
||
// TODO: add encoding/charset mapping
|
||
}
|
||
|
||
|
||
// Perform one of the operations defined by the wxSTC_CMD_* constants.
|
||
void wxStyledTextCtrl::CmdKeyExecute(int cmd) {
|
||
SendMsg(cmd);
|
||
}
|
||
|
||
|
||
// Set the left and right margin in the edit area, measured in pixels.
|
||
void wxStyledTextCtrl::SetMargins(int left, int right) {
|
||
SetMarginLeft(left);
|
||
SetMarginRight(right);
|
||
}
|
||
|
||
|
||
// Retrieve the start and end positions of the current selection.
|
||
void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) {
|
||
if (startPos != NULL)
|
||
*startPos = SendMsg(SCI_GETSELECTIONSTART);
|
||
if (endPos != NULL)
|
||
*endPos = SendMsg(SCI_GETSELECTIONEND);
|
||
}
|
||
|
||
|
||
// Retrieve the point in the window where a position is displayed.
|
||
wxPoint wxStyledTextCtrl::PointFromPosition(int pos) {
|
||
int x = SendMsg(SCI_POINTXFROMPOSITION, 0, pos);
|
||
int y = SendMsg(SCI_POINTYFROMPOSITION, 0, pos);
|
||
return wxPoint(x, y);
|
||
}
|
||
|
||
// Scroll enough to make the given line visible
|
||
void wxStyledTextCtrl::ScrollToLine(int line) {
|
||
m_swx->DoScrollToLine(line);
|
||
}
|
||
|
||
|
||
// Scroll enough to make the given column visible
|
||
void wxStyledTextCtrl::ScrollToColumn(int column) {
|
||
m_swx->DoScrollToColumn(column);
|
||
}
|
||
|
||
|
||
|
||
//----------------------------------------------------------------------
|
||
// Event handlers
|
||
|
||
void wxStyledTextCtrl::OnPaint(wxPaintEvent& evt) {
|
||
wxPaintDC dc(this);
|
||
wxRegion region = GetUpdateRegion();
|
||
|
||
m_swx->DoPaint(&dc, region.GetBox());
|
||
}
|
||
|
||
void wxStyledTextCtrl::OnScrollWin(wxScrollWinEvent& evt) {
|
||
if (evt.GetOrientation() == wxHORIZONTAL)
|
||
m_swx->DoHScroll(evt.GetEventType(), evt.GetPosition());
|
||
else
|
||
m_swx->DoVScroll(evt.GetEventType(), evt.GetPosition());
|
||
}
|
||
|
||
void wxStyledTextCtrl::OnScroll(wxScrollEvent& evt) {
|
||
wxScrollBar* sb = wxDynamicCast(evt.GetEventObject(), wxScrollBar);
|
||
if (sb) {
|
||
if (sb->IsVertical())
|
||
m_swx->DoVScroll(evt.GetEventType(), evt.GetPosition());
|
||
else
|
||
m_swx->DoHScroll(evt.GetEventType(), evt.GetPosition());
|
||
}
|
||
}
|
||
|
||
void wxStyledTextCtrl::OnSize(wxSizeEvent& evt) {
|
||
wxSize sz = GetClientSize();
|
||
m_swx->DoSize(sz.x, sz.y);
|
||
}
|
||
|
||
void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent& evt) {
|
||
wxPoint pt = evt.GetPosition();
|
||
m_swx->DoButtonDown(Point(pt.x, pt.y), m_stopWatch.Time(),
|
||
evt.ShiftDown(), evt.ControlDown(), evt.AltDown());
|
||
}
|
||
|
||
void wxStyledTextCtrl::OnMouseMove(wxMouseEvent& evt) {
|
||
wxPoint pt = evt.GetPosition();
|
||
m_swx->DoButtonMove(Point(pt.x, pt.y));
|
||
}
|
||
|
||
void wxStyledTextCtrl::OnMouseLeftUp(wxMouseEvent& evt) {
|
||
wxPoint pt = evt.GetPosition();
|
||
m_swx->DoButtonUp(Point(pt.x, pt.y), m_stopWatch.Time(),
|
||
evt.ControlDown());
|
||
}
|
||
|
||
|
||
void wxStyledTextCtrl::OnMouseRightUp(wxMouseEvent& evt) {
|
||
wxPoint pt = evt.GetPosition();
|
||
m_swx->DoContextMenu(Point(pt.x, pt.y));
|
||
}
|
||
|
||
|
||
void wxStyledTextCtrl::OnContextMenu(wxContextMenuEvent& evt) {
|
||
wxPoint pt = evt.GetPosition();
|
||
ScreenToClient(&pt.x, &pt.y);
|
||
m_swx->DoContextMenu(Point(pt.x, pt.y));
|
||
}
|
||
|
||
|
||
void wxStyledTextCtrl::OnMouseWheel(wxMouseEvent& evt) {
|
||
m_swx->DoMouseWheel(evt.GetWheelRotation(),
|
||
evt.GetWheelDelta(),
|
||
evt.GetLinesPerAction(),
|
||
evt.ControlDown());
|
||
}
|
||
|
||
|
||
void wxStyledTextCtrl::OnChar(wxKeyEvent& evt) {
|
||
long key = evt.KeyCode();
|
||
|
||
// printf("OnChar key:%%d consumed:%%d ctrl:%%d alt:%%d\n",
|
||
// key, m_lastKeyDownConsumed, evt.ControlDown(), evt.AltDown());
|
||
|
||
// AltGr keys???
|
||
// \|@#<23>[]{}?<3F>$~ <20>,<2C>,<2C>,<2C>, <20>, <20>
|
||
|
||
// On (some?) non-US keyboards the AltGr key is required to enter some
|
||
// common characters. It comes to us as both Alt and Ctrl down so we need
|
||
// to let the char through in that case, otherwise if only ctrl or only
|
||
// alt let's skip it.
|
||
bool ctrl = evt.ControlDown();
|
||
bool alt = evt.AltDown();
|
||
bool skip = ((ctrl || alt) && ! (ctrl && alt));
|
||
|
||
if (key <= 0xff && key >= 32 && !m_lastKeyDownConsumed && !skip) {
|
||
m_swx->DoAddChar(key);
|
||
return;
|
||
}
|
||
evt.Skip();
|
||
}
|
||
|
||
|
||
void wxStyledTextCtrl::OnKeyDown(wxKeyEvent& evt) {
|
||
long key = evt.KeyCode();
|
||
bool shift = evt.ShiftDown(),
|
||
ctrl = evt.ControlDown(),
|
||
alt = evt.AltDown();
|
||
|
||
int processed = m_swx->DoKeyDown(key, shift, ctrl, alt, &m_lastKeyDownConsumed);
|
||
|
||
// printf("key: %%d shift: %%d ctrl: %%d alt: %%d processed: %%d consumed: %%d\n",
|
||
// key, shift, ctrl, alt, processed, m_lastKeyDownConsumed);
|
||
|
||
if (!processed && !m_lastKeyDownConsumed)
|
||
evt.Skip();
|
||
}
|
||
|
||
|
||
void wxStyledTextCtrl::OnLoseFocus(wxFocusEvent& evt) {
|
||
m_swx->DoLoseFocus();
|
||
}
|
||
|
||
|
||
void wxStyledTextCtrl::OnGainFocus(wxFocusEvent& evt) {
|
||
m_swx->DoGainFocus();
|
||
}
|
||
|
||
|
||
void wxStyledTextCtrl::OnSysColourChanged(wxSysColourChangedEvent& evt) {
|
||
m_swx->DoSysColourChange();
|
||
}
|
||
|
||
|
||
void wxStyledTextCtrl::OnEraseBackground(wxEraseEvent& evt) {
|
||
// do nothing to help avoid flashing
|
||
}
|
||
|
||
|
||
|
||
void wxStyledTextCtrl::OnMenu(wxCommandEvent& evt) {
|
||
m_swx->DoCommand(evt.GetId());
|
||
}
|
||
|
||
|
||
void wxStyledTextCtrl::OnListBox(wxCommandEvent& evt) {
|
||
m_swx->DoOnListBox();
|
||
}
|
||
|
||
|
||
//----------------------------------------------------------------------
|
||
// Turn notifications from Scintilla into events
|
||
|
||
|
||
void wxStyledTextCtrl::NotifyChange() {
|
||
wxStyledTextEvent evt(wxEVT_STC_CHANGE, GetId());
|
||
evt.SetEventObject(this);
|
||
GetEventHandler()->ProcessEvent(evt);
|
||
}
|
||
|
||
void wxStyledTextCtrl::NotifyParent(SCNotification* _scn) {
|
||
SCNotification& scn = *_scn;
|
||
wxStyledTextEvent evt(0, GetId());
|
||
|
||
evt.SetEventObject(this);
|
||
evt.SetPosition(scn.position);
|
||
evt.SetKey(scn.ch);
|
||
evt.SetModifiers(scn.modifiers);
|
||
|
||
switch (scn.nmhdr.code) {
|
||
case SCN_STYLENEEDED:
|
||
evt.SetEventType(wxEVT_STC_STYLENEEDED);
|
||
break;
|
||
|
||
case SCN_CHARADDED:
|
||
evt.SetEventType(wxEVT_STC_CHARADDED);
|
||
break;
|
||
|
||
case SCN_SAVEPOINTREACHED:
|
||
evt.SetEventType(wxEVT_STC_SAVEPOINTREACHED);
|
||
break;
|
||
|
||
case SCN_SAVEPOINTLEFT:
|
||
evt.SetEventType(wxEVT_STC_SAVEPOINTLEFT);
|
||
break;
|
||
|
||
case SCN_MODIFYATTEMPTRO:
|
||
evt.SetEventType(wxEVT_STC_ROMODIFYATTEMPT);
|
||
break;
|
||
|
||
case SCN_KEY:
|
||
evt.SetEventType(wxEVT_STC_KEY);
|
||
break;
|
||
|
||
case SCN_DOUBLECLICK:
|
||
evt.SetEventType(wxEVT_STC_DOUBLECLICK);
|
||
break;
|
||
|
||
case SCN_UPDATEUI:
|
||
evt.SetEventType(wxEVT_STC_UPDATEUI);
|
||
break;
|
||
|
||
case SCN_MODIFIED:
|
||
evt.SetEventType(wxEVT_STC_MODIFIED);
|
||
evt.SetModificationType(scn.modificationType);
|
||
if (scn.text)
|
||
evt.SetText(wxString(scn.text, scn.length));
|
||
evt.SetLength(scn.length);
|
||
evt.SetLinesAdded(scn.linesAdded);
|
||
evt.SetLine(scn.line);
|
||
evt.SetFoldLevelNow(scn.foldLevelNow);
|
||
evt.SetFoldLevelPrev(scn.foldLevelPrev);
|
||
break;
|
||
|
||
case SCN_MACRORECORD:
|
||
evt.SetEventType(wxEVT_STC_MACRORECORD);
|
||
evt.SetMessage(scn.message);
|
||
evt.SetWParam(scn.wParam);
|
||
evt.SetLParam(scn.lParam);
|
||
break;
|
||
|
||
case SCN_MARGINCLICK:
|
||
evt.SetEventType(wxEVT_STC_MARGINCLICK);
|
||
evt.SetMargin(scn.margin);
|
||
break;
|
||
|
||
case SCN_NEEDSHOWN:
|
||
evt.SetEventType(wxEVT_STC_NEEDSHOWN);
|
||
evt.SetLength(scn.length);
|
||
break;
|
||
|
||
case SCN_POSCHANGED:
|
||
evt.SetEventType(wxEVT_STC_POSCHANGED);
|
||
break;
|
||
|
||
case SCN_PAINTED:
|
||
evt.SetEventType(wxEVT_STC_PAINTED);
|
||
break;
|
||
|
||
case SCN_USERLISTSELECTION:
|
||
evt.SetEventType(wxEVT_STC_USERLISTSELECTION);
|
||
evt.SetListType(scn.listType);
|
||
evt.SetText(scn.text);
|
||
break;
|
||
|
||
case SCN_URIDROPPED:
|
||
evt.SetEventType(wxEVT_STC_URIDROPPED);
|
||
evt.SetText(scn.text);
|
||
break;
|
||
|
||
case SCN_DWELLSTART:
|
||
evt.SetEventType(wxEVT_STC_DWELLSTART);
|
||
evt.SetX(scn.x);
|
||
evt.SetY(scn.y);
|
||
break;
|
||
|
||
case SCN_DWELLEND:
|
||
evt.SetEventType(wxEVT_STC_DWELLEND);
|
||
evt.SetX(scn.x);
|
||
evt.SetY(scn.y);
|
||
break;
|
||
|
||
default:
|
||
return;
|
||
}
|
||
|
||
GetEventHandler()->ProcessEvent(evt);
|
||
}
|
||
|
||
|
||
//----------------------------------------------------------------------
|
||
//----------------------------------------------------------------------
|
||
//----------------------------------------------------------------------
|
||
|
||
wxStyledTextEvent::wxStyledTextEvent(wxEventType commandType, int id)
|
||
: wxCommandEvent(commandType, id)
|
||
{
|
||
m_position = 0;
|
||
m_key = 0;
|
||
m_modifiers = 0;
|
||
m_modificationType = 0;
|
||
m_length = 0;
|
||
m_linesAdded = 0;
|
||
m_line = 0;
|
||
m_foldLevelNow = 0;
|
||
m_foldLevelPrev = 0;
|
||
m_margin = 0;
|
||
m_message = 0;
|
||
m_wParam = 0;
|
||
m_lParam = 0;
|
||
m_listType = 0;
|
||
m_x = 0;
|
||
m_y = 0;
|
||
#if wxUSE_DRAG_AND_DROP
|
||
m_dragAllowMove = FALSE;
|
||
m_dragResult = wxDragNone;
|
||
#endif
|
||
}
|
||
|
||
bool wxStyledTextEvent::GetShift() const { return (m_modifiers & SCI_SHIFT) != 0; }
|
||
bool wxStyledTextEvent::GetControl() const { return (m_modifiers & SCI_CTRL) != 0; }
|
||
bool wxStyledTextEvent::GetAlt() const { return (m_modifiers & SCI_ALT) != 0; }
|
||
|
||
|
||
wxStyledTextEvent::wxStyledTextEvent(const wxStyledTextEvent& event):
|
||
wxCommandEvent(event)
|
||
{
|
||
m_position = event.m_position;
|
||
m_key = event.m_key;
|
||
m_modifiers = event.m_modifiers;
|
||
m_modificationType = event.m_modificationType;
|
||
m_text = event.m_text;
|
||
m_length = event.m_length;
|
||
m_linesAdded = event.m_linesAdded;
|
||
m_line = event.m_line;
|
||
m_foldLevelNow = event.m_foldLevelNow;
|
||
m_foldLevelPrev = event.m_foldLevelPrev;
|
||
|
||
m_margin = event.m_margin;
|
||
|
||
m_message = event.m_message;
|
||
m_wParam = event.m_wParam;
|
||
m_lParam = event.m_lParam;
|
||
|
||
m_listType = event.m_listType;
|
||
m_x = event.m_x;
|
||
m_y = event.m_y;
|
||
|
||
#if wxUSE_DRAG_AND_DROP
|
||
m_dragText = event.m_dragText;
|
||
m_dragAllowMove =event.m_dragAllowMove;
|
||
m_dragResult = event.m_dragResult;
|
||
#endif
|
||
}
|
||
|
||
//----------------------------------------------------------------------
|
||
//----------------------------------------------------------------------
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|