X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/78b3b018ce9edca5742d8ab263d849f77f3d19bf..f499ca450c3863cea52f7b7f77aa7eecc942b552:/include/wx/gtk1/combobox.h diff --git a/include/wx/gtk1/combobox.h b/include/wx/gtk1/combobox.h index 0592f6f193..1273258fad 100644 --- a/include/wx/gtk1/combobox.h +++ b/include/wx/gtk1/combobox.h @@ -5,17 +5,12 @@ // Created: 01/02/97 // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - #ifndef __GTKCOMBOBOXH__ #define __GTKCOMBOBOXH__ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "combobox.h" -#endif - #include "wx/defs.h" #if wxUSE_COMBOBOX @@ -26,20 +21,20 @@ // classes //----------------------------------------------------------------------------- -class wxComboBox; +class WXDLLIMPEXP_CORE wxComboBox; //----------------------------------------------------------------------------- // global data //----------------------------------------------------------------------------- -extern const wxChar* wxComboBoxNameStr; -extern const wxChar* wxEmptyString; +extern WXDLLIMPEXP_CORE const wxChar* wxComboBoxNameStr; +extern WXDLLIMPEXP_BASE const wxChar* wxEmptyString; //----------------------------------------------------------------------------- // wxComboBox //----------------------------------------------------------------------------- -class wxComboBox : public wxControl, public wxComboBoxBase +class WXDLLIMPEXP_CORE wxComboBox : public wxControl, public wxComboBoxBase { public: inline wxComboBox() {} @@ -90,13 +85,14 @@ public: virtual int FindString( const wxString &item ) const; int GetSelection() const; +#if wxABI_VERSION >= 20602 + int GetCurrentSelection() const; +#endif wxString GetString( int n ) const; wxString GetStringSelection() const; int GetCount() const; int Number() const { return GetCount(); } void SetSelection( int n ); - void Select( int n ) { return SetSelection( n ); } - bool SetStringSelection( const wxString &string ); void SetString(int n, const wxString &text); wxString GetValue() const; @@ -105,14 +101,25 @@ public: void Copy(); void Cut(); void Paste(); + bool CanCopy() const; + bool CanCut() const; + bool CanPaste() const; void SetInsertionPoint( long pos ); void SetInsertionPointEnd() { SetInsertionPoint( -1 ); } long GetInsertionPoint() const; - long GetLastPosition() const; + virtual wxTextPos GetLastPosition() const; void Remove(long from, long to) { Replace(from, to, wxEmptyString); } void Replace( long from, long to, const wxString& value ); void SetSelection( long from, long to ); + void GetSelection( long* from, long* to ) const; void SetEditable( bool editable ); + void Undo() ; + void Redo() ; + bool CanUndo() const; + bool CanRedo() const; + void SelectAll(); + bool IsEditable() const ; + bool HasSelection() const ; // implementation @@ -121,6 +128,23 @@ public: void OnSize( wxSizeEvent &event ); void OnChar( wxKeyEvent &event ); + // Standard event handling + void OnCut(wxCommandEvent& event); + void OnCopy(wxCommandEvent& event); + void OnPaste(wxCommandEvent& event); + void OnUndo(wxCommandEvent& event); + void OnRedo(wxCommandEvent& event); + void OnDelete(wxCommandEvent& event); + void OnSelectAll(wxCommandEvent& event); + + void OnUpdateCut(wxUpdateUIEvent& event); + void OnUpdateCopy(wxUpdateUIEvent& event); + void OnUpdatePaste(wxUpdateUIEvent& event); + void OnUpdateUndo(wxUpdateUIEvent& event); + void OnUpdateRedo(wxUpdateUIEvent& event); + void OnUpdateDelete(wxUpdateUIEvent& event); + void OnUpdateSelectAll(wxUpdateUIEvent& event); + bool m_ignoreNextUpdate:1; wxList m_clientDataList; wxList m_clientObjectList; @@ -136,7 +160,7 @@ public: static wxVisualAttributes GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); - + protected: virtual int DoAppend(const wxString& item); virtual int DoInsert(const wxString& item, int pos);