X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..8fef2a9b08766582f18a87f675ad574eba58e640:/include/wx/msw/choice.h?ds=sidebyside diff --git a/include/wx/msw/choice.h b/include/wx/msw/choice.h index cc00ce00b3..c2b47f69c5 100644 --- a/include/wx/msw/choice.h +++ b/include/wx/msw/choice.h @@ -12,7 +12,7 @@ #ifndef _WX_CHOICE_H_ #define _WX_CHOICE_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "choice.h" #endif @@ -22,8 +22,6 @@ class WXDLLEXPORT wxChoice : public wxChoiceBase { - DECLARE_DYNAMIC_CLASS(wxChoice) - public: // ctors wxChoice() { } @@ -52,6 +50,7 @@ public: // implement base class pure virtuals virtual int DoAppend(const wxString& item); + virtual int DoInsert(const wxString& item, int pos); virtual void Delete(int n); virtual void Clear(); @@ -70,6 +69,7 @@ public: WXUINT message, WXWPARAM wParam, WXLPARAM lParam); protected: + virtual void DoMoveWindow(int x, int y, int width, int height); virtual void DoSetItemClientData( int n, void* clientData ); virtual void* DoGetItemClientData( int n ) const; virtual void DoSetItemClientObject( int n, wxClientData* clientData ); @@ -83,6 +83,8 @@ protected: // free all memory we have (used by Clear() and dtor) void Free(); + + DECLARE_DYNAMIC_CLASS_NO_COPY(wxChoice) }; #endif // _WX_CHOICE_H_