X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b1bd0c6e7ed45535fabc574f69b7670fc28191e..3684ade82ec6f5fb7ff72341e26060b6ea0793c8:/include/wx/motif/combobox.h diff --git a/include/wx/motif/combobox.h b/include/wx/motif/combobox.h index ebf2238539..c3f748e0fe 100644 --- a/include/wx/motif/combobox.h +++ b/include/wx/motif/combobox.h @@ -12,22 +12,19 @@ #ifndef _WX_COMBOBOX_H_ #define _WX_COMBOBOX_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "combobox.h" #endif #include "wx/choice.h" -WXDLLEXPORT_DATA(extern const char*) wxComboBoxNameStr; -WXDLLEXPORT_DATA(extern const char*) wxEmptyString; - // Combobox item class WXDLLEXPORT wxComboBox: public wxChoice { DECLARE_DYNAMIC_CLASS(wxComboBox) public: - wxComboBox() {} + wxComboBox() { m_inSetSelection = false; } ~wxComboBox(); inline wxComboBox(wxWindow *parent, wxWindowID id, @@ -39,6 +36,7 @@ public: const wxValidator& validator = wxDefaultValidator, const wxString& name = wxComboBoxNameStr) { + m_inSetSelection = false; Create(parent, id, value, pos, size, n, choices, style, validator, name); } @@ -54,6 +52,7 @@ public: // implementation of wxControlWithItems virtual int DoAppend(const wxString& item); + virtual int DoInsert(const wxString& item, int pos); virtual void Delete(int n); virtual void Clear(); virtual int GetSelection() const ; @@ -91,6 +90,13 @@ protected: virtual void DoSetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); +private: + // only implemented for native combo box + void AdjustDropDownListSize(); + + // implementation detail, should really be private +public: + bool m_inSetSelection; }; #endif