]>
Commit | Line | Data |
---|---|---|
8cf73271 | 1 | ///////////////////////////////////////////////////////////////////////////// |
717a7072 | 2 | // Name: wx/mac/carbon/textctrl.h |
8cf73271 SC |
3 | // Purpose: wxTextCtrl class |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
65571936 | 9 | // Licence: wxWindows licence |
8cf73271 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_TEXTCTRL_H_ | |
13 | #define _WX_TEXTCTRL_H_ | |
14 | ||
823c4e96 | 15 | #if wxUSE_SYSTEM_OPTIONS |
717a7072 DS |
16 | // set this to 'true' if you want to use the 'classic' MLTE-based implementation |
17 | // instead of the HIView-based implementation in 10.3 and upwards, the former | |
18 | // has more features (backgrounds etc.), but may show redraw artefacts and other | |
19 | // problems depending on your usage; hence, the default is 'false'. | |
a02d6c7b | 20 | #define wxMAC_TEXTCONTROL_USE_MLTE wxT("mac.textcontrol-use-mlte") |
823c4e96 SC |
21 | #endif |
22 | ||
8cf73271 | 23 | #include "wx/control.h" |
717a7072 | 24 | #include "wx/textctrl.h" |
8cf73271 | 25 | |
717a7072 | 26 | class wxMacTextControl; |
8cf73271 | 27 | |
5ca0d812 | 28 | |
8cf73271 SC |
29 | class WXDLLEXPORT wxTextCtrl: public wxTextCtrlBase |
30 | { | |
31 | DECLARE_DYNAMIC_CLASS(wxTextCtrl) | |
7d8268a1 | 32 | |
8cf73271 | 33 | public: |
717a7072 DS |
34 | wxTextCtrl() |
35 | { Init(); } | |
36 | ||
37 | wxTextCtrl(wxWindow *parent, | |
38 | wxWindowID id, | |
39 | const wxString& value = wxEmptyString, | |
40 | const wxPoint& pos = wxDefaultPosition, | |
41 | const wxSize& size = wxDefaultSize, | |
42 | long style = 0, | |
43 | const wxValidator& validator = wxDefaultValidator, | |
44 | const wxString& name = wxTextCtrlNameStr) | |
a02d6c7b DS |
45 | { |
46 | Init(); | |
47 | Create(parent, id, value, pos, size, style, validator, name); | |
48 | } | |
8cf73271 | 49 | |
a02d6c7b | 50 | ~wxTextCtrl(); |
7d8268a1 | 51 | |
717a7072 DS |
52 | bool Create(wxWindow *parent, |
53 | wxWindowID id, | |
54 | const wxString& value = wxEmptyString, | |
55 | const wxPoint& pos = wxDefaultPosition, | |
56 | const wxSize& size = wxDefaultSize, | |
57 | long style = 0, | |
58 | const wxValidator& validator = wxDefaultValidator, | |
59 | const wxString& name = wxTextCtrlNameStr); | |
7d8268a1 | 60 | |
a02d6c7b DS |
61 | // accessors |
62 | // --------- | |
717a7072 | 63 | virtual wxString GetValue() const; |
a02d6c7b | 64 | virtual void SetValue(const wxString& value); |
8cf73271 | 65 | |
a02d6c7b DS |
66 | virtual int GetLineLength(long lineNo) const; |
67 | virtual wxString GetLineText(long lineNo) const; | |
68 | virtual int GetNumberOfLines() const; | |
8cf73271 | 69 | |
a02d6c7b DS |
70 | virtual bool IsModified() const; |
71 | virtual bool IsEditable() const; | |
8cf73271 | 72 | |
a02d6c7b DS |
73 | // If the return values from and to are the same, there is no selection. |
74 | virtual void GetSelection(long* from, long* to) const; | |
8cf73271 | 75 | |
a02d6c7b DS |
76 | // operations |
77 | // ---------- | |
8cf73271 | 78 | |
a02d6c7b | 79 | // editing |
a02d6c7b DS |
80 | virtual void Clear(); |
81 | virtual void Replace(long from, long to, const wxString& value); | |
82 | virtual void Remove(long from, long to); | |
8cf73271 | 83 | |
a02d6c7b DS |
84 | // load the controls contents from the file |
85 | virtual bool LoadFile(const wxString& file); | |
8cf73271 | 86 | |
a02d6c7b DS |
87 | // sets/clears the dirty flag |
88 | virtual void MarkDirty(); | |
89 | virtual void DiscardEdits(); | |
8cf73271 | 90 | |
a02d6c7b DS |
91 | // set the max number of characters which may be entered |
92 | // in a single line text control | |
717a7072 | 93 | virtual void SetMaxLength(unsigned long len); |
8cf73271 | 94 | |
a02d6c7b | 95 | // text control under some platforms supports the text styles: these |
717a7072 | 96 | // methods apply the given text style to the given selection or to |
a02d6c7b | 97 | // set/get the style which will be used for all appended text |
717a7072 | 98 | virtual bool SetFont( const wxFont &font ); |
a02d6c7b DS |
99 | virtual bool SetStyle(long start, long end, const wxTextAttr& style); |
100 | virtual bool SetDefaultStyle(const wxTextAttr& style); | |
8cf73271 | 101 | |
a02d6c7b DS |
102 | // writing text inserts it at the current position; |
103 | // appending always inserts it at the end | |
104 | virtual void WriteText(const wxString& text); | |
105 | virtual void AppendText(const wxString& text); | |
8cf73271 | 106 | |
717a7072 | 107 | // translate between the position (which is just an index into the textctrl |
a02d6c7b DS |
108 | // considering all its contents as a single strings) and (x, y) coordinates |
109 | // which represent column and line. | |
110 | virtual long XYToPosition(long x, long y) const; | |
111 | virtual bool PositionToXY(long pos, long *x, long *y) const; | |
8cf73271 | 112 | |
a02d6c7b | 113 | virtual void ShowPosition(long pos); |
8cf73271 | 114 | |
a02d6c7b DS |
115 | // Clipboard operations |
116 | virtual void Copy(); | |
117 | virtual void Cut(); | |
118 | virtual void Paste(); | |
7d8268a1 | 119 | |
a02d6c7b DS |
120 | virtual bool CanCopy() const; |
121 | virtual bool CanCut() const; | |
122 | virtual bool CanPaste() const; | |
8cf73271 | 123 | |
a02d6c7b DS |
124 | // Undo/redo |
125 | virtual void Undo(); | |
126 | virtual void Redo(); | |
8cf73271 | 127 | |
a02d6c7b DS |
128 | virtual bool CanUndo() const; |
129 | virtual bool CanRedo() const; | |
8cf73271 | 130 | |
a02d6c7b DS |
131 | // Insertion point |
132 | virtual void SetInsertionPoint(long pos); | |
133 | virtual void SetInsertionPointEnd(); | |
134 | virtual long GetInsertionPoint() const; | |
135 | virtual wxTextPos GetLastPosition() const; | |
8cf73271 | 136 | |
a02d6c7b DS |
137 | virtual void SetSelection(long from, long to); |
138 | virtual void SetEditable(bool editable); | |
8cf73271 SC |
139 | |
140 | // Implementation | |
141 | // -------------- | |
142 | virtual void Command(wxCommandEvent& event); | |
143 | ||
144 | virtual bool AcceptsFocus() const; | |
145 | ||
146 | // callbacks | |
147 | void OnDropFiles(wxDropFilesEvent& event); | |
148 | void OnChar(wxKeyEvent& event); // Process 'enter' if required | |
149 | ||
150 | void OnCut(wxCommandEvent& event); | |
151 | void OnCopy(wxCommandEvent& event); | |
152 | void OnPaste(wxCommandEvent& event); | |
153 | void OnUndo(wxCommandEvent& event); | |
154 | void OnRedo(wxCommandEvent& event); | |
03e4ffc3 SC |
155 | void OnDelete(wxCommandEvent& event); |
156 | void OnSelectAll(wxCommandEvent& event); | |
717a7072 | 157 | |
8cf73271 SC |
158 | void OnUpdateCut(wxUpdateUIEvent& event); |
159 | void OnUpdateCopy(wxUpdateUIEvent& event); | |
160 | void OnUpdatePaste(wxUpdateUIEvent& event); | |
161 | void OnUpdateUndo(wxUpdateUIEvent& event); | |
162 | void OnUpdateRedo(wxUpdateUIEvent& event); | |
03e4ffc3 SC |
163 | void OnUpdateDelete(wxUpdateUIEvent& event); |
164 | void OnUpdateSelectAll(wxUpdateUIEvent& event); | |
7d8268a1 | 165 | |
717a7072 | 166 | void OnEraseBackground(wxEraseEvent& event); |
03e4ffc3 | 167 | void OnContextMenu(wxContextMenuEvent& event); |
8cf73271 | 168 | |
717a7072 DS |
169 | virtual bool MacCanFocus() const |
170 | { return true; } | |
a02d6c7b | 171 | |
717a7072 | 172 | virtual bool MacSetupCursor( const wxPoint& pt ); |
8cf73271 | 173 | |
717a7072 DS |
174 | virtual void MacVisibilityChanged(); |
175 | virtual void MacEnabledStateChanged(); | |
176 | virtual void MacSuperChangedPosition(); | |
a02d6c7b | 177 | |
20b69855 | 178 | #ifndef __WXMAC_OSX__ |
717a7072 DS |
179 | virtual void MacControlUserPaneDrawProc(wxInt16 part); |
180 | virtual wxInt16 MacControlUserPaneHitTestProc(wxInt16 x, wxInt16 y); | |
181 | virtual wxInt16 MacControlUserPaneTrackingProc(wxInt16 x, wxInt16 y, void* actionProc); | |
182 | virtual void MacControlUserPaneIdleProc(); | |
183 | virtual wxInt16 MacControlUserPaneKeyDownProc(wxInt16 keyCode, wxInt16 charCode, wxInt16 modifiers); | |
184 | virtual void MacControlUserPaneActivateProc(bool activating); | |
185 | virtual wxInt16 MacControlUserPaneFocusProc(wxInt16 action); | |
186 | virtual void MacControlUserPaneBackgroundProc(void* info); | |
20b69855 | 187 | #endif |
8cf73271 | 188 | |
717a7072 DS |
189 | wxMacTextControl * GetPeer() const |
190 | { return (wxMacTextControl*) m_peer; } | |
51478cd6 | 191 | |
8cf73271 SC |
192 | protected: |
193 | // common part of all ctors | |
194 | void Init(); | |
195 | ||
a02d6c7b | 196 | virtual wxSize DoGetBestSize() const; |
8cf73271 | 197 | |
717a7072 | 198 | bool m_editable; |
8cf73271 | 199 | |
a02d6c7b DS |
200 | // flag is set to true when the user edits the controls contents |
201 | bool m_dirty; | |
8cf73271 | 202 | |
4f305456 | 203 | // need to make this public because of the current implementation via callbacks |
717a7072 | 204 | unsigned long m_maxLength; |
51478cd6 SC |
205 | |
206 | bool GetTriggerOnSetValue() const | |
207 | { | |
208 | return m_triggerOnSetValue; | |
209 | } | |
210 | ||
211 | void SetTriggerOnSetValue(bool trigger) | |
212 | { | |
213 | m_triggerOnSetValue = trigger; | |
214 | } | |
215 | ||
216 | bool m_triggerOnSetValue ; | |
a02d6c7b | 217 | |
4f305456 | 218 | private : |
03e4ffc3 SC |
219 | wxMenu *m_privateContextMenu; |
220 | ||
8cf73271 SC |
221 | DECLARE_EVENT_TABLE() |
222 | }; | |
223 | ||
717a7072 | 224 | #endif // _WX_TEXTCTRL_H_ |