]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/statbox.h
setp.h changes
[wxWidgets.git] / include / wx / os2 / statbox.h
index df6122aeb91d3c8e5664abe4d4f0d0dde5fcab3d..ac327c6180da5d1cd1d51713e481e0888957c7ff 100644 (file)
 
 #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_