merge of wxMac into main repository
[wxWidgets.git] / include / wx / mac / statusbr.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: statusbr.h
3 // Purpose: native implementation of wxStatusBar. Optional; can use generic
4 // version instead.
5 // Author: AUTHOR
6 // Modified by:
7 // Created: ??/??/98
8 // RCS-ID: $Id$
9 // Copyright: (c) AUTHOR
10 // Licence: wxWindows licence
11 ///////////////////////////////////////////////////////////////////////////////
12
13 #ifndef _WX_STATBAR_H_
14 #define _WX_STATBAR_H_
15
16 #ifdef __GNUG__
17 #pragma interface "statbar.h"
18 #endif
19
20 #include "wx/generic/statusbr.h"
21
22 class WXDLLEXPORT wxStatusBarMac : public wxStatusBarGeneric
23 {
24 DECLARE_DYNAMIC_CLASS(wxStatusBarMac);
25
26 wxStatusBarMac(void);
27 inline wxStatusBarMac(wxWindow *parent, wxWindowID id,
28 long style = 0,
29 const wxString& name = wxPanelNameStr)
30 {
31 Create(parent, id, style, name);
32 }
33
34 ~wxStatusBarMac();
35
36 bool Create(wxWindow *parent, wxWindowID id,
37 long style,
38 const wxString& name = wxPanelNameStr) ;
39
40 virtual void DrawFieldText(wxDC& dc, int i);
41 virtual void DrawField(wxDC& dc, int i);
42
43 ////////////////////////////////////////////////////////////////////////
44 // Implementation
45
46 void OnPaint(wxPaintEvent& event);
47 protected:
48
49 DECLARE_EVENT_TABLE()
50 };
51
52 #endif
53 // _WX_STATBAR_H_