1 /////////////////////////////////////////////////////////////////////////////
2 // Name: common/tbarbase.cpp
3 // Purpose: wxToolBarBase implementation
4 // Author: Julian Smart
5 // Modified by: VZ at 11.12.99 (wxScrollableToolBar splitted off)
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "tbarbase.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/control.h"
39 #include "wx/settings.h"
41 #include "wx/toolbar.h"
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
47 BEGIN_EVENT_TABLE(wxToolBarBase
, wxControl
)
50 #include "wx/listimpl.cpp"
52 WX_DEFINE_LIST(wxToolBarToolsList
);
54 // ============================================================================
56 // ============================================================================
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 IMPLEMENT_DYNAMIC_CLASS(wxToolBarToolBase
, wxObject
)
64 bool wxToolBarToolBase::Enable(bool enable
)
66 if ( m_enabled
== enable
)
74 bool wxToolBarToolBase::Toggle(bool toggle
)
76 wxASSERT_MSG( CanBeToggled(), _T("can't toggle this tool") );
78 if ( m_toggled
== toggle
)
86 bool wxToolBarToolBase::SetToggle(bool toggle
)
88 wxItemKind kind
= toggle
? wxITEM_CHECK
: wxITEM_NORMAL
;
97 bool wxToolBarToolBase::SetShortHelp(const wxString
& help
)
99 if ( m_shortHelpString
== help
)
102 m_shortHelpString
= help
;
107 bool wxToolBarToolBase::SetLongHelp(const wxString
& help
)
109 if ( m_longHelpString
== help
)
112 m_longHelpString
= help
;
117 wxToolBarToolBase::~wxToolBarToolBase()
121 // ----------------------------------------------------------------------------
122 // wxToolBarBase adding/deleting items
123 // ----------------------------------------------------------------------------
125 wxToolBarBase::wxToolBarBase()
127 // the list owns the pointers
128 m_xMargin
= m_yMargin
= 0;
130 m_maxRows
= m_maxCols
= 0;
133 wxToolBarToolBase
*wxToolBarBase::DoAddTool(int id
,
134 const wxString
& label
,
135 const wxBitmap
& bitmap
,
136 const wxBitmap
& bmpDisabled
,
138 const wxString
& shortHelp
,
139 const wxString
& longHelp
,
140 wxObject
*clientData
,
141 wxCoord
WXUNUSED(xPos
),
142 wxCoord
WXUNUSED(yPos
))
144 InvalidateBestSize();
145 return InsertTool(GetToolsCount(), id
, label
, bitmap
, bmpDisabled
,
146 kind
, shortHelp
, longHelp
, clientData
);
149 wxToolBarToolBase
*wxToolBarBase::InsertTool(size_t pos
,
151 const wxString
& label
,
152 const wxBitmap
& bitmap
,
153 const wxBitmap
& bmpDisabled
,
155 const wxString
& shortHelp
,
156 const wxString
& longHelp
,
157 wxObject
*clientData
)
159 wxCHECK_MSG( pos
<= GetToolsCount(), (wxToolBarToolBase
*)NULL
,
160 _T("invalid position in wxToolBar::InsertTool()") );
162 wxToolBarToolBase
*tool
= CreateTool(id
, label
, bitmap
, bmpDisabled
, kind
,
163 clientData
, shortHelp
, longHelp
);
165 if ( !InsertTool(pos
, tool
) )
175 wxToolBarToolBase
*wxToolBarBase::AddTool(wxToolBarToolBase
*tool
)
177 return InsertTool(GetToolsCount(), tool
);
181 wxToolBarBase::InsertTool(size_t pos
, wxToolBarToolBase
*tool
)
183 wxCHECK_MSG( pos
<= GetToolsCount(), (wxToolBarToolBase
*)NULL
,
184 _T("invalid position in wxToolBar::InsertTool()") );
186 if ( !tool
|| !DoInsertTool(pos
, tool
) )
191 m_tools
.Insert(pos
, tool
);
196 wxToolBarToolBase
*wxToolBarBase::AddControl(wxControl
*control
)
198 return InsertControl(GetToolsCount(), control
);
201 wxToolBarToolBase
*wxToolBarBase::InsertControl(size_t pos
, wxControl
*control
)
203 wxCHECK_MSG( control
, (wxToolBarToolBase
*)NULL
,
204 _T("toolbar: can't insert NULL control") );
206 wxCHECK_MSG( control
->GetParent() == this, (wxToolBarToolBase
*)NULL
,
207 _T("control must have toolbar as parent") );
209 wxCHECK_MSG( pos
<= GetToolsCount(), (wxToolBarToolBase
*)NULL
,
210 _T("invalid position in wxToolBar::InsertControl()") );
212 wxToolBarToolBase
*tool
= CreateTool(control
);
214 if ( !InsertTool(pos
, tool
) )
224 wxControl
*wxToolBarBase::FindControl( int id
)
226 for ( wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
228 node
= node
->GetNext() )
230 const wxToolBarToolBase
* const tool
= node
->GetData();
231 if ( tool
->IsControl() )
233 wxControl
* const control
= tool
->GetControl();
237 wxFAIL_MSG( _T("NULL control in toolbar?") );
239 else if ( control
->GetId() == id
)
250 wxToolBarToolBase
*wxToolBarBase::AddSeparator()
252 return InsertSeparator(GetToolsCount());
255 wxToolBarToolBase
*wxToolBarBase::InsertSeparator(size_t pos
)
257 wxCHECK_MSG( pos
<= GetToolsCount(), (wxToolBarToolBase
*)NULL
,
258 _T("invalid position in wxToolBar::InsertSeparator()") );
260 wxToolBarToolBase
*tool
= CreateTool(wxID_SEPARATOR
,
262 wxNullBitmap
, wxNullBitmap
,
263 wxITEM_SEPARATOR
, (wxObject
*)NULL
,
264 wxEmptyString
, wxEmptyString
);
266 if ( !tool
|| !DoInsertTool(pos
, tool
) )
273 m_tools
.Insert(pos
, tool
);
278 wxToolBarToolBase
*wxToolBarBase::RemoveTool(int id
)
281 wxToolBarToolsList::compatibility_iterator node
;
282 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
284 if ( node
->GetData()->GetId() == id
)
292 // don't give any error messages - sometimes we might call RemoveTool()
293 // without knowing whether the tool is or not in the toolbar
294 return (wxToolBarToolBase
*)NULL
;
297 wxToolBarToolBase
*tool
= node
->GetData();
298 if ( !DoDeleteTool(pos
, tool
) )
300 return (wxToolBarToolBase
*)NULL
;
308 bool wxToolBarBase::DeleteToolByPos(size_t pos
)
310 wxCHECK_MSG( pos
< GetToolsCount(), false,
311 _T("invalid position in wxToolBar::DeleteToolByPos()") );
313 wxToolBarToolsList::compatibility_iterator node
= m_tools
.Item(pos
);
315 if ( !DoDeleteTool(pos
, node
->GetData()) )
320 delete node
->GetData();
326 bool wxToolBarBase::DeleteTool(int id
)
329 wxToolBarToolsList::compatibility_iterator node
;
330 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
332 if ( node
->GetData()->GetId() == id
)
338 if ( !node
|| !DoDeleteTool(pos
, node
->GetData()) )
343 delete node
->GetData();
349 wxToolBarToolBase
*wxToolBarBase::FindById(int id
) const
351 wxToolBarToolBase
*tool
= (wxToolBarToolBase
*)NULL
;
353 for ( wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
355 node
= node
->GetNext() )
357 tool
= node
->GetData();
358 if ( tool
->GetId() == id
)
370 void wxToolBarBase::UnToggleRadioGroup(wxToolBarToolBase
*tool
)
372 wxCHECK_RET( tool
, _T("NULL tool in wxToolBarTool::UnToggleRadioGroup") );
374 if ( !tool
->IsButton() || tool
->GetKind() != wxITEM_RADIO
)
377 wxToolBarToolsList::compatibility_iterator node
= m_tools
.Find(tool
);
378 wxCHECK_RET( node
, _T("invalid tool in wxToolBarTool::UnToggleRadioGroup") );
380 wxToolBarToolsList::compatibility_iterator nodeNext
= node
->GetNext();
383 wxToolBarToolBase
*tool
= nodeNext
->GetData();
385 if ( !tool
->IsButton() || tool
->GetKind() != wxITEM_RADIO
)
390 nodeNext
= nodeNext
->GetNext();
393 wxToolBarToolsList::compatibility_iterator nodePrev
= node
->GetPrevious();
396 wxToolBarToolBase
*tool
= nodePrev
->GetData();
398 if ( !tool
->IsButton() || tool
->GetKind() != wxITEM_RADIO
)
403 nodePrev
= nodePrev
->GetPrevious();
407 void wxToolBarBase::ClearTools()
409 WX_CLEAR_LIST(wxToolBarToolsList
, m_tools
);
412 bool wxToolBarBase::Realize()
417 wxToolBarBase::~wxToolBarBase()
419 WX_CLEAR_LIST(wxToolBarToolsList
, m_tools
);
422 // ----------------------------------------------------------------------------
423 // wxToolBarBase tools state
424 // ----------------------------------------------------------------------------
426 void wxToolBarBase::EnableTool(int id
, bool enable
)
428 wxToolBarToolBase
*tool
= FindById(id
);
431 if ( tool
->Enable(enable
) )
433 DoEnableTool(tool
, enable
);
438 void wxToolBarBase::ToggleTool(int id
, bool toggle
)
440 wxToolBarToolBase
*tool
= FindById(id
);
441 if ( tool
&& tool
->CanBeToggled() )
443 if ( tool
->Toggle(toggle
) )
445 UnToggleRadioGroup(tool
);
446 DoToggleTool(tool
, toggle
);
451 void wxToolBarBase::SetToggle(int id
, bool toggle
)
453 wxToolBarToolBase
*tool
= FindById(id
);
456 if ( tool
->SetToggle(toggle
) )
458 DoSetToggle(tool
, toggle
);
463 void wxToolBarBase::SetToolShortHelp(int id
, const wxString
& help
)
465 wxToolBarToolBase
*tool
= FindById(id
);
468 (void)tool
->SetShortHelp(help
);
472 void wxToolBarBase::SetToolLongHelp(int id
, const wxString
& help
)
474 wxToolBarToolBase
*tool
= FindById(id
);
477 (void)tool
->SetLongHelp(help
);
481 wxObject
*wxToolBarBase::GetToolClientData(int id
) const
483 wxToolBarToolBase
*tool
= FindById(id
);
485 return tool
? tool
->GetClientData() : (wxObject
*)NULL
;
488 void wxToolBarBase::SetToolClientData(int id
, wxObject
*clientData
)
490 wxToolBarToolBase
*tool
= FindById(id
);
492 wxCHECK_RET( tool
, _T("no such tool in wxToolBar::SetToolClientData") );
494 tool
->SetClientData(clientData
);
497 int wxToolBarBase::GetToolPos(int id
) const
500 wxToolBarToolsList::compatibility_iterator node
;
502 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
504 if ( node
->GetData()->GetId() == id
)
513 bool wxToolBarBase::GetToolState(int id
) const
515 wxToolBarToolBase
*tool
= FindById(id
);
516 wxCHECK_MSG( tool
, false, _T("no such tool") );
518 return tool
->IsToggled();
521 bool wxToolBarBase::GetToolEnabled(int id
) const
523 wxToolBarToolBase
*tool
= FindById(id
);
524 wxCHECK_MSG( tool
, false, _T("no such tool") );
526 return tool
->IsEnabled();
529 wxString
wxToolBarBase::GetToolShortHelp(int id
) const
531 wxToolBarToolBase
*tool
= FindById(id
);
532 wxCHECK_MSG( tool
, _T(""), _T("no such tool") );
534 return tool
->GetShortHelp();
537 wxString
wxToolBarBase::GetToolLongHelp(int id
) const
539 wxToolBarToolBase
*tool
= FindById(id
);
540 wxCHECK_MSG( tool
, _T(""), _T("no such tool") );
542 return tool
->GetLongHelp();
545 // ----------------------------------------------------------------------------
546 // wxToolBarBase geometry
547 // ----------------------------------------------------------------------------
549 void wxToolBarBase::SetMargins(int x
, int y
)
555 void wxToolBarBase::SetRows(int WXUNUSED(nRows
))
560 // ----------------------------------------------------------------------------
562 // ----------------------------------------------------------------------------
564 // Only allow toggle if returns true
565 bool wxToolBarBase::OnLeftClick(int id
, bool toggleDown
)
567 wxCommandEvent
event(wxEVT_COMMAND_TOOL_CLICKED
, id
);
568 event
.SetEventObject(this);
570 // we use SetInt() to make wxCommandEvent::IsChecked() return toggleDown
571 event
.SetInt((int)toggleDown
);
573 // and SetExtraLong() for backwards compatibility
574 event
.SetExtraLong((long)toggleDown
);
576 // Send events to this toolbar instead (and thence up the window hierarchy)
577 GetEventHandler()->ProcessEvent(event
);
582 // Call when right button down.
583 void wxToolBarBase::OnRightClick(int id
,
587 wxCommandEvent
event(wxEVT_COMMAND_TOOL_RCLICKED
, id
);
588 event
.SetEventObject(this);
591 GetEventHandler()->ProcessEvent(event
);
594 // Called when the mouse cursor enters a tool bitmap (no button pressed).
595 // Argument is -1 if mouse is exiting the toolbar.
596 // Note that for this event, the id of the window is used,
597 // and the integer parameter of wxCommandEvent is used to retrieve
599 void wxToolBarBase::OnMouseEnter(int id
)
601 wxCommandEvent
event(wxEVT_COMMAND_TOOL_ENTER
, GetId());
602 event
.SetEventObject(this);
605 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
608 wxToolBarToolBase
* tool
= id
== -1 ? (wxToolBarToolBase
*)0 : FindById(id
);
609 wxString help
= tool
? tool
->GetLongHelp() : wxString();
610 frame
->DoGiveHelp( help
, id
!= -1 );
613 (void)GetEventHandler()->ProcessEvent(event
);
616 // ----------------------------------------------------------------------------
618 // ----------------------------------------------------------------------------
620 // Do the toolbar button updates (check for EVT_UPDATE_UI handlers)
621 void wxToolBarBase::UpdateWindowUI(long flags
)
623 wxWindowBase::UpdateWindowUI(flags
);
625 // There is no sense in updating the toolbar UI
626 // if the parent window is about to get destroyed
627 wxWindow
*tlw
= wxGetTopLevelParent( this );
628 if (tlw
&& wxPendingDelete
.Member( tlw
))
631 wxEvtHandler
* evtHandler
= GetEventHandler() ;
633 for ( wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
635 node
= node
->GetNext() )
637 int id
= node
->GetData()->GetId();
639 wxUpdateUIEvent
event(id
);
640 event
.SetEventObject(this);
642 if ( evtHandler
->ProcessEvent(event
) )
644 if ( event
.GetSetEnabled() )
645 EnableTool(id
, event
.GetEnabled());
646 if ( event
.GetSetChecked() )
647 ToggleTool(id
, event
.GetChecked());
649 if ( event
.GetSetText() )
656 // Helper function, used by wxCreateGreyedImage
658 static void wxGreyOutImage( const wxImage
& src
,
660 const wxColour
& darkCol
,
661 const wxColour
& lightCol
,
662 const wxColour
& bgCol
)
664 // Second attempt, just making things monochrome
665 int width
= src
.GetWidth();
666 int height
= src
.GetHeight();
668 int redCur
, greenCur
, blueCur
;
669 for ( int x
= 0; x
< width
; x
++ )
671 for ( int y
= 1; y
< height
; y
++ )
673 redCur
= src
.GetRed(x
, y
);
674 greenCur
= src
.GetGreen(x
, y
);
675 blueCur
= src
.GetBlue(x
, y
);
677 // Change light things to the background colour
678 if ( redCur
>= (lightCol
.Red() - 50) && greenCur
>= (lightCol
.Green() - 50) && blueCur
>= (lightCol
.Blue() - 50) )
680 dest
.SetRGB(x
,y
, bgCol
.Red(), bgCol
.Green(), bgCol
.Blue());
682 else if ( redCur
== bgCol
.Red() && greenCur
== bgCol
.Green() && blueCur
== bgCol
.Blue() )
684 // Leave the background colour as-is
685 // dest.SetRGB(x,y, bgCol.Red(), bgCol.Green(), bgCol.Blue());
687 else // if ( redCur <= darkCol.Red() && greenCur <= darkCol.Green() && blueCur <= darkCol.Blue() )
689 // Change dark things to really dark
690 dest
.SetRGB(x
,y
, darkCol
.Red(), darkCol
.Green(), darkCol
.Blue());
697 * Make a greyed-out image suitable for disabled buttons.
698 * This code is adapted from wxNewBitmapButton in FL.
701 bool wxCreateGreyedImage(const wxImage
& in
, wxImage
& out
)
705 // assuming the pixels along the edges are of the background color
706 wxColour
bgCol(in
.GetRed(0, 0), in
.GetGreen(0, 0), in
.GetBlue(0, 0));
708 wxColour darkCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
) ;
709 wxColour lightCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT
) ;
711 wxGreyOutImage(in
, out
, darkCol
, lightCol
, bgCol
);
716 #endif // wxUSE_TOOLBAR