]> git.saurik.com Git - wxWidgets.git/blame - src/stc/ScintillaWX.h
Added manual files
[wxWidgets.git] / src / stc / ScintillaWX.h
CommitLineData
9ce192d4
RD
1////////////////////////////////////////////////////////////////////////////
2// Name: ScintillaWX.h
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.
8//
9// Author: Robin Dunn
10//
11// Created: 13-Jan-2000
12// RCS-ID: $Id$
13// Copyright: (c) 2000 by Total Control Software
14// Licence: wxWindows license
15/////////////////////////////////////////////////////////////////////////////
16
17#ifndef __ScintillaWX_h__
18#define __ScintillaWX_h__
19
20//----------------------------------------------------------------------
21
22#include "Platform.h"
23
24#include "Scintilla.h"
25#ifdef SCI_LEXER
26#include "SciLexer.h"
27#include "PropSet.h"
28#include "Accessor.h"
29#include "KeyWords.h"
30#endif
31#include "ContractionState.h"
32#include "SVector.h"
33#include "CellBuffer.h"
34#include "CallTip.h"
35#include "KeyMap.h"
36#include "Indicator.h"
37#include "LineMarker.h"
38#include "Style.h"
39#include "ViewStyle.h"
40#include "AutoComplete.h"
41#include "Document.h"
42#include "Editor.h"
43#include "ScintillaBase.h"
44
45#include <wx/wx.h>
46#include <wx/dataobj.h>
47#include <wx/clipbrd.h>
48#include <wx/dnd.h>
49
50//----------------------------------------------------------------------
51
52class wxStyledTextCtrl; // forward
53class ScintillaWX;
54
55
56//----------------------------------------------------------------------
57// Helper classes
58
59class wxSTCDropTarget : public wxTextDropTarget {
60public:
61 void SetScintilla(ScintillaWX* swx) {
62 this->swx = swx;
63 }
64
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);
68 void OnLeave();
69
70private:
71 ScintillaWX* swx;
72};
73
74
75//----------------------------------------------------------------------
76
77class ScintillaWX : public ScintillaBase {
78public:
79
80 ScintillaWX(wxStyledTextCtrl* win);
81 ~ScintillaWX();
82
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);
94 virtual void Copy();
95 virtual void Paste();
96 virtual void CreateCallTipWindow(PRectangle rc);
97 virtual void AddToPopUp(const char *label, int cmd = 0, bool enabled = true);
98 virtual void ClaimSelection();
99
d134f170
RD
100 virtual long DefWndProc(unsigned int iMessage,
101 unsigned long wParam,
102 long lParam);
103 virtual long WndProc(unsigned int iMessage,
104 unsigned long wParam,
105 long lParam);
9ce192d4
RD
106
107 virtual void NotifyChange();
108 virtual void NotifyParent(SCNotification scn);
109
110
111 // Event delegates
112 void DoPaint(wxDC* dc, wxRect rect);
113 void DoHScroll(int type, int pos);
114 void DoVScroll(int type, int pos);
115 void DoSize(int width, int height);
116 void DoLoseFocus();
117 void DoGainFocus();
118 void DoSysColourChange();
119 void DoButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, bool alt);
120 void DoButtonUp(Point pt, unsigned int curTime, bool ctrl);
121 void DoButtonMove(Point pt);
122 void DoAddChar(char ch);
123 int DoKeyDown(int key, bool shift, bool ctrl, bool alt);
124 void DoTick() { Tick(); }
125
126 bool DoDropText(long x, long y, const wxString& data);
127 wxDragResult DoDragEnter(wxCoord x, wxCoord y, wxDragResult def);
128 wxDragResult DoDragOver(wxCoord x, wxCoord y, wxDragResult def);
129 void DoDragLeave();
130
131 void DoCommand(int ID);
132 void DoContextMenu(Point pt);
f6bcfd97 133 void DoOnListBox();
9ce192d4
RD
134
135
136 // helpers
137 void FullPaint();
138 bool CanPaste();
139 bool GetHideSelection() { return hideSelection; }
140 void DoScrollToLine(int line);
141 void DoScrollToColumn(int column);
142
143private:
144 bool capturedMouse;
145 wxStyledTextCtrl* stc;
146
9eb662e9 147 wxSTCDropTarget* dropTarget;
9ce192d4
RD
148 wxDragResult dragResult;
149};
150
151//----------------------------------------------------------------------
152#endif