From 3660902c0d7d102b733727e2e1db0243caec83f0 Mon Sep 17 00:00:00 2001 From: David Surovell Date: Sun, 5 Feb 2006 20:53:57 +0000 Subject: [PATCH] moved ctor implementation into dot-cpp file; reformatted git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/mac/carbon/statusbr.h | 46 ++++++++++++++------------------ 1 file changed, 20 insertions(+), 26 deletions(-) diff --git a/include/wx/mac/carbon/statusbr.h b/include/wx/mac/carbon/statusbr.h index 5d2e66c18d..e3335d0f7b 100644 --- a/include/wx/mac/carbon/statusbr.h +++ b/include/wx/mac/carbon/statusbr.h @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: statusbr.h -// Purpose: native implementation of wxStatusBar. Optional; can use generic -// version instead. +// Name: wx/mac/carbon/statusbr.h +// Purpose: native implementation of wxStatusBar. +// Optional: can use generic version instead. // Author: Stefan Csomor // Modified by: // Created: 1998-01-01 @@ -10,40 +10,34 @@ // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// -#ifndef _WX_STATBAR_H_ -#define _WX_STATBAR_H_ +#ifndef _WX_STATBAR_H_ +#define _WX_STATBAR_H_ class WXDLLEXPORT wxStatusBarMac : public wxStatusBarGeneric { - DECLARE_DYNAMIC_CLASS(wxStatusBarMac) + DECLARE_DYNAMIC_CLASS(wxStatusBarMac) - wxStatusBarMac(); - wxStatusBarMac(wxWindow *parent, wxWindowID id, + wxStatusBarMac(); + wxStatusBarMac(wxWindow *parent, wxWindowID id, long style = 0, - const wxString& name = wxPanelNameStr) - { - Create(parent, id, style, name); - } + const wxString& name = wxPanelNameStr); - ~wxStatusBarMac(); + ~wxStatusBarMac(); - bool Create(wxWindow *parent, wxWindowID id, + bool Create(wxWindow *parent, wxWindowID id, long style , - const wxString& name = wxPanelNameStr) ; + const wxString& name = wxPanelNameStr); - virtual void DrawFieldText(wxDC& dc, int i); - virtual void DrawField(wxDC& dc, int i); - virtual void SetStatusText(const wxString& text, int number = 0) ; - //////////////////////////////////////////////////////////////////////// - // Implementation + virtual void DrawFieldText(wxDC& dc, int i); + virtual void DrawField(wxDC& dc, int i); + virtual void SetStatusText(const wxString& text, int number = 0); - virtual void MacHiliteChanged() ; + // Implementation + virtual void MacHiliteChanged(); + void OnPaint(wxPaintEvent& event); - void OnPaint(wxPaintEvent& event); protected: - - DECLARE_EVENT_TABLE() + DECLARE_EVENT_TABLE() }; -#endif - // _WX_STATBAR_H_ +#endif // _WX_STATBAR_H_ -- 2.47.2