1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/textentry.h
3 // Purpose: wxGTK-specific wxTextEntry implementation
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_GTK_TEXTENTRY_H_
12 #define _WX_GTK_TEXTENTRY_H_
14 typedef struct _GtkEditable GtkEditable
;
16 // ----------------------------------------------------------------------------
17 // wxTextEntry: roughly corresponds to GtkEditable
18 // ----------------------------------------------------------------------------
20 class WXDLLIMPEXP_CORE wxTextEntry
: public wxTextEntryBase
25 // implement wxTextEntryBase pure virtual methods
26 virtual void WriteText(const wxString
& text
);
27 virtual wxString
GetValue() const;
28 virtual void Remove(long from
, long to
);
36 virtual bool CanUndo() const;
37 virtual bool CanRedo() const;
39 virtual void SetInsertionPoint(long pos
);
40 virtual long GetInsertionPoint() const;
41 virtual long GetLastPosition() const;
43 virtual void SetSelection(long from
, long to
);
44 virtual void GetSelection(long *from
, long *to
) const;
46 virtual bool AutoComplete(const wxArrayString
& choices
);
48 virtual bool IsEditable() const;
49 virtual void SetEditable(bool editable
);
51 virtual void SetMaxLength(unsigned long len
);
53 // implementation only from now on
54 void SendMaxLenEvent();
57 // implement this to return the associated window, it will be used for
59 virtual const wxWindow
*GetEditableWindow() const = 0;
61 // implement this to return the associated GtkEntry or another widget
62 // implementing GtkEditable
63 virtual GtkEditable
*GetEditable() const = 0;
66 #endif // _WX_GTK_TEXTENTRY_H_