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