]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/statusbr.h
wxGraphicContext --> wxGraphicsContext
[wxWidgets.git] / include / wx / mac / statusbr.h
index a83d84ae336faf889064facb9aaf4948745908fc..01e17c56677e804fd5add8d743326fe7d26f8044 100644 (file)
@@ -1,54 +1,5 @@
-///////////////////////////////////////////////////////////////////////////////
-// Name:        statusbr.h
-// Purpose:     native implementation of wxStatusBar. Optional; can use generic
-//              version instead.
-// Author:      AUTHOR
-// Modified by: 
-// Created:     ??/??/98
-// RCS-ID:      $Id$
-// Copyright:   (c) AUTHOR
-// Licence:     wxWindows licence
-///////////////////////////////////////////////////////////////////////////////
-
-#ifndef   _WX_STATBAR_H_
-#define   _WX_STATBAR_H_
-
-#ifdef __GNUG__
-#pragma interface "statbar.h"
+#ifdef __WXMAC_CLASSIC__
+#include "wx/mac/classic/statusbr.h"
+#else
+#include "wx/mac/carbon/statusbr.h"
 #endif
 #endif
-
-#include "wx/generic/statusbr.h"
-
-class WXDLLEXPORT wxStatusBarMac : public wxStatusBar
-{
-  DECLARE_DYNAMIC_CLASS(wxStatusBarXX);
-
-public:
-  // ctors
-  wxStatusBarXX();
-  wxStatusBarXX(wxWindow *parent, wxWindowID id = -1, long style = wxST_SIZEGRIP);
-
-  // create status line
-  bool Create(wxWindow *parent, wxWindowID id = -1, long style = wxST_SIZEGRIP);
-
-  // a status line can have several (<256) fields numbered from 0
-  virtual void SetFieldsCount(int number = 1, const int widths[] = NULL);
-
-  // each field of status line has its own text
-  virtual void     SetStatusText(const wxString& text, int number = 0);
-  virtual wxString GetStatusText(int number = 0) const;
-
-  // set status line fields' widths
-  virtual void SetStatusWidths(int n, const int widths_field[]);
-
-  void OnSize(wxSizeEvent& event);
-
-  DECLARE_EVENT_TABLE()
-
-protected:
-  void CopyFieldsWidth(const int widths[]);
-  void SetFieldsWidth();
-};
-
-#endif
-    // _WX_STATBAR_H_
\ No newline at end of file