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 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSW_TBAR95_H_
13 #define _WX_MSW_TBAR95_H_
17 #include "wx/dynarray.h"
18 #include "wx/imaglist.h"
20 class WXDLLIMPEXP_CORE wxToolBar
: public wxToolBarBase
24 wxToolBar() { Init(); }
26 wxToolBar(wxWindow
*parent
,
28 const wxPoint
& pos
= wxDefaultPosition
,
29 const wxSize
& size
= wxDefaultSize
,
30 long style
= wxNO_BORDER
| wxTB_HORIZONTAL
,
31 const wxString
& name
= wxToolBarNameStr
)
35 Create(parent
, id
, pos
, size
, style
, name
);
38 bool Create(wxWindow
*parent
,
40 const wxPoint
& pos
= wxDefaultPosition
,
41 const wxSize
& size
= wxDefaultSize
,
42 long style
= wxNO_BORDER
| wxTB_HORIZONTAL
,
43 const wxString
& name
= wxToolBarNameStr
);
47 // override/implement base class virtuals
48 virtual wxToolBarToolBase
*FindToolForPosition(wxCoord x
, wxCoord y
) const;
50 virtual bool Realize();
52 virtual void SetToolBitmapSize(const wxSize
& size
);
53 virtual wxSize
GetToolSize() const;
55 virtual void SetRows(int nRows
);
57 virtual void SetToolNormalBitmap(int id
, const wxBitmap
& bitmap
);
58 virtual void SetToolDisabledBitmap(int id
, const wxBitmap
& bitmap
);
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
);
70 void OnEraseBackground(wxEraseEvent
& event
);
74 static WXHBITMAP
MapBitmap(WXHBITMAP bitmap
, int width
, int height
);
76 // override WndProc mainly to process WM_SIZE
77 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
79 virtual WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
81 // returns true if the platform should explicitly apply a theme border
82 virtual bool CanApplyThemeBorder() const { return false; }
85 // common part of all ctors
88 // create the native toolbar control
89 bool MSWCreateToolbar(const wxPoint
& pos
, const wxSize
& size
);
91 // recreate the control completely
94 // implement base class pure virtuals
95 virtual bool DoInsertTool(size_t pos
, wxToolBarToolBase
*tool
);
96 virtual bool DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
);
98 virtual void DoEnableTool(wxToolBarToolBase
*tool
, bool enable
);
99 virtual void DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
);
100 virtual void DoSetToggle(wxToolBarToolBase
*tool
, bool toggle
);
102 virtual wxToolBarToolBase
*CreateTool(int id
,
103 const wxString
& label
,
104 const wxBitmap
& bmpNormal
,
105 const wxBitmap
& bmpDisabled
,
107 wxObject
*clientData
,
108 const wxString
& shortHelp
,
109 const wxString
& longHelp
);
111 virtual wxToolBarToolBase
*CreateTool(wxControl
*control
,
112 const wxString
& label
);
114 // return the appropriate size and flags for the toolbar control
115 virtual wxSize
DoGetBestSize() const;
117 // handlers for various events
118 bool HandleSize(WXWPARAM wParam
, WXLPARAM lParam
);
120 bool HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
);
121 #endif // __WXWINCE__
122 void HandleMouseMove(WXWPARAM wParam
, WXLPARAM lParam
);
124 // should be called whenever the toolbar size changes
127 // create m_disabledImgList (but doesn't fill it), set it to NULL if it is
129 void CreateDisabledImageList();
131 // get the Windows toolbar style of this control
132 long GetMSWToolbarStyle() const;
135 // the big bitmap containing all bitmaps of the toolbar buttons
138 // the image list with disabled images, may be NULL if we use
139 // system-provided versions of them
140 wxImageList
*m_disabledImgList
;
142 // the total number of toolbar elements
145 // the tool the cursor is in
146 wxToolBarToolBase
*m_pInTool
;
149 // makes sure tool bitmap size is sufficient for all tools
150 void AdjustToolBitmapSize();
152 DECLARE_EVENT_TABLE()
153 DECLARE_DYNAMIC_CLASS(wxToolBar
)
154 wxDECLARE_NO_COPY_CLASS(wxToolBar
);
157 #endif // wxUSE_TOOLBAR
159 #endif // _WX_MSW_TBAR95_H_