1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/statusbr.h
3 // Purpose: wxStatusBarUniv: wxStatusBar for wxUniversal declaration
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_UNIV_STATUSBR_H_
13 #define _WX_UNIV_STATUSBR_H_
15 #include "wx/univ/inpcons.h"
16 #include "wx/arrstr.h"
18 // ----------------------------------------------------------------------------
19 // wxStatusBar: a window near the bottom of the frame used for status info
20 // ----------------------------------------------------------------------------
22 class WXDLLEXPORT wxStatusBarUniv
: public wxStatusBarBase
,
23 public wxInputConsumer
26 wxStatusBarUniv() { Init(); }
28 wxStatusBarUniv(wxWindow
*parent
,
29 wxWindowID id
= wxID_ANY
,
31 const wxString
& name
= wxPanelNameStr
)
35 (void)Create(parent
, id
, style
, name
);
38 bool Create(wxWindow
*parent
,
39 wxWindowID id
= wxID_ANY
,
41 const wxString
& name
= wxPanelNameStr
);
43 // set field count/widths
44 virtual void SetFieldsCount(int number
= 1, const int *widths
= NULL
);
45 virtual void SetStatusWidths(int n
, const int widths
[]);
47 // get/set the text of the given field
48 virtual void SetStatusText(const wxString
& text
, int number
= 0);
49 virtual wxString
GetStatusText(int number
= 0) const;
51 // Get the position and size of the field's internal bounding rectangle
52 virtual bool GetFieldRect(int i
, wxRect
& rect
) const;
54 // sets the minimal vertical size of the status bar
55 virtual void SetMinHeight(int height
);
57 // get the dimensions of the horizontal and vertical borders
58 virtual int GetBorderX() const;
59 virtual int GetBorderY() const;
61 // wxInputConsumer pure virtual
62 virtual wxWindow
*GetInputWindow() const
63 { return wx_const_cast(wxStatusBar
*, this); }
66 // recalculate the field widths
67 void OnSize(wxSizeEvent
& event
);
70 virtual void DoDraw(wxControlRenderer
*renderer
);
72 // tell them about our preferred height
73 virtual wxSize
DoGetBestSize() const;
75 // override DoSetSize() to prevent the status bar height from changing
76 virtual void DoSetSize(int x
, int y
,
77 int width
, int height
,
78 int sizeFlags
= wxSIZE_AUTO
);
80 // get the (fixed) status bar height
81 wxCoord
GetHeight() const;
83 // get the rectangle containing all the fields and the border between them
85 // also updates m_widthsAbs if necessary
86 wxRect
GetTotalFieldRect(wxCoord
*borderBetweenFields
);
88 // get the rect for this field without ani side effects (see code)
89 wxRect
DoGetFieldRect(int n
) const;
91 // refresh the given field
92 void RefreshField(int i
);
94 // common part of all ctors
98 // the status fields strings
99 wxArrayString m_statusText
;
101 // the absolute status fields widths
102 wxArrayInt m_widthsAbs
;
104 DECLARE_DYNAMIC_CLASS(wxStatusBarUniv
)
105 DECLARE_EVENT_TABLE()
106 WX_DECLARE_INPUT_CONSUMER()
109 #endif // _WX_UNIV_STATUSBR_H_