]>
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"
20 #include "wx/control.h"
28 #if defined(__WIN95__) && !defined(__TWIN32__) && !defined(__WXWINE__)
29 #define wxUSE_RICHEDIT 1
31 #define wxUSE_RICHEDIT 0
34 WXDLLEXPORT_DATA(extern const wxChar
*) wxTextCtrlNameStr
;
35 WXDLLEXPORT_DATA(extern const wxChar
*) wxEmptyString
;
37 // Single-line text item
38 class WXDLLEXPORT wxTextCtrl
: public wxControl
40 // 16-bit Borland 4.0 doesn't seem to allow multiple inheritance with wxWindow and streambuf:
41 // it complains about deriving a huge class from the huge class streambuf. !!
42 // Also, can't use streambuf if making or using a DLL :-(
44 #if (defined(__BORLANDC__)) || defined(__MWERKS__) || defined(_WINDLL) || defined(WXUSINGDLL) || defined(WXMAKINGDLL)
45 #define NO_TEXT_WINDOW_STREAM
48 #ifndef NO_TEXT_WINDOW_STREAM
53 DECLARE_DYNAMIC_CLASS(wxTextCtrl
)
59 wxTextCtrl(wxWindow
*parent
, wxWindowID id
,
60 const wxString
& value
= wxEmptyString
,
61 const wxPoint
& pos
= wxDefaultPosition
,
62 const wxSize
& size
= wxDefaultSize
, long style
= 0,
63 const wxValidator
& validator
= wxDefaultValidator
,
64 const wxString
& name
= wxTextCtrlNameStr
)
65 #ifndef NO_TEXT_WINDOW_STREAM
69 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
72 bool Create(wxWindow
*parent
, wxWindowID id
,
73 const wxString
& value
= wxEmptyString
,
74 const wxPoint
& pos
= wxDefaultPosition
,
75 const wxSize
& size
= wxDefaultSize
, long style
= wxTE_PROCESS_TAB
,
76 const wxValidator
& validator
= wxDefaultValidator
,
77 const wxString
& name
= wxTextCtrlNameStr
);
81 virtual wxString
GetValue() const ;
82 virtual void SetValue(const wxString
& value
);
84 virtual int GetLineLength(long lineNo
) const;
85 virtual wxString
GetLineText(long lineNo
) const;
86 virtual int GetNumberOfLines() const;
91 // Clipboard operations
96 virtual bool CanCopy() const;
97 virtual bool CanCut() const;
98 virtual bool CanPaste() const;
104 virtual bool CanUndo() const;
105 virtual bool CanRedo() const;
107 virtual void SetInsertionPoint(long pos
);
108 virtual void SetInsertionPointEnd();
109 virtual long GetInsertionPoint() const ;
110 virtual long GetLastPosition() const ;
111 virtual void Replace(long from
, long to
, const wxString
& value
);
112 virtual void Remove(long from
, long to
);
113 virtual void SetSelection(long from
, long to
);
114 virtual void SetEditable(bool editable
);
116 // If the return values from and to are the same, there is no
118 virtual void GetSelection(long* from
, long* to
) const;
119 virtual bool IsEditable() const ;
121 // streambuf implementation
122 #ifndef NO_TEXT_WINDOW_STREAM
128 wxTextCtrl
& operator<<(const wxString
& s
);
129 wxTextCtrl
& operator<<(int i
);
130 wxTextCtrl
& operator<<(long i
);
131 wxTextCtrl
& operator<<(float f
);
132 wxTextCtrl
& operator<<(double d
);
133 wxTextCtrl
& operator<<(const char c
);
135 virtual bool LoadFile(const wxString
& file
);
136 virtual bool SaveFile(const wxString
& file
);
137 virtual void WriteText(const wxString
& text
);
138 virtual void AppendText(const wxString
& text
);
139 virtual void DiscardEdits();
140 virtual bool IsModified() const;
142 #if WXWIN_COMPATIBILITY
143 inline bool Modified() const { return IsModified(); }
146 virtual long XYToPosition(long x
, long y
) const ;
147 virtual void PositionToXY(long pos
, long *x
, long *y
) const ;
148 virtual void ShowPosition(long pos
);
149 virtual void Clear();
153 void OnDropFiles(wxDropFilesEvent
& event
);
154 void OnChar(wxKeyEvent
& event
); // Process 'enter' if required
156 void OnCut(wxCommandEvent
& event
);
157 void OnCopy(wxCommandEvent
& event
);
158 void OnPaste(wxCommandEvent
& event
);
159 void OnUndo(wxCommandEvent
& event
);
160 void OnRedo(wxCommandEvent
& event
);
162 void OnUpdateCut(wxUpdateUIEvent
& event
);
163 void OnUpdateCopy(wxUpdateUIEvent
& event
);
164 void OnUpdatePaste(wxUpdateUIEvent
& event
);
165 void OnUpdateUndo(wxUpdateUIEvent
& event
);
166 void OnUpdateRedo(wxUpdateUIEvent
& event
);
170 virtual void Command(wxCommandEvent
& event
);
171 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
174 bool IsRich() const { return m_isRich
; }
175 void SetRichEdit(bool isRich
) { m_isRich
= isRich
; }
178 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
179 WXUINT message
, WXWPARAM wParam
,
182 virtual void AdoptAttributesFromHWND();
183 virtual void SetupColours();
184 virtual long MSWGetDlgCode();
188 bool m_isRich
; // Are we using rich text edit to implement this?
193 // call this to increase the size limit (will do nothing if the current
194 // limit is big enough)
195 void AdjustSpaceLimit();
197 virtual void DoSetSize(int x
, int y
,
198 int width
, int height
,
199 int sizeFlags
= wxSIZE_AUTO
);
202 DECLARE_EVENT_TABLE()