]>
git.saurik.com Git - wxWidgets.git/blob - src/stc/ScintillaWX.h
1 ////////////////////////////////////////////////////////////////////////////
3 // Purpose: A wxWindows implementation of Scintilla. A class derived
4 // from ScintillaBase that uses the "wx platform" defined in
5 // PlatWX.cpp. This class is one end of a bridge between
6 // the wx world and the Scintilla world. It needs a peer
7 // object of type wxStyledTextCtrl to function.
11 // Created: 13-Jan-2000
13 // Copyright: (c) 2000 by Total Control Software
14 // Licence: wxWindows license
15 /////////////////////////////////////////////////////////////////////////////
17 #ifndef __ScintillaWX_h__
18 #define __ScintillaWX_h__
20 //----------------------------------------------------------------------
29 #include "Scintilla.h"
37 #include "ContractionState.h"
39 #include "CellBuffer.h"
42 #include "Indicator.h"
43 #include "LineMarker.h"
45 #include "ViewStyle.h"
46 #include "AutoComplete.h"
49 #include "ScintillaBase.h"
52 #include <wx/dataobj.h>
53 #include <wx/clipbrd.h>
56 //----------------------------------------------------------------------
58 class wxStyledTextCtrl
; // forward
62 //----------------------------------------------------------------------
65 #if wxUSE_DRAG_AND_DROP
66 class wxSTCDropTarget
: public wxTextDropTarget
{
68 void SetScintilla(ScintillaWX
* swx
) {
72 bool OnDropText(wxCoord x
, wxCoord y
, const wxString
& data
);
73 wxDragResult
OnEnter(wxCoord x
, wxCoord y
, wxDragResult def
);
74 wxDragResult
OnDragOver(wxCoord x
, wxCoord y
, wxDragResult def
);
82 //----------------------------------------------------------------------
84 class ScintillaWX
: public ScintillaBase
{
87 ScintillaWX(wxStyledTextCtrl
* win
);
90 // base class virtuals
91 virtual void Initialise();
92 virtual void Finalise();
93 virtual void StartDrag();
94 virtual void SetTicking(bool on
);
95 virtual void SetMouseCapture(bool on
);
96 virtual bool HaveMouseCapture();
97 virtual void ScrollText(int linesToMove
);
98 virtual void SetVerticalScrollPos();
99 virtual void SetHorizontalScrollPos();
100 virtual bool ModifyScrollBars(int nMax
, int nPage
);
102 virtual void Paste();
103 virtual void CreateCallTipWindow(PRectangle rc
);
104 virtual void AddToPopUp(const char *label
, int cmd
= 0, bool enabled
= true);
105 virtual void ClaimSelection();
107 virtual long DefWndProc(unsigned int iMessage
,
108 unsigned long wParam
,
110 virtual long WndProc(unsigned int iMessage
,
111 unsigned long wParam
,
114 virtual void NotifyChange();
115 virtual void NotifyParent(SCNotification scn
);
119 void DoPaint(wxDC
* dc
, wxRect rect
);
120 void DoHScroll(int type
, int pos
);
121 void DoVScroll(int type
, int pos
);
122 void DoSize(int width
, int height
);
125 void DoSysColourChange();
126 void DoLeftButtonDown(Point pt
, unsigned int curTime
, bool shift
, bool ctrl
, bool alt
);
127 void DoLeftButtonUp(Point pt
, unsigned int curTime
, bool ctrl
);
128 void DoLeftButtonMove(Point pt
);
129 void DoMiddleButtonUp(Point pt
);
130 void DoMouseWheel(int rotation
, int delta
, int linesPerAction
, int ctrlDown
, bool isPageScroll
);
131 void DoAddChar(int key
);
132 int DoKeyDown(int key
, bool shift
, bool ctrl
, bool alt
, bool* consumed
);
133 void DoTick() { Tick(); }
135 #if wxUSE_DRAG_AND_DROP
136 bool DoDropText(long x
, long y
, const wxString
& data
);
137 wxDragResult
DoDragEnter(wxCoord x
, wxCoord y
, wxDragResult def
);
138 wxDragResult
DoDragOver(wxCoord x
, wxCoord y
, wxDragResult def
);
142 void DoCommand(int ID
);
143 void DoContextMenu(Point pt
);
150 bool GetHideSelection() { return hideSelection
; }
151 void DoScrollToLine(int line
);
152 void DoScrollToColumn(int column
);
153 void ClipChildren(wxDC
& dc
, PRectangle rect
);
157 wxStyledTextCtrl
* stc
;
159 #if wxUSE_DRAG_AND_DROP
160 wxSTCDropTarget
* dropTarget
;
161 wxDragResult dragResult
;
166 friend class wxSTCCallTip
;
169 //----------------------------------------------------------------------