]>
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 //----------------------------------------------------------------------
24 #include "Scintilla.h"
31 #include "ContractionState.h"
33 #include "CellBuffer.h"
36 #include "Indicator.h"
37 #include "LineMarker.h"
39 #include "ViewStyle.h"
40 #include "AutoComplete.h"
43 #include "ScintillaBase.h"
46 #include <wx/dataobj.h>
47 #include <wx/clipbrd.h>
50 //----------------------------------------------------------------------
52 class wxStyledTextCtrl
; // forward
56 //----------------------------------------------------------------------
59 class wxSTCDropTarget
: public wxTextDropTarget
{
61 void SetScintilla(ScintillaWX
* swx
) {
65 bool OnDropText(wxCoord x
, wxCoord y
, const wxString
& data
);
66 wxDragResult
OnEnter(wxCoord x
, wxCoord y
, wxDragResult def
);
67 wxDragResult
OnDragOver(wxCoord x
, wxCoord y
, wxDragResult def
);
75 //----------------------------------------------------------------------
77 class ScintillaWX
: public ScintillaBase
{
80 ScintillaWX(wxStyledTextCtrl
* win
);
83 // base class virtuals
84 virtual void Initialise();
85 virtual void Finalise();
86 virtual void StartDrag();
87 virtual void SetTicking(bool on
);
88 virtual void SetMouseCapture(bool on
);
89 virtual bool HaveMouseCapture();
90 virtual void ScrollText(int linesToMove
);
91 virtual void SetVerticalScrollPos();
92 virtual void SetHorizontalScrollPos();
93 virtual bool ModifyScrollBars(int nMax
, int nPage
);
96 virtual void CreateCallTipWindow(PRectangle rc
);
97 virtual void AddToPopUp(const char *label
, int cmd
= 0, bool enabled
= true);
98 virtual void ClaimSelection();
100 virtual LRESULT
DefWndProc(UINT iMessage
, WPARAM wParam
, LPARAM lParam
);
101 virtual LRESULT
WndProc(UINT iMessage
, WPARAM wParam
, LPARAM lParam
);
103 virtual void NotifyChange();
104 virtual void NotifyParent(SCNotification scn
);
108 void DoPaint(wxDC
* dc
, wxRect rect
);
109 void DoHScroll(int type
, int pos
);
110 void DoVScroll(int type
, int pos
);
111 void DoSize(int width
, int height
);
114 void DoSysColourChange();
115 void DoButtonDown(Point pt
, unsigned int curTime
, bool shift
, bool ctrl
, bool alt
);
116 void DoButtonUp(Point pt
, unsigned int curTime
, bool ctrl
);
117 void DoButtonMove(Point pt
);
118 void DoAddChar(char ch
);
119 int DoKeyDown(int key
, bool shift
, bool ctrl
, bool alt
);
120 void DoTick() { Tick(); }
122 bool DoDropText(long x
, long y
, const wxString
& data
);
123 wxDragResult
DoDragEnter(wxCoord x
, wxCoord y
, wxDragResult def
);
124 wxDragResult
DoDragOver(wxCoord x
, wxCoord y
, wxDragResult def
);
127 void DoCommand(int ID
);
128 void DoContextMenu(Point pt
);
135 bool GetHideSelection() { return hideSelection
; }
136 void DoScrollToLine(int line
);
137 void DoScrollToColumn(int column
);
141 wxStyledTextCtrl
* stc
;
143 wxSTCDropTarget
* dropTarget
;
144 wxDragResult dragResult
;
147 //----------------------------------------------------------------------