1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/buttonbar.cpp
3 // Purpose: wxButtonToolBar implementation
4 // Author: Julian Smart, after Robert Roebling, Vadim Zeitlin, SciTech
8 // Copyright: (c) Julian Smart, Robert Roebling, Vadim Zeitlin,
9 // SciTech Software, Inc.
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 // For compilers that support precompilation, includes "wx.h".
22 #include "wx/wxprec.h"
28 // Currently, only for Mac as a toolbar replacement.
29 #if defined(__WXMAC__) && wxUSE_TOOLBAR && wxUSE_BMPBUTTON
36 #include "wx/generic/buttonbar.h"
40 #include "wx/settings.h"
41 #include "wx/dcclient.h"
43 // ----------------------------------------------------------------------------
44 // wxButtonToolBarTool: our implementation of wxToolBarToolBase
45 // ----------------------------------------------------------------------------
47 class WXDLLEXPORT wxButtonToolBarTool
: public wxToolBarToolBase
50 wxButtonToolBarTool(wxButtonToolBar
*tbar
,
52 const wxString
& label
,
53 const wxBitmap
& bmpNormal
,
54 const wxBitmap
& bmpDisabled
,
57 const wxString
& shortHelp
,
58 const wxString
& longHelp
)
59 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
60 clientData
, shortHelp
, longHelp
)
62 m_x
= m_y
= wxDefaultCoord
;
69 wxButtonToolBarTool(wxButtonToolBar
*tbar
, wxControl
*control
)
70 : wxToolBarToolBase(tbar
, control
)
72 m_x
= m_y
= wxDefaultCoord
;
78 wxBitmapButton
* GetButton() const { return m_button
; }
79 void SetButton(wxBitmapButton
* button
) { m_button
= button
; }
82 // the tool position (for controls)
89 // the control representing the button
90 wxBitmapButton
* m_button
;
93 // ============================================================================
94 // wxButtonToolBar implementation
95 // ============================================================================
97 IMPLEMENT_DYNAMIC_CLASS(wxButtonToolBar
, wxControl
)
99 BEGIN_EVENT_TABLE(wxButtonToolBar
, wxControl
)
100 EVT_BUTTON(wxID_ANY
, wxButtonToolBar::OnCommand
)
101 EVT_PAINT(wxButtonToolBar::OnPaint
)
104 // ----------------------------------------------------------------------------
105 // wxButtonToolBar creation
106 // ----------------------------------------------------------------------------
108 void wxButtonToolBar::Init()
111 m_needsLayout
= false;
113 // unknown widths for the tools and separators
114 m_widthSeparator
= wxDefaultCoord
;
123 bool wxButtonToolBar::Create(wxWindow
*parent
,
128 const wxString
& name
)
130 if ( !wxToolBarBase::Create(parent
, id
, pos
, size
, style
,
131 wxDefaultValidator
, name
) )
136 // TODO: get the correct colour from the system
137 wxColour
lightBackground(240, 240, 240);
138 SetBackgroundColour(lightBackground
);
142 wxButtonToolBar::~wxButtonToolBar()
146 // ----------------------------------------------------------------------------
147 // wxButtonToolBar tool-related methods
148 // ----------------------------------------------------------------------------
150 wxToolBarToolBase
*wxButtonToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
152 // check the "other" direction first: it must be inside the toolbar or we
153 // don't risk finding anything
156 if ( x
< 0 || x
> m_maxWidth
)
159 // we always use x, even for a vertical toolbar, this makes the code
165 if ( y
< 0 || y
> m_maxHeight
)
169 for ( wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
171 node
= node
->GetNext() )
173 wxButtonToolBarTool
*tool
= (wxButtonToolBarTool
*) node
->GetData();
174 wxRect rectTool
= GetToolRect(tool
);
176 wxCoord startTool
, endTool
;
177 GetRectLimits(rectTool
, &startTool
, &endTool
);
179 if ( x
>= startTool
&& x
<= endTool
)
181 // don't return the separators from here, they don't accept any
183 return tool
->IsSeparator() ? NULL
: tool
;
190 void wxButtonToolBar::GetRectLimits(const wxRect
& rect
,
194 wxCHECK_RET( start
&& end
, _T("NULL pointer in GetRectLimits") );
198 *start
= rect
.GetTop();
199 *end
= rect
.GetBottom();
203 *start
= rect
.GetLeft();
204 *end
= rect
.GetRight();
209 void wxButtonToolBar::SetToolShortHelp(int id
, const wxString
& help
)
211 wxToolBarToolBase
*tool
= FindById(id
);
213 wxCHECK_RET( tool
, _T("SetToolShortHelp: no such tool") );
215 // TODO: set tooltip/short help
216 tool
->SetShortHelp(help
);
219 bool wxButtonToolBar::DoInsertTool(size_t WXUNUSED(pos
),
220 wxToolBarToolBase
* WXUNUSED(tool
))
225 bool wxButtonToolBar::DoDeleteTool(size_t WXUNUSED(pos
),
226 wxToolBarToolBase
* WXUNUSED(tool
))
232 void wxButtonToolBar::DoEnableTool(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(enable
))
237 void wxButtonToolBar::DoToggleTool(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
242 void wxButtonToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
247 wxToolBarToolBase
*wxButtonToolBar::CreateTool(int id
,
248 const wxString
& label
,
249 const wxBitmap
& bmpNormal
,
250 const wxBitmap
& bmpDisabled
,
252 wxObject
*clientData
,
253 const wxString
& shortHelp
,
254 const wxString
& longHelp
)
256 return new wxButtonToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
257 clientData
, shortHelp
, longHelp
);
260 wxToolBarToolBase
*wxButtonToolBar::CreateTool(wxControl
*control
)
262 return new wxButtonToolBarTool(this, control
);
265 // ----------------------------------------------------------------------------
266 // wxButtonToolBar geometry
267 // ----------------------------------------------------------------------------
269 wxRect
wxButtonToolBar::GetToolRect(wxToolBarToolBase
*toolBase
) const
271 const wxButtonToolBarTool
*tool
= (wxButtonToolBarTool
*)toolBase
;
275 wxCHECK_MSG( tool
, rect
, _T("GetToolRect: NULL tool") );
277 // ensure that we always have the valid tool position
280 wxConstCast(this, wxButtonToolBar
)->DoLayout();
283 rect
.x
= tool
->m_x
- m_xMargin
;
284 rect
.y
= tool
->m_y
- m_yMargin
;
288 if (tool
->IsButton())
290 rect
.width
= m_defaultWidth
;
291 rect
.height
= m_defaultHeight
;
292 if (tool
->GetButton())
293 rect
.SetSize(tool
->GetButton()->GetSize());
295 else if (tool
->IsSeparator())
297 rect
.width
= m_defaultWidth
;
298 rect
.height
= m_widthSeparator
;
302 rect
.width
= tool
->m_width
;
303 rect
.height
= tool
->m_height
;
308 if (tool
->IsButton())
310 rect
.width
= m_defaultWidth
;
311 rect
.height
= m_defaultHeight
;
312 if (tool
->GetButton())
313 rect
.SetSize(tool
->GetButton()->GetSize());
315 else if (tool
->IsSeparator())
317 rect
.width
= m_widthSeparator
;
318 rect
.height
= m_defaultHeight
;
322 rect
.width
= tool
->m_width
;
323 rect
.height
= tool
->m_height
;
327 rect
.width
+= 2*m_xMargin
;
328 rect
.height
+= 2*m_yMargin
;
333 bool wxButtonToolBar::Realize()
335 if ( !wxToolBarBase::Realize() )
338 m_needsLayout
= true;
341 SetBestSize(wxSize(m_maxWidth
, m_maxHeight
));
346 void wxButtonToolBar::DoLayout()
348 m_needsLayout
= false;
350 wxCoord x
= m_xMargin
,
355 const wxCoord widthTool
= IsVertical() ? m_defaultHeight
: m_defaultWidth
;
356 wxCoord margin
= IsVertical() ? m_xMargin
: m_yMargin
;
357 wxCoord
*pCur
= IsVertical() ? &y
: &x
;
359 // calculate the positions of all elements
360 for ( wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
362 node
= node
->GetNext() )
364 wxButtonToolBarTool
*tool
= (wxButtonToolBarTool
*) node
->GetData();
369 if (tool
->IsButton())
371 if (!tool
->GetButton())
373 wxBitmapButton
* bmpButton
= new wxBitmapButton(this, tool
->GetId(), tool
->GetNormalBitmap(), wxPoint(tool
->m_x
, tool
->m_y
), wxDefaultSize
,
374 wxBU_AUTODRAW
|wxBORDER_NONE
);
376 tool
->SetButton(bmpButton
);
380 tool
->GetButton()->Move(wxPoint(tool
->m_x
, tool
->m_y
));
384 if (tool
->GetButton())
386 wxSize sz
= tool
->GetButton()->GetSize();
389 maxHeight
= wxMax(maxHeight
, sz
.y
);
392 *pCur
+= (w
+ GetToolPacking());
394 else if (tool
->IsSeparator())
396 *pCur
+= m_widthSeparator
;
398 else if (!IsVertical()) // horizontal control
400 wxControl
*control
= tool
->GetControl();
401 wxSize size
= control
->GetSize();
402 tool
->m_y
+= (m_defaultHeight
- size
.y
)/2;
403 tool
->m_width
= size
.x
;
404 tool
->m_height
= size
.y
;
406 *pCur
+= tool
->m_width
;
408 maxHeight
= wxMax(maxHeight
, size
.y
);
413 // calculate the total toolbar size
414 m_maxWidth
= x
+ 2*m_xMargin
;
415 m_maxHeight
= maxHeight
+ 2*m_yMargin
;
417 if ((GetWindowStyle() & wxTB_NODIVIDER
) == 0)
422 wxSize
wxButtonToolBar::DoGetBestClientSize() const
424 return wxSize(m_maxWidth
, m_maxHeight
);
427 // receives button commands
428 void wxButtonToolBar::OnCommand(wxCommandEvent
& event
)
430 wxButtonToolBarTool
* tool
= (wxButtonToolBarTool
*) FindById(event
.GetId());
437 if (tool
->CanBeToggled())
438 tool
->Toggle(tool
->IsToggled());
440 // TODO: handle toggle items
441 OnLeftClick(event
.GetId(), false);
443 if (tool
->GetKind() == wxITEM_RADIO
)
444 UnToggleRadioGroup(tool
);
446 if (tool
->CanBeToggled())
451 void wxButtonToolBar::OnPaint(wxPaintEvent
& event
)
455 for ( wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
457 node
= node
->GetNext() )
459 wxButtonToolBarTool
*tool
= (wxButtonToolBarTool
*) node
->GetData();
460 if (tool
->IsToggled())
462 wxRect rectTool
= GetToolRect(tool
);
463 rectTool
.y
= 0; rectTool
.height
= GetClientSize().y
;
464 wxBrush
brush(wxColour(220, 220, 220));
465 wxPen
pen(*wxLIGHT_GREY
);
468 dc
.DrawRectangle(rectTool
);
472 if ((GetWindowStyle() & wxTB_NODIVIDER
) == 0)
474 wxPen
pen(*wxLIGHT_GREY
);
477 int y1
= GetClientSize().y
-1;
478 int x2
= GetClientSize().x
;
480 dc
.DrawLine(x1
, y1
, x2
, y2
);
484 #endif // wxUSE_TOOLBAR && wxUSE_BMPBUTTON