]>
Commit | Line | Data |
---|---|---|
10b959e3 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: tbarsmpl.h | |
3 | // Purpose: wxToolBarSimple 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 licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_TBARSMPLH__ |
13 | #define _WX_TBARSMPLH__ | |
10b959e3 JS |
14 | |
15 | #ifdef __GNUG__ | |
16 | #pragma interface "tbarsmpl.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/defs.h" | |
20 | ||
21 | #if USE_TOOLBAR | |
22 | ||
23 | #include "wx/bitmap.h" | |
24 | #include "wx/list.h" | |
25 | #include "wx/tbarbase.h" | |
26 | ||
27 | WXDLLEXPORT_DATA(extern const char*) wxToolBarNameStr; | |
28 | WXDLLEXPORT_DATA(extern const wxSize) wxDefaultSize; | |
29 | WXDLLEXPORT_DATA(extern const wxPoint) wxDefaultPosition; | |
30 | ||
31 | // XView can't cope properly with panels that behave like canvases | |
32 | // (e.g. no scrollbars in panels) | |
33 | class WXDLLEXPORT wxToolBarSimple : public wxToolBarBase | |
34 | { | |
35 | DECLARE_DYNAMIC_CLASS(wxToolBarSimple) | |
36 | ||
37 | public: | |
38 | ||
39 | wxToolBarSimple(void); | |
debe6624 | 40 | inline wxToolBarSimple(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
81d66cf3 JS |
41 | long style = wxNO_BORDER|wxTB_HORIZONTAL, |
42 | const wxString& name = wxToolBarNameStr) | |
10b959e3 | 43 | { |
81d66cf3 | 44 | Create(parent, id, pos, size, style, name); |
10b959e3 JS |
45 | } |
46 | ~wxToolBarSimple(void); | |
47 | ||
debe6624 | 48 | bool Create(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
81d66cf3 | 49 | long style = wxNO_BORDER|wxTB_HORIZONTAL, const wxString& name = wxToolBarNameStr); |
10b959e3 JS |
50 | |
51 | void OnPaint(wxPaintEvent& event); | |
52 | void OnSize(wxSizeEvent& event); | |
53 | void OnMouseEvent(wxMouseEvent& event); | |
54 | void OnKillFocus(wxFocusEvent& event); | |
55 | ||
56 | // Handle wxToolBar events | |
57 | ||
58 | virtual void DrawTool(wxDC& dc, wxMemoryDC& memDC, wxToolBarTool *tool); | |
debe6624 | 59 | virtual void ToggleTool(int toolIndex, bool toggle); // toggle is TRUE if toggled on |
10b959e3 | 60 | |
debe6624 | 61 | virtual void SpringUpButton(int index); |
10b959e3 | 62 | |
81d66cf3 JS |
63 | void Layout(void); |
64 | ||
65 | // The post-tool-addition call | |
66 | bool Realize() { Layout(); return TRUE; }; | |
67 | ||
68 | protected: | |
69 | int m_currentRowsOrColumns; | |
70 | long m_lastX, m_lastY; | |
71 | ||
72 | DECLARE_EVENT_TABLE() | |
73 | ||
10b959e3 JS |
74 | }; |
75 | ||
76 | #endif // USE_TOOLBAR | |
77 | #endif | |
34138703 | 78 | // _WX_TBARSMPLH__ |
10b959e3 | 79 |