]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
ed791986 VZ |
2 | // Name: wx/generic/statusbr.h |
3 | // Purpose: wxStatusBarGeneric class | |
c801d85f | 4 | // Author: Julian Smart |
ed791986 | 5 | // Modified by: VZ at 05.02.00 to derive from wxStatusBarBase |
c801d85f KB |
6 | // Created: 01/02/97 |
7 | // RCS-ID: $Id$ | |
371a5b4e | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
ed791986 VZ |
12 | #ifndef _WX_GENERIC_STATUSBR_H_ |
13 | #define _WX_GENERIC_STATUSBR_H_ | |
c801d85f | 14 | |
245243ec WS |
15 | #include "wx/defs.h" |
16 | ||
17 | #if wxUSE_STATUSBAR | |
18 | ||
ac57418f | 19 | #include "wx/pen.h" |
2da2f941 | 20 | #include "wx/arrstr.h" |
c801d85f | 21 | |
7b6fefbe FM |
22 | |
23 | // ---------------------------------------------------------------------------- | |
24 | // wxStatusBarGeneric | |
25 | // ---------------------------------------------------------------------------- | |
26 | ||
53a2db12 | 27 | class WXDLLIMPEXP_CORE wxStatusBarGeneric : public wxStatusBarBase |
c801d85f | 28 | { |
c801d85f | 29 | public: |
3304646d WS |
30 | wxStatusBarGeneric() { Init(); } |
31 | wxStatusBarGeneric(wxWindow *parent, | |
53b6d7a2 PC |
32 | wxWindowID winid = wxID_ANY, |
33 | long style = wxST_SIZEGRIP, | |
34 | const wxString& name = wxStatusBarNameStr) | |
3304646d WS |
35 | { |
36 | Init(); | |
390015c0 | 37 | |
3304646d WS |
38 | Create(parent, winid, style, name); |
39 | } | |
ed791986 | 40 | |
3304646d | 41 | virtual ~wxStatusBarGeneric(); |
c801d85f | 42 | |
53b6d7a2 PC |
43 | bool Create(wxWindow *parent, wxWindowID winid = wxID_ANY, |
44 | long style = wxST_SIZEGRIP, | |
45 | const wxString& name = wxStatusBarNameStr); | |
c801d85f | 46 | |
3304646d WS |
47 | // Create status line |
48 | virtual void SetFieldsCount(int number = 1, | |
49 | const int *widths = (const int *) NULL); | |
c801d85f | 50 | |
3304646d WS |
51 | // Set status line text |
52 | virtual void SetStatusText(const wxString& text, int number = 0); | |
c801d85f | 53 | |
3304646d WS |
54 | // Set status line widths |
55 | virtual void SetStatusWidths(int n, const int widths_field[]); | |
c801d85f | 56 | |
3304646d WS |
57 | // Get the position and size of the field's internal bounding rectangle |
58 | virtual bool GetFieldRect(int i, wxRect& rect) const; | |
c801d85f | 59 | |
3304646d WS |
60 | // sets the minimal vertical size of the status bar |
61 | virtual void SetMinHeight(int height); | |
ed791986 | 62 | |
3304646d WS |
63 | virtual int GetBorderX() const { return m_borderX; } |
64 | virtual int GetBorderY() const { return m_borderY; } | |
c801d85f | 65 | |
78612fa6 | 66 | |
ba4589db | 67 | protected: // event handlers |
ed791986 | 68 | |
3304646d | 69 | void OnPaint(wxPaintEvent& event); |
ba4589db | 70 | void OnSize(wxSizeEvent& event); |
ca65c044 | 71 | |
3304646d WS |
72 | void OnLeftDown(wxMouseEvent& event); |
73 | void OnRightDown(wxMouseEvent& event); | |
c801d85f | 74 | |
3304646d WS |
75 | // Responds to colour changes |
76 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
c801d85f | 77 | |
ba4589db FM |
78 | protected: |
79 | ||
80 | virtual void DrawFieldText(wxDC& dc, const wxRect& rc, int i, int textHeight); | |
81 | virtual void DrawField(wxDC& dc, int i, int textHeight); | |
82 | ||
83 | void SetBorderX(int x); | |
84 | void SetBorderY(int y); | |
85 | ||
86 | virtual void InitColours(); | |
87 | ||
7422d7c4 VZ |
88 | // true if the status bar shows the size grip: for this it must have |
89 | // wxST_SIZEGRIP style and the window it is attached to must be resizeable | |
90 | // and not maximized | |
91 | bool ShowsSizeGrip() const; | |
92 | ||
78612fa6 FM |
93 | // returns the position and the size of the size grip |
94 | wxRect GetSizeGripRect() const; | |
95 | ||
3304646d WS |
96 | // common part of all ctors |
97 | void Init(); | |
390015c0 | 98 | |
ba4589db FM |
99 | // the last known height of the client rect |
100 | int m_lastClientHeight; | |
7b6fefbe FM |
101 | |
102 | // the absolute widths of the status bar panes in pixels | |
3304646d | 103 | wxArrayInt m_widthsAbs; |
390015c0 | 104 | |
3304646d WS |
105 | int m_borderX; |
106 | int m_borderY; | |
107 | wxPen m_mediumShadowPen; | |
108 | wxPen m_hilightPen; | |
c801d85f | 109 | |
3304646d | 110 | virtual wxSize DoGetBestSize() const; |
595a9493 | 111 | |
ed791986 | 112 | private: |
3304646d WS |
113 | DECLARE_EVENT_TABLE() |
114 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxStatusBarGeneric) | |
c801d85f KB |
115 | }; |
116 | ||
245243ec WS |
117 | #endif // wxUSE_STATUSBAR |
118 | ||
c801d85f | 119 | #endif |
ed791986 | 120 | // _WX_GENERIC_STATUSBR_H_ |