1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk1/textctrl.h
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKTEXTCTRLH__
12 #define __GTKTEXTCTRLH__
14 //-----------------------------------------------------------------------------
16 //-----------------------------------------------------------------------------
18 class WXDLLIMPEXP_CORE wxTextCtrl
: public wxTextCtrlBase
21 wxTextCtrl() { Init(); }
22 wxTextCtrl(wxWindow
*parent
,
24 const wxString
&value
= wxEmptyString
,
25 const wxPoint
&pos
= wxDefaultPosition
,
26 const wxSize
&size
= wxDefaultSize
,
28 const wxValidator
& validator
= wxDefaultValidator
,
29 const wxString
&name
= wxTextCtrlNameStr
);
31 virtual ~wxTextCtrl();
33 bool Create(wxWindow
*parent
,
35 const wxString
&value
= wxEmptyString
,
36 const wxPoint
&pos
= wxDefaultPosition
,
37 const wxSize
&size
= wxDefaultSize
,
39 const wxValidator
& validator
= wxDefaultValidator
,
40 const wxString
&name
= wxTextCtrlNameStr
);
42 // implement base class pure virtuals
43 // ----------------------------------
45 virtual wxString
GetValue() const;
47 virtual int GetLineLength(long lineNo
) const;
48 virtual wxString
GetLineText(long lineNo
) const;
49 virtual int GetNumberOfLines() const;
51 virtual bool IsModified() const;
52 virtual bool IsEditable() const;
54 // If the return values from and to are the same, there is no selection.
55 virtual void GetSelection(long* from
, long* to
) const;
62 virtual void Replace(long from
, long to
, const wxString
& value
);
63 virtual void Remove(long from
, long to
);
65 // sets/clears the dirty flag
66 virtual void MarkDirty();
67 virtual void DiscardEdits();
69 virtual void SetMaxLength(unsigned long len
);
71 // writing text inserts it at the current position, appending always
72 // inserts it at the end
73 virtual void WriteText(const wxString
& text
);
74 virtual void AppendText(const wxString
& text
);
76 // apply text attribute to the range of text (only works with richedit
78 virtual bool SetStyle(long start
, long end
, const wxTextAttr
& style
);
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
97 virtual bool CanUndo() const;
98 virtual bool CanRedo() const;
101 virtual void SetInsertionPoint(long pos
);
102 virtual void SetInsertionPointEnd();
103 virtual long GetInsertionPoint() const;
104 virtual wxTextPos
GetLastPosition() const;
106 virtual void SetSelection(long from
, long to
);
107 virtual void SetEditable(bool editable
);
109 virtual void DoEnable( bool enable
);
111 // Implementation from now on
112 void OnDropFiles( wxDropFilesEvent
&event
);
113 void OnChar( wxKeyEvent
&event
);
115 void OnCut(wxCommandEvent
& event
);
116 void OnCopy(wxCommandEvent
& event
);
117 void OnPaste(wxCommandEvent
& event
);
118 void OnUndo(wxCommandEvent
& event
);
119 void OnRedo(wxCommandEvent
& event
);
121 void OnUpdateCut(wxUpdateUIEvent
& event
);
122 void OnUpdateCopy(wxUpdateUIEvent
& event
);
123 void OnUpdatePaste(wxUpdateUIEvent
& event
);
124 void OnUpdateUndo(wxUpdateUIEvent
& event
);
125 void OnUpdateRedo(wxUpdateUIEvent
& event
);
127 bool SetFont(const wxFont
& font
);
128 bool SetForegroundColour(const wxColour
& colour
);
129 bool SetBackgroundColour(const wxColour
& colour
);
131 GtkWidget
* GetConnectWidget();
132 bool IsOwnGtkWindow( GdkWindow
*window
);
133 void DoApplyWidgetStyle(GtkRcStyle
*style
);
134 void CalculateScrollbar();
135 void OnInternalIdle();
137 void SetUpdateFont(bool update
) { m_updateFont
= update
; }
138 void UpdateFontIfNeeded();
140 void SetModified() { m_modified
= true; }
142 // GTK+ textctrl is so dumb that you need to freeze/thaw it manually to
143 // avoid horrible flicker/scrolling back and forth
144 virtual void Freeze();
147 // textctrl specific scrolling
148 virtual bool ScrollLines(int lines
);
149 virtual bool ScrollPages(int pages
);
151 // implementation only from now on
153 // wxGTK-specific: called recursively by Enable,
154 // to give widgets an oppprtunity to correct their colours after they
155 // have been changed by Enable
156 virtual void OnEnabled( bool enabled
) ;
158 // tell the control to ignore next text changed signal
159 void IgnoreNextTextUpdate();
161 // should we ignore the changed signal? always resets the flag
162 bool IgnoreTextUpdate();
164 static wxVisualAttributes
165 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
168 virtual wxSize
DoGetBestSize() const;
170 // common part of all ctors
173 // get the vertical adjustment, if any, NULL otherwise
174 GtkAdjustment
*GetVAdj() const;
176 // scroll the control by the given number of pixels, return true if the
177 // scroll position changed
178 bool DoScroll(GtkAdjustment
*adj
, int diff
);
180 // Widgets that use the style->base colour for the BG colour should
181 // override this and return true.
182 virtual bool UseGTKStyleBase() const { return true; }
184 virtual void DoSetValue(const wxString
&value
, int flags
= 0);
187 // change the font for everything in this control
188 void ChangeFontGlobally();
191 GtkWidget
*m_vScrollbar
;
194 bool m_vScrollbarVisible
:1;
196 bool m_ignoreNextUpdate
:1;
198 DECLARE_EVENT_TABLE()
199 DECLARE_DYNAMIC_CLASS(wxTextCtrl
)
202 #endif // __GTKTEXTCTRLH__