X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e78c4d503ecd57835502fb1bbd13a71cb99019d0..19f87dbe255b5e85236547bfb4e20ad310644373:/include/wx/os2/statbox.h?ds=sidebyside diff --git a/include/wx/os2/statbox.h b/include/wx/os2/statbox.h index a8f504fec2..411d80da88 100644 --- a/include/wx/os2/statbox.h +++ b/include/wx/os2/statbox.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: statbox.h +// Name: wx/os2/statbox.h // Purpose: wxStaticBox class // Author: David Webster // Modified by: @@ -14,55 +14,52 @@ #include "wx/control.h" -WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr; - // Group box -class WXDLLEXPORT wxStaticBox: public wxControl +class WXDLLIMPEXP_CORE 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(HWND hwnd, 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; } + // + // overridden base class virtuals + // + 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_