+//
+// interface to be implemented by a textcontrol
+//
+
+class WXDLLIMPEXP_FWD_CORE wxTextAttr;
+class WXDLLIMPEXP_FWD_CORE wxTextEntry;
+
+// common interface for all implementations
+class WXDLLIMPEXP_CORE wxTextWidgetImpl
+
+{
+public :
+ // Any widgets implementing this interface must be associated with a
+ // wxTextEntry so instead of requiring the derived classes to implement
+ // another (pure) virtual function, just take the pointer to this entry in
+ // our ctor and implement GetTextEntry() ourselves.
+ wxTextWidgetImpl(wxTextEntry *entry) : m_entry(entry) {}
+
+ virtual ~wxTextWidgetImpl() {}
+
+ wxTextEntry *GetTextEntry() const { return m_entry; }
+
+ virtual bool CanFocus() const { return true; }
+
+ virtual wxString GetStringValue() const = 0 ;
+ virtual void SetStringValue( const wxString &val ) = 0 ;
+ virtual void SetSelection( long from, long to ) = 0 ;
+ virtual void GetSelection( long* from, long* to ) const = 0 ;
+ virtual void WriteText( const wxString& str ) = 0 ;
+
+ virtual bool CanClipMaxLength() const { return false; }
+ virtual void SetMaxLength(unsigned long WXUNUSED(len)) {}
+
+ virtual bool GetStyle( long position, wxTextAttr& style);
+ virtual void SetStyle( long start, long end, const wxTextAttr& style ) ;
+ virtual void Copy() ;
+ virtual void Cut() ;
+ virtual void Paste() ;
+ virtual bool CanPaste() const ;
+ virtual void SetEditable( bool editable ) ;
+ virtual long GetLastPosition() const ;
+ virtual void Replace( long from, long to, const wxString &str ) ;
+ virtual void Remove( long from, long to ) ;
+
+
+ virtual bool HasOwnContextMenu() const
+ { return false ; }
+
+ virtual bool SetupCursor( const wxPoint& WXUNUSED(pt) )
+ { return false ; }
+
+ virtual void Clear() ;
+ virtual bool CanUndo() const;
+ virtual void Undo() ;
+ virtual bool CanRedo() const;
+ virtual void Redo() ;
+ virtual int GetNumberOfLines() const ;
+ virtual long XYToPosition(long x, long y) const;
+ virtual bool PositionToXY(long pos, long *x, long *y) const ;
+ virtual void ShowPosition(long WXUNUSED(pos)) ;
+ virtual int GetLineLength(long lineNo) const ;
+ virtual wxString GetLineText(long lineNo) const ;
+ virtual void CheckSpelling(bool WXUNUSED(check)) { }
+
+ virtual wxSize GetBestSize() const { return wxDefaultSize; }
+
+ virtual bool SetHint(const wxString& WXUNUSED(hint)) { return false; }
+private:
+ wxTextEntry * const m_entry;
+
+ wxDECLARE_NO_COPY_CLASS(wxTextWidgetImpl);
+};
+
+// common interface for all implementations
+class WXDLLIMPEXP_CORE wxComboWidgetImpl
+
+{
+public :
+ wxComboWidgetImpl() {}
+
+ virtual ~wxComboWidgetImpl() {}
+
+ virtual int GetSelectedItem() const { return -1; }
+ virtual void SetSelectedItem(int WXUNUSED(item)) {}
+
+ virtual int GetNumberOfItems() const { return -1; }
+
+ virtual void InsertItem(int WXUNUSED(pos), const wxString& WXUNUSED(item)) {}
+
+ virtual void RemoveItem(int WXUNUSED(pos)) {}
+
+ virtual void Clear() {}
+ virtual void Popup() {}
+ virtual void Dismiss() {}
+
+ virtual wxString GetStringAtIndex(int WXUNUSED(pos)) const { return wxEmptyString; }
+
+ virtual int FindString(const wxString& WXUNUSED(text)) const { return -1; }
+};
+
+//
+// common interface for buttons
+//
+
+class wxButtonImpl
+{
+ public :
+ wxButtonImpl(){}
+ virtual ~wxButtonImpl(){}
+
+ virtual void SetPressedBitmap( const wxBitmap& bitmap ) = 0;
+} ;
+
+//
+// common interface for search controls
+//
+
+class wxSearchWidgetImpl
+{
+public :
+ wxSearchWidgetImpl(){}
+ virtual ~wxSearchWidgetImpl(){}
+
+ // search field options
+ virtual void ShowSearchButton( bool show ) = 0;
+ virtual bool IsSearchButtonVisible() const = 0;
+
+ virtual void ShowCancelButton( bool show ) = 0;
+ virtual bool IsCancelButtonVisible() const = 0;
+
+ virtual void SetSearchMenu( wxMenu* menu ) = 0;
+
+ virtual void SetDescriptiveText(const wxString& text) = 0;
+} ;
+