X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..02e05e7e4087243171de25b598e701229814b821:/include/wx/mac/carbon/statline.h diff --git a/include/wx/mac/carbon/statline.h b/include/wx/mac/carbon/statline.h index 43a8a54df9..7a70d0d582 100644 --- a/include/wx/mac/carbon/statline.h +++ b/include/wx/mac/carbon/statline.h @@ -5,16 +5,12 @@ // Created: 28.06.99 // Version: $Id$ // Copyright: (c) 1998 Vadim Zeitlin -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_GENERIC_STATLINE_H_ #define _WX_GENERIC_STATLINE_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "statline.h" -#endif - class wxStaticBox; // ---------------------------------------------------------------------------- @@ -23,14 +19,12 @@ class wxStaticBox; class WXDLLEXPORT wxStaticLine : public wxStaticLineBase { - DECLARE_DYNAMIC_CLASS(wxStaticLine) - public: // constructors and pseudo-constructors wxStaticLine() : m_statbox(NULL) { } wxStaticLine( wxWindow *parent, - wxWindowID id, + wxWindowID id = wxID_ANY, const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, long style = wxLI_HORIZONTAL, @@ -41,7 +35,7 @@ public: } bool Create( wxWindow *parent, - wxWindowID id, + wxWindowID id = wxID_ANY, const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, long style = wxLI_HORIZONTAL, @@ -51,10 +45,12 @@ public: // will want to return the main widget for m_statbox // WXWidget GetMainWidget() const; - + protected: // we implement the static line using a static box wxStaticBox *m_statbox; + + DECLARE_DYNAMIC_CLASS(wxStaticLine) }; #endif // _WX_GENERIC_STATLINE_H_