]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/statusbr.h
restoring wxUSE_GLOBAL_MEMORY_OPERATORS I accidentally removed a moment ago
[wxWidgets.git] / include / wx / generic / statusbr.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: statusbr.h
3 // Purpose: wxStatusBar class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef __STATUSBRH_G__
13 #define __STATUSBRH_G__
14
15 #ifdef __GNUG__
16 #pragma interface "statusbr.h"
17 #endif
18
19 #include "wx/window.h"
20
21 WXDLLEXPORT_DATA(extern const char*) wxPanelNameStr;
22
23 class WXDLLEXPORT wxStatusBar: public wxWindow
24 {
25 DECLARE_DYNAMIC_CLASS(wxStatusBar)
26
27 public:
28 wxStatusBar(void);
29 inline wxStatusBar(wxWindow *parent, wxWindowID id,
30 const wxPoint& pos = wxDefaultPosition,
31 const wxSize& size = wxDefaultSize,
32 long style = 0,
33 const wxString& name = wxPanelNameStr)
34 {
35 Create(parent, id, pos, size, style, name);
36 }
37
38 ~wxStatusBar();
39
40 bool Create(wxWindow *parent, wxWindowID id,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize,
43 long style = 0,
44 const wxString& name = wxPanelNameStr);
45
46 // Create status line
47 virtual void SetFieldsCount(int number=1, const int widths[] = (const int *) NULL);
48 inline int GetFieldsCount() const { return m_nFields; }
49
50 // Set status line text
51 virtual void SetStatusText(const wxString& text, int number = 0);
52 virtual wxString GetStatusText(int number = 0) const;
53
54 // Set status line widths
55 virtual void SetStatusWidths(int n, const int widths_field[]);
56
57 virtual void DrawFieldText(wxDC& dc, int i);
58 virtual void DrawField(wxDC& dc, int i);
59
60 // Get the position and size of the field's internal bounding rectangle
61 virtual bool GetFieldRect(int i, wxRect& rect) const;
62
63 inline int GetBorderX() const { return m_borderX; }
64 inline int GetBorderY() const { return m_borderY; }
65 inline void SetBorderX(int x);
66 inline void SetBorderY(int y);
67
68 ////////////////////////////////////////////////////////////////////////
69 // Implementation
70
71 void OnPaint(wxPaintEvent& event);
72
73 virtual void InitColours();
74
75 // Responds to colour changes
76 void OnSysColourChanged(wxSysColourChangedEvent& event);
77
78 protected:
79 int * m_statusWidths;
80 int m_nFields;
81 wxString * m_statusStrings;
82 int m_borderX;
83 int m_borderY;
84 wxFont m_defaultStatusBarFont;
85 wxPen m_mediumShadowPen;
86 wxPen m_hilightPen;
87
88 DECLARE_EVENT_TABLE()
89 };
90
91 #endif
92 // __STATUSBRH_G__