Allow using wxEVT_UPDATE_UI with wxRibbonButtonBar.

Generate wxUpdateUIEvent for the ribbon buttons to allow updating their state
using wxEVT_UPDATE_UI. Also update the same to show this.

Closes #12003.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70180 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-12-29 22:05:34 +00:00
parent 9df70d797b
commit f01e56249a
4 changed files with 134 additions and 1 deletions

View File

@@ -598,6 +598,42 @@ wxSize wxRibbonButtonBar::DoGetNextLargerSize(wxOrientation direction,
return result;
}
void wxRibbonButtonBar::UpdateWindowUI(long flags)
{
wxWindowBase::UpdateWindowUI(flags);
// don't waste time updating state of tools in a hidden toolbar
if ( !IsShown() )
return;
size_t btn_count = m_buttons.size();
bool rerealize = false;
for ( size_t btn_i = 0; btn_i < btn_count; ++btn_i )
{
wxRibbonButtonBarButtonBase& btn = *m_buttons.Item(btn_i);
int id = btn.id;
wxUpdateUIEvent event(id);
event.SetEventObject(this);
if ( ProcessWindowEvent(event) )
{
if ( event.GetSetEnabled() )
EnableButton(id, event.GetEnabled());
if ( event.GetSetChecked() )
ToggleButton(id, event.GetChecked());
if ( event.GetSetText() )
{
btn.label = event.GetText();
rerealize = true;
}
}
}
if ( rerealize )
Realize();
}
void wxRibbonButtonBar::OnEraseBackground(wxEraseEvent& WXUNUSED(evt))
{
// All painting done in main paint handler to minimise flicker