]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/statbr95.h
Fixed const problems in status bar code, changed panelg.cpp temporarily to
[wxWidgets.git] / include / wx / msw / statbr95.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/statbr95.h
3 // Purpose: native implementation of wxStatusBar
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 04.04.98
7 // RCS-ID: $Id$
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _STATBR95_H
13 #define _STATBR95_H
14
15 #ifdef __GNUG__
16 #pragma interface "statbr95.h"
17 #endif
18
19 #if USE_NATIVE_STATUSBAR
20
21 class WXDLLEXPORT wxStatusBar95 : public wxStatusBar
22 {
23 DECLARE_DYNAMIC_CLASS(wxStatusBar95);
24
25 public:
26 // ctors
27 wxStatusBar95();
28 wxStatusBar95(wxWindow *parent, wxWindowID id = -1, long style = wxST_SIZEGRIP);
29
30 // create status line
31 bool Create(wxWindow *parent, wxWindowID id = -1, long style = wxST_SIZEGRIP);
32
33 // a status line can have several (<256) fields numbered from 0
34 virtual void SetFieldsCount(int number = 1, const int widths[] = NULL);
35
36 // each field of status line has it's own text
37 virtual void SetStatusText(const wxString& text, int number = 0);
38 virtual wxString GetStatusText(int number = 0) const;
39
40 // set status line fields' widths
41 virtual void SetStatusWidths(int n, const int widths_field[]);
42
43 // we're going to process WM_SIZE (of the parent window)
44 void OnSize(wxSizeEvent& event);
45
46 DECLARE_EVENT_TABLE()
47
48 protected:
49 void CopyFieldsWidth(const int widths[]);
50 void SetFieldsWidth();
51 };
52
53 #endif // USE_NATIVE_STATUSBAR
54
55 #endif //_STATBR95_H