]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/tbar95.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/tbar95.h
3 // Purpose: wxToolBar (Windows 95 toolbar) class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "tbar95.h"
21 #include "wx/dynarray.h"
23 class WXDLLEXPORT wxToolBar
: public wxToolBarBase
27 wxToolBar() { Init(); }
29 wxToolBar(wxWindow
*parent
,
31 const wxPoint
& pos
= wxDefaultPosition
,
32 const wxSize
& size
= wxDefaultSize
,
33 long style
= wxNO_BORDER
| wxTB_HORIZONTAL
,
34 const wxString
& name
= wxToolBarNameStr
)
38 Create(parent
, id
, pos
, size
, style
, name
);
41 bool Create(wxWindow
*parent
,
43 const wxPoint
& pos
= wxDefaultPosition
,
44 const wxSize
& size
= wxDefaultSize
,
45 long style
= wxNO_BORDER
| wxTB_HORIZONTAL
,
46 const wxString
& name
= wxToolBarNameStr
);
50 // override/implement base class virtuals
51 virtual wxToolBarToolBase
*FindToolForPosition(wxCoord x
, wxCoord y
) const;
53 virtual bool Realize();
55 virtual void SetToolBitmapSize(const wxSize
& size
);
56 virtual wxSize
GetToolSize() const;
58 virtual void SetRows(int nRows
);
60 // implementation only from now on
61 // -------------------------------
63 virtual void SetWindowStyleFlag(long style
);
65 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
66 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
68 void OnMouseEvent(wxMouseEvent
& event
);
69 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
73 static WXHBITMAP
MapBitmap(WXHBITMAP bitmap
, int width
, int height
);
76 // common part of all ctors
79 // implement base class pure virtuals
80 virtual bool DoInsertTool(size_t pos
, wxToolBarToolBase
*tool
);
81 virtual bool DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
);
83 virtual void DoEnableTool(wxToolBarToolBase
*tool
, bool enable
);
84 virtual void DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
);
85 virtual void DoSetToggle(wxToolBarToolBase
*tool
, bool toggle
);
87 virtual wxToolBarToolBase
*CreateTool(int id
,
88 const wxString
& label
,
89 const wxBitmap
& bmpNormal
,
90 const wxBitmap
& bmpDisabled
,
93 const wxString
& shortHelp
,
94 const wxString
& longHelp
);
95 virtual wxToolBarToolBase
*CreateTool(wxControl
*control
);
97 // should be called whenever the toolbar size changes
100 // override WndProc mainly to process WM_SIZE
101 virtual long MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
103 // handlers for various events
104 bool HandleSize(WXWPARAM wParam
, WXLPARAM lParam
);
105 bool HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
);
106 void HandleMouseMove(WXWPARAM wParam
, WXLPARAM lParam
);
108 // the big bitmap containing all bitmaps of the toolbar buttons
111 // the total number of toolbar elements
114 // the tool the cursor is in
115 wxToolBarToolBase
*m_pInTool
;
118 DECLARE_EVENT_TABLE()
119 DECLARE_DYNAMIC_CLASS(wxToolBar
)
122 #endif // wxUSE_TOOLBAR