]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
6b0d8a01 | 2 | // Name: wx/gtk/textctrl.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
7c41ac7b | 6 | // Id: $Id$ |
371a5b4e | 7 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 8 | // Licence: wxWindows licence |
c801d85f KB |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
c801d85f KB |
11 | #ifndef __GTKTEXTCTRLH__ |
12 | #define __GTKTEXTCTRLH__ | |
13 | ||
c801d85f | 14 | //----------------------------------------------------------------------------- |
a1b82138 | 15 | // wxTextCtrl |
c801d85f KB |
16 | //----------------------------------------------------------------------------- |
17 | ||
20123d49 | 18 | class WXDLLIMPEXP_CORE wxTextCtrl: public wxTextCtrlBase |
c801d85f | 19 | { |
a1b82138 | 20 | public: |
01041145 | 21 | wxTextCtrl() { Init(); } |
13111b2a VZ |
22 | wxTextCtrl(wxWindow *parent, |
23 | wxWindowID id, | |
24 | const wxString &value = wxEmptyString, | |
25 | const wxPoint &pos = wxDefaultPosition, | |
26 | const wxSize &size = wxDefaultSize, | |
27 | long style = 0, | |
28 | const wxValidator& validator = wxDefaultValidator, | |
29 | const wxString &name = wxTextCtrlNameStr); | |
30 | ||
9440c3d0 KH |
31 | ~wxTextCtrl(); |
32 | ||
13111b2a VZ |
33 | bool Create(wxWindow *parent, |
34 | wxWindowID id, | |
35 | const wxString &value = wxEmptyString, | |
36 | const wxPoint &pos = wxDefaultPosition, | |
37 | const wxSize &size = wxDefaultSize, | |
38 | long style = 0, | |
39 | const wxValidator& validator = wxDefaultValidator, | |
40 | const wxString &name = wxTextCtrlNameStr); | |
a1b82138 VZ |
41 | |
42 | // implement base class pure virtuals | |
43 | // ---------------------------------- | |
44 | ||
45 | virtual wxString GetValue() const; | |
46 | virtual void SetValue(const wxString& value); | |
47 | ||
48 | virtual int GetLineLength(long lineNo) const; | |
49 | virtual wxString GetLineText(long lineNo) const; | |
50 | virtual int GetNumberOfLines() const; | |
51 | ||
52 | virtual bool IsModified() const; | |
53 | virtual bool IsEditable() const; | |
54 | ||
55 | // If the return values from and to are the same, there is no selection. | |
56 | virtual void GetSelection(long* from, long* to) const; | |
57 | ||
58 | // operations | |
59 | // ---------- | |
60 | ||
61 | // editing | |
62 | virtual void Clear(); | |
63 | virtual void Replace(long from, long to, const wxString& value); | |
64 | virtual void Remove(long from, long to); | |
65 | ||
3a9fa0d6 VZ |
66 | // sets/clears the dirty flag |
67 | virtual void MarkDirty(); | |
a1b82138 VZ |
68 | virtual void DiscardEdits(); |
69 | ||
d7eee191 VZ |
70 | virtual void SetMaxLength(unsigned long len); |
71 | ||
a1b82138 VZ |
72 | // writing text inserts it at the current position, appending always |
73 | // inserts it at the end | |
74 | virtual void WriteText(const wxString& text); | |
75 | virtual void AppendText(const wxString& text); | |
76 | ||
17665a2b VZ |
77 | // apply text attribute to the range of text (only works with richedit |
78 | // controls) | |
79 | virtual bool SetStyle(long start, long end, const wxTextAttr& style); | |
80 | ||
a1b82138 VZ |
81 | // translate between the position (which is just an index in the text ctrl |
82 | // considering all its contents as a single strings) and (x, y) coordinates | |
83 | // which represent column and line. | |
84 | virtual long XYToPosition(long x, long y) const; | |
0efe5ba7 | 85 | virtual bool PositionToXY(long pos, long *x, long *y) const; |
a1b82138 VZ |
86 | |
87 | virtual void ShowPosition(long pos); | |
88 | ||
c04ec496 VZ |
89 | #ifdef __WXGTK20__ |
90 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const; | |
4aae4a08 RD |
91 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, |
92 | wxTextCoord *col, | |
93 | wxTextCoord *row) const | |
94 | { | |
95 | return wxTextCtrlBase::HitTest(pt, col, row); | |
96 | } | |
c04ec496 VZ |
97 | #endif // __WXGTK20__ |
98 | ||
a1b82138 VZ |
99 | // Clipboard operations |
100 | virtual void Copy(); | |
101 | virtual void Cut(); | |
102 | virtual void Paste(); | |
7c41ac7b | 103 | |
ca8b28f2 JS |
104 | // Undo/redo |
105 | virtual void Undo(); | |
106 | virtual void Redo(); | |
107 | ||
108 | virtual bool CanUndo() const; | |
109 | virtual bool CanRedo() const; | |
110 | ||
a1b82138 VZ |
111 | // Insertion point |
112 | virtual void SetInsertionPoint(long pos); | |
113 | virtual void SetInsertionPointEnd(); | |
114 | virtual long GetInsertionPoint() const; | |
7d8268a1 | 115 | virtual wxTextPos GetLastPosition() const; |
a1b82138 VZ |
116 | |
117 | virtual void SetSelection(long from, long to); | |
118 | virtual void SetEditable(bool editable); | |
ca8b28f2 | 119 | |
7d8268a1 | 120 | virtual bool Enable( bool enable = true ); |
68df5777 | 121 | |
a1b82138 VZ |
122 | // Implementation from now on |
123 | void OnDropFiles( wxDropFilesEvent &event ); | |
c801d85f | 124 | void OnChar( wxKeyEvent &event ); |
7c41ac7b | 125 | |
e702ff0f JS |
126 | void OnCut(wxCommandEvent& event); |
127 | void OnCopy(wxCommandEvent& event); | |
128 | void OnPaste(wxCommandEvent& event); | |
129 | void OnUndo(wxCommandEvent& event); | |
130 | void OnRedo(wxCommandEvent& event); | |
131 | ||
132 | void OnUpdateCut(wxUpdateUIEvent& event); | |
133 | void OnUpdateCopy(wxUpdateUIEvent& event); | |
134 | void OnUpdatePaste(wxUpdateUIEvent& event); | |
135 | void OnUpdateUndo(wxUpdateUIEvent& event); | |
136 | void OnUpdateRedo(wxUpdateUIEvent& event); | |
137 | ||
17665a2b VZ |
138 | bool SetFont(const wxFont& font); |
139 | bool SetForegroundColour(const wxColour& colour); | |
140 | bool SetBackgroundColour(const wxColour& colour); | |
68dda785 | 141 | |
2830bf19 | 142 | GtkWidget* GetConnectWidget(); |
b4071e91 | 143 | bool IsOwnGtkWindow( GdkWindow *window ); |
f40fdaa3 | 144 | void DoApplyWidgetStyle(GtkRcStyle *style); |
2830bf19 | 145 | void CalculateScrollbar(); |
65045edd | 146 | void OnInternalIdle(); |
c04ec496 VZ |
147 | |
148 | #ifdef __WXGTK20__ | |
149 | void SetUpdateFont(bool WXUNUSED(update)) { } | |
150 | #else // !__WXGTK20__ | |
151 | void SetUpdateFont(bool update) { m_updateFont = update; } | |
01041145 | 152 | void UpdateFontIfNeeded(); |
c04ec496 | 153 | #endif // __WXGTK20__/!__WXGTK20__ |
a1b82138 | 154 | |
7d8268a1 | 155 | void SetModified() { m_modified = true; } |
0efe5ba7 | 156 | |
0cc7251e VZ |
157 | // GTK+ textctrl is so dumb that you need to freeze/thaw it manually to |
158 | // avoid horrible flicker/scrolling back and forth | |
159 | virtual void Freeze(); | |
160 | virtual void Thaw(); | |
7d8268a1 | 161 | |
9cd6d737 VZ |
162 | // textctrl specific scrolling |
163 | virtual bool ScrollLines(int lines); | |
164 | virtual bool ScrollPages(int pages); | |
165 | ||
ce2f50e3 VZ |
166 | // implementation only from now on |
167 | ||
fdca68a6 JS |
168 | // wxGTK-specific: called recursively by Enable, |
169 | // to give widgets an oppprtunity to correct their colours after they | |
170 | // have been changed by Enable | |
171 | virtual void OnParentEnable( bool enable ) ; | |
172 | ||
ce2f50e3 VZ |
173 | // tell the control to ignore next text changed signal |
174 | void IgnoreNextTextUpdate(); | |
175 | ||
176 | // should we ignore the changed signal? always resets the flag | |
177 | bool IgnoreTextUpdate(); | |
178 | ||
9d522606 RD |
179 | static wxVisualAttributes |
180 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
7d8268a1 | 181 | |
f68586e5 VZ |
182 | protected: |
183 | virtual wxSize DoGetBestSize() const; | |
184 | ||
01041145 VZ |
185 | // common part of all ctors |
186 | void Init(); | |
187 | ||
9cd6d737 VZ |
188 | // get the vertical adjustment, if any, NULL otherwise |
189 | GtkAdjustment *GetVAdj() const; | |
190 | ||
191 | // scroll the control by the given number of pixels, return true if the | |
192 | // scroll position changed | |
193 | bool DoScroll(GtkAdjustment *adj, int diff); | |
194 | ||
9d522606 RD |
195 | // Widgets that use the style->base colour for the BG colour should |
196 | // override this and return true. | |
197 | virtual bool UseGTKStyleBase() const { return true; } | |
198 | ||
41b81aed RR |
199 | #ifdef __WXGTK20__ |
200 | // has the control been frozen by Freeze()? | |
201 | bool IsFrozen() const { return m_frozenness > 0; } | |
202 | #endif | |
7d8268a1 | 203 | |
a1b82138 | 204 | private: |
01041145 VZ |
205 | // change the font for everything in this control |
206 | void ChangeFontGlobally(); | |
207 | ||
903f689b | 208 | GtkWidget *m_text; |
2830bf19 | 209 | GtkWidget *m_vScrollbar; |
ce2f50e3 VZ |
210 | |
211 | bool m_modified:1; | |
212 | bool m_vScrollbarVisible:1; | |
c04ec496 | 213 | #ifndef __WXGTK20__ |
ce2f50e3 | 214 | bool m_updateFont:1; |
c04ec496 | 215 | #endif // !__WXGTK20__ |
ce2f50e3 | 216 | bool m_ignoreNextUpdate:1; |
a1b82138 | 217 | |
41b81aed RR |
218 | #ifdef __WXGTK20__ |
219 | // Our text buffer. Convenient, and holds the buffer while using | |
220 | // a dummy one when m_frozenness > 0 | |
221 | GtkTextBuffer *m_buffer; | |
222 | ||
223 | // number of calls to Freeze() minus number of calls to Thaw() | |
224 | unsigned int m_frozenness; | |
9440c3d0 KH |
225 | |
226 | // For wxTE_AUTO_URL | |
227 | void OnUrlMouseEvent(wxMouseEvent&); | |
228 | GdkCursor *m_gdkHandCursor; | |
229 | GdkCursor *m_gdkXTermCursor; | |
7d8268a1 | 230 | #endif |
41b81aed | 231 | |
a1b82138 | 232 | DECLARE_EVENT_TABLE() |
777105f2 | 233 | DECLARE_DYNAMIC_CLASS(wxTextCtrl) |
c801d85f KB |
234 | }; |
235 | ||
236 | #endif // __GTKTEXTCTRLH__ | |
237 |