]>
Commit | Line | Data |
---|---|---|
8cf73271 SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: statusbr.h | |
3 | // Purpose: native implementation of wxStatusBar. Optional; can use generic | |
4 | // version instead. | |
5 | // Author: Stefan Csomor | |
6 | // Modified by: | |
7 | // Created: 1998-01-01 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) Stefan Csomor | |
65571936 | 10 | // Licence: wxWindows licence |
8cf73271 SC |
11 | /////////////////////////////////////////////////////////////////////////////// |
12 | ||
13 | #ifndef _WX_STATBAR_H_ | |
14 | #define _WX_STATBAR_H_ | |
15 | ||
16 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
17 | #pragma interface "statbrma.h" | |
18 | #endif | |
19 | ||
20 | class WXDLLEXPORT wxStatusBarMac : public wxStatusBarGeneric | |
21 | { | |
48456801 | 22 | DECLARE_DYNAMIC_CLASS(wxStatusBarMac) |
8cf73271 SC |
23 | |
24 | wxStatusBarMac(); | |
25 | wxStatusBarMac(wxWindow *parent, wxWindowID id, | |
26 | long style = 0, | |
27 | const wxString& name = wxPanelNameStr) | |
28 | { | |
29 | Create(parent, id, style, name); | |
30 | } | |
31 | ||
32 | ~wxStatusBarMac(); | |
33 | ||
34 | bool Create(wxWindow *parent, wxWindowID id, | |
35 | long style , | |
36 | const wxString& name = wxPanelNameStr) ; | |
37 | ||
38 | virtual void DrawFieldText(wxDC& dc, int i); | |
39 | virtual void DrawField(wxDC& dc, int i); | |
40 | virtual void SetStatusText(const wxString& text, int number = 0) ; | |
41 | //////////////////////////////////////////////////////////////////////// | |
42 | // Implementation | |
43 | ||
8ab50549 SC |
44 | virtual void MacHiliteChanged() ; |
45 | ||
8cf73271 SC |
46 | void OnPaint(wxPaintEvent& event); |
47 | protected: | |
48 | ||
49 | DECLARE_EVENT_TABLE() | |
50 | }; | |
51 | ||
52 | #endif | |
53 | // _WX_STATBAR_H_ |