X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/210a651b4f4ef5ff4e220a100a10bb4f29e08cfd..c8a50408fb29c7912e4438a9fa10a203f4067ae8:/include/wx/os2/statbox.h diff --git a/include/wx/os2/statbox.h b/include/wx/os2/statbox.h index df6122aeb9..ac327c6180 100644 --- a/include/wx/os2/statbox.h +++ b/include/wx/os2/statbox.h @@ -14,55 +14,52 @@ #include "wx/control.h" -WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr; - // Group box class WXDLLEXPORT wxStaticBox : public wxStaticBoxBase { - DECLARE_DYNAMIC_CLASS(wxStaticBox) - - public: +public: inline wxStaticBox() {} - inline wxStaticBox( wxWindow* parent - ,wxWindowID id - ,const wxString& label - ,const wxPoint& pos = wxDefaultPosition - ,const wxSize& size = wxDefaultSize - ,long style = 0 - ,const wxString& name = wxStaticBoxNameStr + inline wxStaticBox( wxWindow* pParent + ,wxWindowID vId + ,const wxString& rsLabel + ,const wxPoint& rPos = wxDefaultPosition + ,const wxSize& rSize = wxDefaultSize + ,long lStyle = 0 + ,const wxString& rsName = wxStaticBoxNameStr ) { - Create(parent, id, label, pos, size, style, name); + Create(pParent, vId, rsLabel, rPos, rSize, lStyle, rsName); } - bool Create( wxWindow* parent - ,wxWindowID id - ,const wxString& label - ,const wxPoint& pos = wxDefaultPosition - ,const wxSize& size = wxDefaultSize - ,long style = 0 - ,const wxString& name = wxStaticBoxNameStr - ); + bool Create( wxWindow* pParent + ,wxWindowID vId + ,const wxString& rsLabel + ,const wxPoint& rPos = wxDefaultPosition + ,const wxSize& rSize = wxDefaultSize + ,long lStyle = 0 + ,const wxString& rsName = wxStaticBoxNameStr + ); + // // implementation from now on // -------------------------- + // + virtual MRESULT OS2WindowProc( WXUINT uMsg + ,WXWPARAM wParam + ,WXLPARAM lParam + ); - void OnEraseBackground(wxEraseEvent& event); - - virtual MRESULT OS2WindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); - - virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, - WXUINT message, WXWPARAM wParam, WXLPARAM lParam); - + // // overriden base class virtuals - virtual bool AcceptsFocus() const { return FALSE; } + // + inline virtual bool AcceptsFocus(void) const { return FALSE; } protected: - virtual wxSize DoGetBestSize() const; + virtual wxSize DoGetBestSize(void) const; private: - DECLARE_EVENT_TABLE() -}; + DECLARE_DYNAMIC_CLASS(wxStaticBox) +}; // end of CLASS wxStaticBox #endif // _WX_STATBOX_H_