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 #ifdef WXMAKINGDLL_STC
59 #define WXDLLIMPEXP_STC WXEXPORT
60 #elif defined(WXUSINGDLL)
61 #define WXDLLIMPEXP_STC WXIMPORT
62 #else // not making nor using DLL
63 #define WXDLLIMPEXP_STC
66 class WXDLLIMPEXP_STC wxStyledTextCtrl
; // forward
70 //----------------------------------------------------------------------
73 #if wxUSE_DRAG_AND_DROP
74 class wxSTCDropTarget
: public wxTextDropTarget
{
76 void SetScintilla(ScintillaWX
* swx
) {
80 bool OnDropText(wxCoord x
, wxCoord y
, const wxString
& data
);
81 wxDragResult
OnEnter(wxCoord x
, wxCoord y
, wxDragResult def
);
82 wxDragResult
OnDragOver(wxCoord x
, wxCoord y
, wxDragResult def
);
90 //----------------------------------------------------------------------
92 class ScintillaWX
: public ScintillaBase
{
95 ScintillaWX(wxStyledTextCtrl
* win
);
98 // base class virtuals
99 virtual void Initialise();
100 virtual void Finalise();
101 virtual void StartDrag();
102 virtual void SetTicking(bool on
);
103 virtual void SetMouseCapture(bool on
);
104 virtual bool HaveMouseCapture();
105 virtual void ScrollText(int linesToMove
);
106 virtual void SetVerticalScrollPos();
107 virtual void SetHorizontalScrollPos();
108 virtual bool ModifyScrollBars(int nMax
, int nPage
);
110 virtual void Paste();
111 virtual void CopyToClipboard(const SelectionText
&selectedText
);
113 virtual void CreateCallTipWindow(PRectangle rc
);
114 virtual void AddToPopUp(const char *label
, int cmd
= 0, bool enabled
= true);
115 virtual void ClaimSelection();
117 virtual long DefWndProc(unsigned int iMessage
,
118 unsigned long wParam
,
120 virtual long WndProc(unsigned int iMessage
,
121 unsigned long wParam
,
124 virtual void NotifyChange();
125 virtual void NotifyParent(SCNotification scn
);
127 virtual void CancelModes();
130 void DoPaint(wxDC
* dc
, wxRect rect
);
131 void DoHScroll(int type
, int pos
);
132 void DoVScroll(int type
, int pos
);
133 void DoSize(int width
, int height
);
136 void DoSysColourChange();
137 void DoLeftButtonDown(Point pt
, unsigned int curTime
, bool shift
, bool ctrl
, bool alt
);
138 void DoLeftButtonUp(Point pt
, unsigned int curTime
, bool ctrl
);
139 void DoLeftButtonMove(Point pt
);
140 void DoMiddleButtonUp(Point pt
);
141 void DoMouseWheel(int rotation
, int delta
, int linesPerAction
, int ctrlDown
, bool isPageScroll
);
142 void DoAddChar(int key
);
143 int DoKeyDown(int key
, bool shift
, bool ctrl
, bool alt
, bool meta
, bool* consumed
);
144 void DoTick() { Tick(); }
146 #if wxUSE_DRAG_AND_DROP
147 bool DoDropText(long x
, long y
, const wxString
& data
);
148 wxDragResult
DoDragEnter(wxCoord x
, wxCoord y
, wxDragResult def
);
149 wxDragResult
DoDragOver(wxCoord x
, wxCoord y
, wxDragResult def
);
153 void DoCommand(int ID
);
154 void DoContextMenu(Point pt
);
161 bool GetHideSelection() { return hideSelection
; }
162 void DoScrollToLine(int line
);
163 void DoScrollToColumn(int column
);
164 void ClipChildren(wxDC
& dc
, PRectangle rect
);
169 wxStyledTextCtrl
* stc
;
171 #if wxUSE_DRAG_AND_DROP
172 wxSTCDropTarget
* dropTarget
;
173 wxDragResult dragResult
;
178 friend class wxSTCCallTip
;
181 //----------------------------------------------------------------------