]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/textctrl.h
remove virtual override that just calls base
[wxWidgets.git] / include / wx / gtk / textctrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/textctrl.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Created: 01/02/97
6 // Id: $Id$
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_GTK_TEXTCTRL_H_
12 #define _WX_GTK_TEXTCTRL_H_
13
14 typedef struct _GtkTextMark GtkTextMark;
15
16 //-----------------------------------------------------------------------------
17 // wxTextCtrl
18 //-----------------------------------------------------------------------------
19
20 class WXDLLIMPEXP_CORE wxTextCtrl: public wxTextCtrlBase
21 {
22 public:
23 wxTextCtrl() { Init(); }
24 wxTextCtrl(wxWindow *parent,
25 wxWindowID id,
26 const wxString &value = wxEmptyString,
27 const wxPoint &pos = wxDefaultPosition,
28 const wxSize &size = wxDefaultSize,
29 long style = 0,
30 const wxValidator& validator = wxDefaultValidator,
31 const wxString &name = wxTextCtrlNameStr);
32
33 virtual ~wxTextCtrl();
34
35 bool Create(wxWindow *parent,
36 wxWindowID id,
37 const wxString &value = wxEmptyString,
38 const wxPoint &pos = wxDefaultPosition,
39 const wxSize &size = wxDefaultSize,
40 long style = 0,
41 const wxValidator& validator = wxDefaultValidator,
42 const wxString &name = wxTextCtrlNameStr);
43
44 // implement base class pure virtuals
45 // ----------------------------------
46
47 virtual void WriteText(const wxString& text);
48 virtual wxString GetValue() const;
49 virtual bool IsEmpty() const;
50
51 virtual int GetLineLength(long lineNo) const;
52 virtual wxString GetLineText(long lineNo) const;
53 virtual int GetNumberOfLines() const;
54
55 virtual bool IsModified() const;
56 virtual bool IsEditable() const;
57
58 virtual void GetSelection(long* from, long* to) const;
59
60 virtual void Remove(long from, long to);
61
62 virtual void MarkDirty();
63 virtual void DiscardEdits();
64
65 virtual bool SetStyle(long start, long end, const wxTextAttr& style);
66 virtual bool GetStyle(long position, wxTextAttr& style);
67
68 // translate between the position (which is just an index in the text ctrl
69 // considering all its contents as a single strings) and (x, y) coordinates
70 // which represent column and line.
71 virtual long XYToPosition(long x, long y) const;
72 virtual bool PositionToXY(long pos, long *x, long *y) const;
73
74 virtual void ShowPosition(long pos);
75
76 virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const;
77 virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt,
78 wxTextCoord *col,
79 wxTextCoord *row) const
80 {
81 return wxTextCtrlBase::HitTest(pt, col, row);
82 }
83
84 // Clipboard operations
85 virtual void Copy();
86 virtual void Cut();
87 virtual void Paste();
88
89 // Insertion point
90 virtual void SetInsertionPoint(long pos);
91 virtual long GetInsertionPoint() const;
92 virtual wxTextPos GetLastPosition() const;
93
94 virtual void SetSelection(long from, long to);
95 virtual void SetEditable(bool editable);
96
97 // Overridden wxWindow methods
98 virtual void SetWindowStyleFlag( long style );
99 virtual bool Enable( bool enable = true );
100
101 // Implementation from now on
102 void OnDropFiles( wxDropFilesEvent &event );
103 void OnChar( wxKeyEvent &event );
104
105 void OnCut(wxCommandEvent& event);
106 void OnCopy(wxCommandEvent& event);
107 void OnPaste(wxCommandEvent& event);
108 void OnUndo(wxCommandEvent& event);
109 void OnRedo(wxCommandEvent& event);
110
111 void OnUpdateCut(wxUpdateUIEvent& event);
112 void OnUpdateCopy(wxUpdateUIEvent& event);
113 void OnUpdatePaste(wxUpdateUIEvent& event);
114 void OnUpdateUndo(wxUpdateUIEvent& event);
115 void OnUpdateRedo(wxUpdateUIEvent& event);
116
117 bool SetFont(const wxFont& font);
118 bool SetForegroundColour(const wxColour& colour);
119 bool SetBackgroundColour(const wxColour& colour);
120
121 GtkWidget* GetConnectWidget();
122
123 void SetUpdateFont(bool WXUNUSED(update)) { }
124
125 // implementation only from now on
126
127 // tell the control to ignore next text changed signal
128 void IgnoreNextTextUpdate(int n = 1) { m_countUpdatesToIgnore = n; }
129
130 // should we ignore the changed signal? always resets the flag
131 bool IgnoreTextUpdate();
132
133 // call this to indicate that the control is about to be changed
134 // programmatically and so m_modified flag shouldn't be set
135 void DontMarkDirtyOnNextChange() { m_dontMarkDirty = true; }
136
137 // should we mark the control as dirty? always resets the flag
138 bool MarkDirtyOnChange();
139
140 // always let GTK have mouse release events for multiline controls
141 virtual bool GTKProcessEvent(wxEvent& event) const;
142
143
144 static wxVisualAttributes
145 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
146
147 protected:
148 // wxGTK-specific: called recursively by Enable,
149 // to give widgets an oppprtunity to correct their colours after they
150 // have been changed by Enable
151 virtual void OnEnabled(bool enable);
152
153 // overridden wxWindow virtual methods
154 virtual wxSize DoGetBestSize() const;
155 virtual void DoApplyWidgetStyle(GtkRcStyle *style);
156 virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
157
158 virtual void DoFreeze();
159 virtual void DoThaw();
160
161 // common part of all ctors
162 void Init();
163
164 // Widgets that use the style->base colour for the BG colour should
165 // override this and return true.
166 virtual bool UseGTKStyleBase() const { return true; }
167
168 virtual void DoSetValue(const wxString &value, int flags = 0);
169
170 virtual wxPoint DoPositionToCoords(long pos) const;
171
172 // wrappers hiding the differences between functions doing the same thing
173 // for GtkTextView and GtkEntry (all of them use current window style to
174 // set the given characteristic)
175 void GTKSetEditable();
176 void GTKSetVisibility();
177 void GTKSetActivatesDefault();
178 void GTKSetWrapMode();
179 void GTKSetJustification();
180
181 private:
182 // overridden wxTextEntry virtual methods
183 virtual GtkEditable *GetEditable() const;
184 virtual GtkEntry *GetEntry() const;
185 virtual void EnableTextChangedEvents(bool enable);
186
187 // change the font for everything in this control
188 void ChangeFontGlobally();
189
190 // get the encoding which is used in this control: this looks at our font
191 // and default style but not the current style (i.e. the style for the
192 // current position); returns wxFONTENCODING_SYSTEM if we have no specific
193 // encoding
194 wxFontEncoding GetTextEncoding() const;
195
196 // returns either m_text or m_buffer depending on whether the control is
197 // single- or multi-line; convenient for the GTK+ functions which work with
198 // both
199 void *GetTextObject() const
200 {
201 return IsMultiLine() ? static_cast<void *>(m_buffer)
202 : static_cast<void *>(m_text);
203 }
204
205
206 // the widget used for single line controls
207 GtkWidget *m_text;
208
209 bool m_modified:1;
210 bool m_dontMarkDirty:1;
211
212 int m_countUpdatesToIgnore;
213
214 // Our text buffer. Convenient, and holds the buffer while using
215 // a dummy one when frozen
216 GtkTextBuffer *m_buffer;
217
218 GtkTextMark* m_showPositionOnThaw;
219 GSList* m_anonymousMarkList;
220
221 // For wxTE_AUTO_URL
222 void OnUrlMouseEvent(wxMouseEvent&);
223
224 DECLARE_EVENT_TABLE()
225 DECLARE_DYNAMIC_CLASS(wxTextCtrl)
226 };
227
228 #endif // _WX_GTK_TEXTCTRL_H_