1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/x11/textctrl.h
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __X11TEXTCTRLH__
12 #define __X11TEXTCTRLH__
14 // Set to 1 to use wxUniv's implementation, 0
16 #define wxUSE_UNIV_TEXTCTRL 1
18 #if wxUSE_UNIV_TEXTCTRL
19 #include "wx/univ/textctrl.h"
22 #include "wx/scrolwin.h"
23 #include "wx/arrstr.h"
24 #include "wx/datetime.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 class WXDLLIMPEXP_FWD_CORE wxTextCtrl
;
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
41 wxSOURCE_UNDO_INSERT_LINE
,
46 class wxSourceUndoStep
: public wxObject
49 wxSourceUndoStep( wxSourceUndo type
, int y1
, int y2
, wxTextCtrl
*owner
);
60 wxArrayString m_lines
;
66 wxSourceLine( const wxString
&text
= wxEmptyString
)
74 WX_DECLARE_OBJARRAY(wxSourceLine
, wxSourceLineArray
);
84 //-----------------------------------------------------------------------------
86 //-----------------------------------------------------------------------------
88 class WXDLLIMPEXP_CORE wxTextCtrl
: public wxTextCtrlBase
, public wxScrollHelper
91 wxTextCtrl() { Init(); }
92 wxTextCtrl(wxWindow
*parent
,
94 const wxString
&value
= wxEmptyString
,
95 const wxPoint
&pos
= wxDefaultPosition
,
96 const wxSize
&size
= wxDefaultSize
,
98 const wxValidator
& validator
= wxDefaultValidator
,
99 const wxString
&name
= wxTextCtrlNameStr
);
100 virtual ~wxTextCtrl();
102 bool Create(wxWindow
*parent
,
104 const wxString
&value
= wxEmptyString
,
105 const wxPoint
&pos
= wxDefaultPosition
,
106 const wxSize
&size
= wxDefaultSize
,
108 const wxValidator
& validator
= wxDefaultValidator
,
109 const wxString
&name
= wxTextCtrlNameStr
);
111 // required for scrolling with wxScrollHelper
112 // ------------------------------------------
114 virtual void PrepareDC(wxDC
& dc
) { DoPrepareDC(dc
); }
116 // implement base class pure virtuals
117 // ----------------------------------
119 virtual void ChangeValue(const wxString
&value
);
121 virtual int GetLineLength(long lineNo
) const;
122 virtual wxString
GetLineText(long lineNo
) const;
123 virtual int GetNumberOfLines() const;
125 virtual bool IsModified() const;
126 virtual bool IsEditable() const;
128 // more readable flag testing methods
129 // ----------------------------------
131 bool IsPassword() const { return (GetWindowStyle() & wxTE_PASSWORD
) != 0; }
132 bool WrapLines() const { return false; }
134 // If the return values from and to are the same, there is no selection.
135 virtual void GetSelection(long* from
, long* to
) const;
141 virtual void Clear();
142 virtual void Replace(long from
, long to
, const wxString
& value
);
143 virtual void Remove(long from
, long to
);
145 // clears the dirty flag
146 virtual void DiscardEdits();
148 virtual void SetMaxLength(unsigned long len
);
150 // writing text inserts it at the current position, appending always
151 // inserts it at the end
152 virtual void WriteText(const wxString
& text
);
153 virtual void AppendText(const wxString
& text
);
155 // apply text attribute to the range of text (only works with richedit
157 virtual bool SetStyle(long start
, long end
, const wxTextAttr
& style
);
159 // translate between the position (which is just an index in the text ctrl
160 // considering all its contents as a single strings) and (x, y) coordinates
161 // which represent column and line.
162 virtual long XYToPosition(long x
, long y
) const;
163 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
165 virtual void ShowPosition(long pos
);
167 // Clipboard operations
170 virtual void Paste();
174 virtual void Redo() {}
176 virtual bool CanUndo() const { return (m_undos
.GetCount() > 0); }
177 virtual bool CanRedo() const { return false; }
180 virtual void SetInsertionPoint(long pos
);
181 virtual void SetInsertionPointEnd();
182 virtual long GetInsertionPoint() const;
183 virtual wxTextPos
GetLastPosition() const;
185 virtual void SetSelection(long from
, long to
);
186 virtual void SetEditable(bool editable
);
188 virtual bool Enable( bool enable
= true );
190 void OnCut(wxCommandEvent
& event
);
191 void OnCopy(wxCommandEvent
& event
);
192 void OnPaste(wxCommandEvent
& event
);
193 void OnUndo(wxCommandEvent
& event
);
194 void OnRedo(wxCommandEvent
& event
);
196 void OnUpdateCut(wxUpdateUIEvent
& event
);
197 void OnUpdateCopy(wxUpdateUIEvent
& event
);
198 void OnUpdatePaste(wxUpdateUIEvent
& event
);
199 void OnUpdateUndo(wxUpdateUIEvent
& event
);
200 void OnUpdateRedo(wxUpdateUIEvent
& event
);
202 bool SetFont(const wxFont
& font
);
203 bool SetForegroundColour(const wxColour
& colour
);
204 bool SetBackgroundColour(const wxColour
& colour
);
206 void SetModified() { m_modified
= true; }
208 // textctrl specific scrolling
209 virtual bool ScrollLines(int lines
);
210 virtual bool ScrollPages(int pages
);
212 // not part of the wxTextCtrl API from now on..
214 void SetLanguage( wxSourceLanguage lang
= wxSOURCE_LANG_NONE
);
223 void ClearSelection();
225 int GetCursorX() { return m_cursorX
; }
226 int GetCursorY() { return m_cursorY
; }
227 bool IsModified() { return m_modified
; }
228 bool OverwriteMode() { return m_overwrite
; }
230 // implementation from now on...
232 int PosToPixel( int line
, int pos
);
233 int PixelToPos( int line
, int pixel
);
235 void SearchForBrackets();
237 void DoChar( char c
);
243 wxString
GetNextToken( wxString
&line
, size_t &pos
);
245 void DrawLinePart( wxDC
&dc
, int x
, int y
, const wxString
&toDraw
, const wxString
&origin
, const wxColour
&colour
);
246 void DrawLine( wxDC
&dc
, int x
, int y
, const wxString
&line
, int lineNum
);
247 void OnPaint( wxPaintEvent
&event
);
248 void OnEraseBackground( wxEraseEvent
&event
);
249 void OnMouse( wxMouseEvent
&event
);
250 void OnChar( wxKeyEvent
&event
);
251 void OnSetFocus( wxFocusEvent
& event
);
252 void OnKillFocus( wxFocusEvent
& event
);
254 void OnInternalIdle();
255 void RefreshLine( int n
);
256 void RefreshDown( int n
);
257 void MoveCursor( int new_x
, int new_y
, bool shift
= false, bool centre
= false );
258 void MyAdjustScrollbars();
261 // common part of all ctors
264 virtual wxSize
DoGetBestSize() const;
266 virtual void DoSetValue(const wxString
& value
, int flags
= 0);
268 friend class wxSourceUndoStep
;
270 wxSourceLineArray m_lines
;
273 wxColour m_sourceColour
;
274 wxColour m_commentColour
;
275 wxColour m_stringColour
;
280 int m_selStartX
,m_selStartY
;
281 int m_selEndX
,m_selEndY
;
293 wxArrayString m_keywords
;
294 wxColour m_keywordColour
;
296 wxArrayString m_defines
;
297 wxColour m_defineColour
;
299 wxArrayString m_variables
;
300 wxColour m_variableColour
;
302 wxSourceLanguage m_lang
;
312 DECLARE_EVENT_TABLE()
313 DECLARE_DYNAMIC_CLASS(wxTextCtrl
);
316 //-----------------------------------------------------------------------------
317 // this is superfluous here but helps to compile
318 //-----------------------------------------------------------------------------
320 // cursor movement and also selection and delete operations
321 #define wxACTION_TEXT_GOTO _T("goto") // to pos in numArg
322 #define wxACTION_TEXT_FIRST _T("first") // go to pos 0
323 #define wxACTION_TEXT_LAST _T("last") // go to last pos
324 #define wxACTION_TEXT_HOME _T("home")
325 #define wxACTION_TEXT_END _T("end")
326 #define wxACTION_TEXT_LEFT _T("left")
327 #define wxACTION_TEXT_RIGHT _T("right")
328 #define wxACTION_TEXT_UP _T("up")
329 #define wxACTION_TEXT_DOWN _T("down")
330 #define wxACTION_TEXT_WORD_LEFT _T("wordleft")
331 #define wxACTION_TEXT_WORD_RIGHT _T("wordright")
332 #define wxACTION_TEXT_PAGE_UP _T("pageup")
333 #define wxACTION_TEXT_PAGE_DOWN _T("pagedown")
335 // clipboard operations
336 #define wxACTION_TEXT_COPY _T("copy")
337 #define wxACTION_TEXT_CUT _T("cut")
338 #define wxACTION_TEXT_PASTE _T("paste")
340 // insert text at the cursor position: the text is in strArg of PerformAction
341 #define wxACTION_TEXT_INSERT _T("insert")
343 // if the action starts with either of these prefixes and the rest of the
344 // string is one of the movement commands, it means to select/delete text from
345 // the current cursor position to the new one
346 #define wxACTION_TEXT_PREFIX_SEL _T("sel")
347 #define wxACTION_TEXT_PREFIX_DEL _T("del")
350 #define wxACTION_TEXT_ANCHOR_SEL _T("anchorsel")
351 #define wxACTION_TEXT_EXTEND_SEL _T("extendsel")
352 #define wxACTION_TEXT_SEL_WORD _T("wordsel")
353 #define wxACTION_TEXT_SEL_LINE _T("linesel")
356 #define wxACTION_TEXT_UNDO _T("undo")
357 #define wxACTION_TEXT_REDO _T("redo")
359 // ----------------------------------------------------------------------------
361 // ----------------------------------------------------------------------------
363 class WXDLLEXPORT wxStdTextCtrlInputHandler
: public wxStdInputHandler
366 wxStdTextCtrlInputHandler(wxInputHandler
*inphand
) : wxStdInputHandler(inphand
) {}
368 virtual bool HandleKey(wxInputConsumer
*consumer
,
369 const wxKeyEvent
& event
,
370 bool pressed
) { return false; }
371 virtual bool HandleMouse(wxInputConsumer
*consumer
, const wxMouseEvent
& event
) { return false; }
372 virtual bool HandleMouseMove(wxInputConsumer
*consumer
, const wxMouseEvent
& event
) { return false; }
373 virtual bool HandleFocus(wxInputConsumer
*consumer
, const wxFocusEvent
& event
) { return false; }
376 // get the position of the mouse click
377 static wxTextPos
HitTest(const wxTextCtrl
*text
, const wxPoint
& pos
) { return 0; }
380 wxTextCtrl
*m_winCapture
;
384 // wxUSE_UNIV_TEXTCTRL
386 #endif // __X11TEXTCTRLH__