]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: tbar95.h | |
3 | // Purpose: wxToolBar95 (Windows 95 toolbar) class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc JS |
8 | // Copyright: (c) Julian Smart |
9 | // Licence: wxWindows licence | |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_TBAR95_H_ |
13 | #define _WX_TBAR95_H_ | |
2bda0e17 KB |
14 | |
15 | #ifdef __GNUG__ | |
16 | #pragma interface "tbar95.h" | |
17 | #endif | |
18 | ||
47d67540 | 19 | #if wxUSE_BUTTONBAR && wxUSE_TOOLBAR |
2bda0e17 KB |
20 | #include "wx/tbarbase.h" |
21 | ||
39ca6d79 | 22 | WXDLLEXPORT_DATA(extern const wxChar*) wxToolBarNameStr; |
2bda0e17 | 23 | |
2bda0e17 KB |
24 | class WXDLLEXPORT wxToolBar95: public wxToolBarBase |
25 | { | |
26 | DECLARE_DYNAMIC_CLASS(wxToolBar95) | |
27 | public: | |
28 | /* | |
29 | * Public interface | |
30 | */ | |
31 | ||
42e69d6b | 32 | wxToolBar95(); |
2bda0e17 | 33 | |
42e69d6b | 34 | wxToolBar95(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
81d66cf3 JS |
35 | long style = wxNO_BORDER|wxTB_HORIZONTAL, |
36 | const wxString& name = wxToolBarNameStr) | |
2bda0e17 | 37 | { |
81d66cf3 | 38 | Create(parent, id, pos, size, style, name); |
2bda0e17 | 39 | } |
42e69d6b | 40 | ~wxToolBar95(); |
2bda0e17 | 41 | |
debe6624 | 42 | bool Create(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
81d66cf3 JS |
43 | long style = wxNO_BORDER|wxTB_HORIZONTAL, |
44 | const wxString& name = wxToolBarNameStr); | |
2bda0e17 KB |
45 | |
46 | // Call default behaviour | |
e6460682 | 47 | void OnMouseEvent(wxMouseEvent& event); |
2bda0e17 KB |
48 | |
49 | // Handle wxToolBar95 events | |
50 | ||
51 | // If pushedBitmap is NULL, a reversed version of bitmap is | |
52 | // created and used as the pushed/toggled image. | |
53 | // If toggle is TRUE, the button toggles between the two states. | |
debe6624 JS |
54 | wxToolBarTool *AddTool(int toolIndex, const wxBitmap& bitmap, const wxBitmap& pushedBitmap = wxNullBitmap, |
55 | bool toggle = FALSE, long xPos = -1, long yPos = -1, wxObject *clientData = NULL, | |
2bda0e17 KB |
56 | const wxString& helpString1 = "", const wxString& helpString2 = ""); |
57 | ||
2bda0e17 | 58 | // Set default bitmap size |
81d66cf3 | 59 | void SetToolBitmapSize(const wxSize& size); |
debe6624 JS |
60 | void EnableTool(int toolIndex, bool enable); // additional drawing on enabling |
61 | void ToggleTool(int toolIndex, bool toggle); // toggle is TRUE if toggled on | |
42e69d6b | 62 | void ClearTools(); |
2bda0e17 KB |
63 | |
64 | // The button size is bigger than the bitmap size | |
42e69d6b | 65 | wxSize GetToolSize() const; |
2bda0e17 | 66 | |
42e69d6b | 67 | wxSize GetMaxSize() const; |
4fabb575 | 68 | |
2bda0e17 KB |
69 | void GetSize(int *w, int *y) const; |
70 | ||
14b72bf5 JS |
71 | virtual bool GetToolState(int toolIndex) const; |
72 | ||
2bda0e17 | 73 | // Add all the buttons: required for Win95. |
42e69d6b | 74 | virtual bool CreateTools(); |
debe6624 | 75 | virtual void SetRows(int nRows); |
42e69d6b | 76 | virtual void LayoutButtons() {} |
2bda0e17 | 77 | |
81d66cf3 JS |
78 | // The post-tool-addition call |
79 | bool Realize() { return CreateTools(); }; | |
80 | ||
2bda0e17 | 81 | // IMPLEMENTATION |
fd3f686c | 82 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
a23fd0e1 | 83 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); |
2bda0e17 KB |
84 | |
85 | // Responds to colour changes | |
86 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
87 | ||
88 | protected: | |
89 | WXHBITMAP m_hBitmap; | |
90 | ||
91 | DECLARE_EVENT_TABLE() | |
92 | }; | |
93 | ||
47d67540 | 94 | #endif // wxUSE_TOOL/BUTTONBAR |
2bda0e17 | 95 | #endif |
bbcdf8bc | 96 | // _WX_TBAR95_H_ |