]> git.saurik.com Git - wxWidgets.git/blob - include/wx/tbarsmpl.h
Added USE_CONFIG
[wxWidgets.git] / include / wx / tbarsmpl.h
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 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);
40 inline wxToolBarSimple(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
41 long style = wxNO_BORDER|wxTB_HORIZONTAL,
42 const wxString& name = wxToolBarNameStr)
43 {
44 Create(parent, id, pos, size, style, name);
45 }
46 ~wxToolBarSimple(void);
47
48 bool Create(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
49 long style = wxNO_BORDER|wxTB_HORIZONTAL, const wxString& name = wxToolBarNameStr);
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);
59 virtual void ToggleTool(int toolIndex, bool toggle); // toggle is TRUE if toggled on
60
61 virtual void SpringUpButton(int index);
62
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
74 };
75
76 #endif // USE_TOOLBAR
77 #endif
78 // _WX_TBARSMPLH__
79