]> git.saurik.com Git - wxWidgets.git/commitdiff
moved ctor implementation into dot-cpp file; reformatted
authorDavid Surovell <davids@osafoundation.org>
Sun, 5 Feb 2006 20:53:57 +0000 (20:53 +0000)
committerDavid Surovell <davids@osafoundation.org>
Sun, 5 Feb 2006 20:53:57 +0000 (20:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/carbon/statusbr.h

index 5d2e66c18d6c34f880ae00be58cb762592cd44bf..e3335d0f7b6e293087ba76c1b1d8e073b1f803d3 100644 (file)
@@ -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
 // 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_