]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/textctrl.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTextCtrl class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_TEXTCTRL_H_
13 #define _WX_TEXTCTRL_H_
16 #pragma interface "textctrl.h"
19 class WXDLLEXPORT wxTextCtrl
: public wxTextCtrlBase
26 wxTextCtrl(wxWindow
*parent
, wxWindowID id
,
27 const wxString
& value
= wxEmptyString
,
28 const wxPoint
& pos
= wxDefaultPosition
,
29 const wxSize
& size
= wxDefaultSize
,
31 const wxValidator
& validator
= wxDefaultValidator
,
32 const wxString
& name
= wxTextCtrlNameStr
)
34 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
37 bool Create(wxWindow
*parent
, wxWindowID id
,
38 const wxString
& value
= wxEmptyString
,
39 const wxPoint
& pos
= wxDefaultPosition
,
40 const wxSize
& size
= wxDefaultSize
,
42 const wxValidator
& validator
= wxDefaultValidator
,
43 const wxString
& name
= wxTextCtrlNameStr
);
45 // implement base class pure virtuals
46 // ----------------------------------
48 virtual wxString
GetValue() const;
49 virtual void SetValue(const wxString
& value
);
51 virtual int GetLineLength(long lineNo
) const;
52 virtual wxString
GetLineText(long lineNo
) const;
53 virtual int GetNumberOfLines() const;
55 virtual bool IsModified() const;
56 virtual bool IsEditable() const;
58 // If the return values from and to are the same, there is no selection.
59 virtual void GetSelection(long* from
, long* to
) const;
66 virtual void Replace(long from
, long to
, const wxString
& value
);
67 virtual void Remove(long from
, long to
);
69 // load the controls contents from the file
70 virtual bool LoadFile(const wxString
& file
);
72 // clears the dirty flag
73 virtual void DiscardEdits();
75 // writing text inserts it at the current position, appending always
76 // inserts it at the end
77 virtual void WriteText(const wxString
& text
);
78 virtual void AppendText(const wxString
& text
);
80 // translate between the position (which is just an index in the text ctrl
81 // considering all its contents as a single strings) and (x, y) coordinates
82 // which represent column and line.
83 virtual long XYToPosition(long x
, long y
) const;
84 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
86 virtual void ShowPosition(long pos
);
88 // Clipboard operations
93 virtual bool CanCopy() const;
94 virtual bool CanCut() const;
95 virtual bool CanPaste() const;
101 virtual bool CanUndo() const;
102 virtual bool CanRedo() const;
105 virtual void SetInsertionPoint(long pos
);
106 virtual void SetInsertionPointEnd();
107 virtual long GetInsertionPoint() const;
108 virtual long GetLastPosition() const;
110 virtual void SetSelection(long from
, long to
);
111 virtual void SetEditable(bool editable
);
113 // Implementation from now on
114 // --------------------------
116 virtual void Command(wxCommandEvent
& event
);
117 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
118 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
119 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
121 // In WIN16, need to override normal erasing because
122 // Ctl3D doesn't use the wxWindows background colour.
124 void OnEraseBackground(wxEraseEvent
& event
);
128 bool IsRich() const { return m_isRich
; }
129 void SetRichEdit(bool isRich
) { m_isRich
= isRich
; }
131 // rich edit controls are not compatible with normal ones and wem ust set
132 // the colours for them otherwise
133 virtual bool SetBackgroundColour(const wxColour
& colour
);
134 virtual bool SetForegroundColour(const wxColour
& colour
);
135 #endif // wxUSE_RICHEDIT
137 virtual void AdoptAttributesFromHWND();
138 virtual void SetupColours();
140 virtual bool AcceptsFocus() const;
143 void OnDropFiles(wxDropFilesEvent
& event
);
144 void OnChar(wxKeyEvent
& event
); // Process 'enter' if required
146 void OnCut(wxCommandEvent
& event
);
147 void OnCopy(wxCommandEvent
& event
);
148 void OnPaste(wxCommandEvent
& event
);
149 void OnUndo(wxCommandEvent
& event
);
150 void OnRedo(wxCommandEvent
& event
);
152 void OnUpdateCut(wxUpdateUIEvent
& event
);
153 void OnUpdateCopy(wxUpdateUIEvent
& event
);
154 void OnUpdatePaste(wxUpdateUIEvent
& event
);
155 void OnUpdateUndo(wxUpdateUIEvent
& event
);
156 void OnUpdateRedo(wxUpdateUIEvent
& event
);
160 bool m_isRich
; // Are we using rich text edit to implement this?
163 // call this to increase the size limit (will do nothing if the current
164 // limit is big enough)
165 void AdjustSpaceLimit();
167 virtual wxSize
DoGetBestSize() const;
170 DECLARE_EVENT_TABLE()
171 DECLARE_DYNAMIC_CLASS(wxTextCtrl
)