]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/textctrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/carbon/textctrl.h
3 // Purpose: wxTextCtrl class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_TEXTCTRL_H_
13 #define _WX_TEXTCTRL_H_
15 #if wxUSE_SYSTEM_OPTIONS
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'.
20 #define wxMAC_TEXTCONTROL_USE_MLTE wxT("mac.textcontrol-use-mlte")
23 #include "wx/control.h"
24 #include "wx/textctrl.h"
26 class wxMacTextControl
;
29 class WXDLLEXPORT wxTextCtrl
: public wxTextCtrlBase
31 DECLARE_DYNAMIC_CLASS(wxTextCtrl
)
37 wxTextCtrl(wxWindow
*parent
,
39 const wxString
& value
= wxEmptyString
,
40 const wxPoint
& pos
= wxDefaultPosition
,
41 const wxSize
& size
= wxDefaultSize
,
43 const wxValidator
& validator
= wxDefaultValidator
,
44 const wxString
& name
= wxTextCtrlNameStr
)
47 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
50 virtual ~wxTextCtrl();
52 bool Create(wxWindow
*parent
,
54 const wxString
& value
= wxEmptyString
,
55 const wxPoint
& pos
= wxDefaultPosition
,
56 const wxSize
& size
= wxDefaultSize
,
58 const wxValidator
& validator
= wxDefaultValidator
,
59 const wxString
& name
= wxTextCtrlNameStr
);
63 virtual wxString
GetValue() const;
64 virtual void SetValue(const wxString
& value
);
66 virtual int GetLineLength(long lineNo
) const;
67 virtual wxString
GetLineText(long lineNo
) const;
68 virtual int GetNumberOfLines() const;
70 virtual bool IsModified() const;
71 virtual bool IsEditable() const;
73 // If the return values from and to are the same, there is no selection.
74 virtual void GetSelection(long* from
, long* to
) const;
81 virtual void Replace(long from
, long to
, const wxString
& value
);
82 virtual void Remove(long from
, long to
);
84 // sets/clears the dirty flag
85 virtual void MarkDirty();
86 virtual void DiscardEdits();
88 // set the max number of characters which may be entered
89 // in a single line text control
90 virtual void SetMaxLength(unsigned long len
);
92 // text control under some platforms supports the text styles: these
93 // methods apply the given text style to the given selection or to
94 // set/get the style which will be used for all appended text
95 virtual bool SetFont( const wxFont
&font
);
96 virtual bool SetStyle(long start
, long end
, const wxTextAttr
& style
);
97 virtual bool SetDefaultStyle(const wxTextAttr
& style
);
99 // writing text inserts it at the current position;
100 // appending always inserts it at the end
101 virtual void WriteText(const wxString
& text
);
102 virtual void AppendText(const wxString
& text
);
104 // translate between the position (which is just an index into the textctrl
105 // considering all its contents as a single strings) and (x, y) coordinates
106 // which represent column and line.
107 virtual long XYToPosition(long x
, long y
) const;
108 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
110 virtual void ShowPosition(long pos
);
112 // Clipboard operations
115 virtual void Paste();
117 virtual bool CanCopy() const;
118 virtual bool CanCut() const;
119 virtual bool CanPaste() const;
125 virtual bool CanUndo() const;
126 virtual bool CanRedo() const;
129 virtual void SetInsertionPoint(long pos
);
130 virtual void SetInsertionPointEnd();
131 virtual long GetInsertionPoint() const;
132 virtual wxTextPos
GetLastPosition() const;
134 virtual void SetSelection(long from
, long to
);
135 virtual void SetEditable(bool editable
);
139 virtual void Command(wxCommandEvent
& event
);
141 virtual bool AcceptsFocus() const;
144 void OnDropFiles(wxDropFilesEvent
& event
);
145 void OnChar(wxKeyEvent
& event
); // Process 'enter' if required
147 void OnCut(wxCommandEvent
& event
);
148 void OnCopy(wxCommandEvent
& event
);
149 void OnPaste(wxCommandEvent
& event
);
150 void OnUndo(wxCommandEvent
& event
);
151 void OnRedo(wxCommandEvent
& event
);
152 void OnDelete(wxCommandEvent
& event
);
153 void OnSelectAll(wxCommandEvent
& event
);
155 void OnUpdateCut(wxUpdateUIEvent
& event
);
156 void OnUpdateCopy(wxUpdateUIEvent
& event
);
157 void OnUpdatePaste(wxUpdateUIEvent
& event
);
158 void OnUpdateUndo(wxUpdateUIEvent
& event
);
159 void OnUpdateRedo(wxUpdateUIEvent
& event
);
160 void OnUpdateDelete(wxUpdateUIEvent
& event
);
161 void OnUpdateSelectAll(wxUpdateUIEvent
& event
);
163 void OnEraseBackground(wxEraseEvent
& event
);
164 void OnContextMenu(wxContextMenuEvent
& event
);
166 virtual bool MacCanFocus() const
169 virtual bool MacSetupCursor( const wxPoint
& pt
);
171 virtual void MacVisibilityChanged();
172 virtual void MacEnabledStateChanged();
173 virtual void MacSuperChangedPosition();
175 #ifndef __WXMAC_OSX__
176 virtual void MacControlUserPaneDrawProc(wxInt16 part
);
177 virtual wxInt16
MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
);
178 virtual wxInt16
MacControlUserPaneTrackingProc(wxInt16 x
, wxInt16 y
, void* actionProc
);
179 virtual void MacControlUserPaneIdleProc();
180 virtual wxInt16
MacControlUserPaneKeyDownProc(wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
);
181 virtual void MacControlUserPaneActivateProc(bool activating
);
182 virtual wxInt16
MacControlUserPaneFocusProc(wxInt16 action
);
183 virtual void MacControlUserPaneBackgroundProc(void* info
);
186 wxMacTextControl
* GetPeer() const
187 { return (wxMacTextControl
*) m_peer
; }
190 // common part of all ctors
193 virtual wxSize
DoGetBestSize() const;
197 // flag is set to true when the user edits the controls contents
200 // need to make this public because of the current implementation via callbacks
201 unsigned long m_maxLength
;
203 bool GetTriggerOnSetValue() const
205 return m_triggerOnSetValue
;
208 void SetTriggerOnSetValue(bool trigger
)
210 m_triggerOnSetValue
= trigger
;
213 bool m_triggerOnSetValue
;
216 wxMenu
*m_privateContextMenu
;
218 DECLARE_EVENT_TABLE()
221 #endif // _WX_TEXTCTRL_H_