1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/textctrl.h
3 // Purpose: wxTextCtrl class
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_TEXTCTRL_H_
12 #define _WX_TEXTCTRL_H_
14 class WXDLLIMPEXP_CORE wxTextCtrl
: public wxTextCtrlBase
20 wxTextCtrl() { Init(); }
21 wxTextCtrl(wxWindow
*parent
, wxWindowID id
,
22 const wxString
& value
= wxEmptyString
,
23 const wxPoint
& pos
= wxDefaultPosition
,
24 const wxSize
& size
= wxDefaultSize
,
26 const wxValidator
& validator
= wxDefaultValidator
,
27 const wxString
& name
= wxTextCtrlNameStr
)
31 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
33 virtual ~wxTextCtrl();
35 bool Create(wxWindow
*parent
, wxWindowID id
,
36 const wxString
& value
= wxEmptyString
,
37 const wxPoint
& pos
= wxDefaultPosition
,
38 const wxSize
& size
= wxDefaultSize
,
40 const wxValidator
& validator
= wxDefaultValidator
,
41 const wxString
& name
= wxTextCtrlNameStr
);
43 // overridden wxTextEntry methods
44 // ------------------------------
46 virtual wxString
GetValue() const;
47 virtual wxString
GetRange(long from
, long to
) const;
49 virtual bool IsEmpty() const;
51 virtual void WriteText(const wxString
& text
);
52 virtual void AppendText(const wxString
& text
);
55 virtual int GetLineLength(long lineNo
) const;
56 virtual wxString
GetLineText(long lineNo
) const;
57 virtual int GetNumberOfLines() const;
59 virtual void SetMaxLength(unsigned long len
);
61 virtual void GetSelection(long *from
, long *to
) const;
64 virtual bool CanRedo() const;
66 virtual void SetInsertionPointEnd();
67 virtual long GetInsertionPoint() const;
68 virtual wxTextPos
GetLastPosition() const;
70 // implement base class pure virtuals
71 // ----------------------------------
73 virtual bool IsModified() const;
74 virtual void MarkDirty();
75 virtual void DiscardEdits();
78 virtual bool EmulateKeyPress(const wxKeyEvent
& event
);
82 // apply text attribute to the range of text (only works with richedit
84 virtual bool SetStyle(long start
, long end
, const wxTextAttr
& style
);
85 virtual bool SetDefaultStyle(const wxTextAttr
& style
);
86 virtual bool GetStyle(long position
, wxTextAttr
& style
);
87 #endif // wxUSE_RICHEDIT
89 // translate between the position (which is just an index in the text ctrl
90 // considering all its contents as a single strings) and (x, y) coordinates
91 // which represent column and line.
92 virtual long XYToPosition(long x
, long y
) const;
93 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
95 virtual void ShowPosition(long pos
);
96 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const;
97 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
,
99 wxTextCoord
*row
) const
101 return wxTextCtrlBase::HitTest(pt
, col
, row
);
104 // Caret handling (Windows only)
105 bool ShowNativeCaret(bool show
= true);
106 bool HideNativeCaret() { return ShowNativeCaret(false); }
108 // Implementation from now on
109 // --------------------------
111 #if wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT
112 virtual void SetDropTarget(wxDropTarget
*dropTarget
);
113 #endif // wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT
115 virtual void SetWindowStyleFlag(long style
);
117 virtual void Command(wxCommandEvent
& event
);
118 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
119 virtual WXHBRUSH
MSWControlColor(WXHDC hDC
, WXHWND hWnd
);
122 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
124 int GetRichVersion() const { return m_verRichEdit
; }
125 bool IsRich() const { return m_verRichEdit
!= 0; }
127 // rich edit controls are not compatible with normal ones and we must set
128 // the colours and font for them otherwise
129 virtual bool SetBackgroundColour(const wxColour
& colour
);
130 virtual bool SetForegroundColour(const wxColour
& colour
);
131 virtual bool SetFont(const wxFont
& font
);
133 bool IsRich() const { return false; }
134 #endif // wxUSE_RICHEDIT
136 #if wxUSE_INKEDIT && wxUSE_RICHEDIT
137 bool IsInkEdit() const { return m_isInkEdit
!= 0; }
139 bool IsInkEdit() const { return false; }
142 virtual void AdoptAttributesFromHWND();
144 virtual bool AcceptsFocusFromKeyboard() const;
146 // returns true if the platform should explicitly apply a theme border
147 virtual bool CanApplyThemeBorder() const;
150 void OnDropFiles(wxDropFilesEvent
& event
);
151 void OnChar(wxKeyEvent
& event
); // Process 'enter' if required
153 void OnCut(wxCommandEvent
& event
);
154 void OnCopy(wxCommandEvent
& event
);
155 void OnPaste(wxCommandEvent
& event
);
156 void OnUndo(wxCommandEvent
& event
);
157 void OnRedo(wxCommandEvent
& event
);
158 void OnDelete(wxCommandEvent
& event
);
159 void OnSelectAll(wxCommandEvent
& event
);
161 void OnUpdateCut(wxUpdateUIEvent
& event
);
162 void OnUpdateCopy(wxUpdateUIEvent
& event
);
163 void OnUpdatePaste(wxUpdateUIEvent
& event
);
164 void OnUpdateUndo(wxUpdateUIEvent
& event
);
165 void OnUpdateRedo(wxUpdateUIEvent
& event
);
166 void OnUpdateDelete(wxUpdateUIEvent
& event
);
167 void OnUpdateSelectAll(wxUpdateUIEvent
& event
);
169 // Show a context menu for Rich Edit controls (the standard
170 // EDIT control has one already)
171 void OnContextMenu(wxContextMenuEvent
& event
);
173 // be sure the caret remains invisible if the user
174 // called HideNativeCaret() before
175 void OnSetFocus(wxFocusEvent
& event
);
177 // intercept WM_GETDLGCODE
178 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
180 virtual bool MSWShouldPreProcessMessage(WXMSG
* pMsg
);
181 virtual WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
184 // common part of all ctors
187 virtual bool DoLoadFile(const wxString
& file
, int fileType
);
189 // creates the control of appropriate class (plain or rich edit) with the
190 // styles corresponding to m_windowStyle
192 // this is used by ctor/Create() and when we need to recreate the control
194 bool MSWCreateText(const wxString
& value
,
198 virtual void DoSetValue(const wxString
&value
, int flags
= 0);
200 virtual wxPoint
DoPositionToCoords(long pos
) const;
202 // return true if this control has a user-set limit on amount of text (i.e.
203 // the limit is due to a previous call to SetMaxLength() and not built in)
204 bool HasSpaceLimit(unsigned int *len
) const;
206 // call this to increase the size limit (will do nothing if the current
207 // limit is big enough)
209 // returns true if we increased the limit to allow entering more text,
210 // false if we hit the limit set by SetMaxLength() and so didn't change it
211 bool AdjustSpaceLimit();
213 #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)
214 // replace the selection or the entire control contents with the given text
215 // in the specified encoding
216 bool StreamIn(const wxString
& value
, wxFontEncoding encoding
, bool selOnly
);
218 // get the contents of the control out as text in the given encoding
219 wxString
StreamOut(wxFontEncoding encoding
, bool selOnly
= false) const;
220 #endif // wxUSE_RICHEDIT
222 // replace the contents of the selection or of the entire control with the
224 void DoWriteText(const wxString
& text
,
225 int flags
= SetValue_SendEvent
| SetValue_SelectionOnly
);
227 // set the selection (possibly without scrolling the caret into view)
228 void DoSetSelection(long from
, long to
, int flags
);
230 // get the length of the line containing the character at the given
232 long GetLengthOfLineContainingPos(long pos
) const;
234 // send TEXT_UPDATED event, return true if it was handled, false otherwise
235 bool SendUpdateEvent();
237 virtual wxSize
DoGetBestSize() const;
238 virtual wxSize
DoGetSizeFromTextSize(int xlen
, int ylen
= -1) const;
241 // Apply the character-related parts of wxTextAttr to the given selection
242 // or the entire control if start == end == -1.
244 // This function is private and should only be called for rich edit
245 // controls and with (from, to) already in correct order, i.e. from <= to.
246 bool MSWSetCharFormat(const wxTextAttr
& attr
, long from
= -1, long to
= -1);
248 // Same as above for paragraph-related parts of wxTextAttr. Note that this
249 // can only be applied to the selection as RichEdit doesn't support setting
250 // the paragraph styles globally.
251 bool MSWSetParaFormat(const wxTextAttr
& attr
, long from
, long to
);
254 // we're using RICHEDIT (and not simple EDIT) control if this field is not
255 // 0, it also gives the version of the RICHEDIT control being used
256 // (although not directly: 1 is for 1.0, 2 is for either 2.0 or 3.0 as we
257 // can't nor really need to distinguish between them and 4 is for 4.1)
259 #endif // wxUSE_RICHEDIT
261 // number of EN_UPDATE events sent by Windows when we change the controls
262 // text ourselves: we want this to be exactly 1
266 virtual void EnableTextChangedEvents(bool enable
)
268 m_updatesCount
= enable
? -1 : -2;
271 // implement wxTextEntry pure virtual: it implements all the operations for
272 // the simple EDIT controls
273 virtual WXHWND
GetEditHWND() const { return m_hWnd
; }
275 void OnKeyDown(wxKeyEvent
& event
);
277 DECLARE_EVENT_TABLE()
278 DECLARE_DYNAMIC_CLASS_NO_COPY(wxTextCtrl
)
280 wxMenu
* m_privateContextMenu
;
282 bool m_isNativeCaretShown
;
284 #if wxUSE_INKEDIT && wxUSE_RICHEDIT
290 #endif // _WX_TEXTCTRL_H_