Better disabling of toolbars and menubars
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1397 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -196,10 +196,6 @@ wxToolBarTool *wxToolBar::AddTool( int toolIndex, const wxBitmap& bitmap,
|
||||
wxCHECK_MSG( bitmap.Ok(), (wxToolBarTool *)NULL,
|
||||
"invalid bitmap for wxToolBar icon" );
|
||||
|
||||
wxToolBarTool *tool = new wxToolBarTool( this, toolIndex, bitmap, pushedBitmap,
|
||||
toggle, clientData,
|
||||
helpString1, helpString2 );
|
||||
|
||||
wxCHECK_MSG( bitmap.GetBitmap() == NULL, (wxToolBarTool *)NULL,
|
||||
"wxToolBar doesn't support GdkBitmap" );
|
||||
|
||||
@@ -218,6 +214,11 @@ wxToolBarTool *wxToolBar::AddTool( int toolIndex, const wxBitmap& bitmap,
|
||||
|
||||
gtk_misc_set_alignment( GTK_MISC(tool_pixmap), 0.5, 0.5 );
|
||||
|
||||
wxToolBarTool *tool = new wxToolBarTool( this, toolIndex, bitmap, pushedBitmap,
|
||||
toggle, clientData,
|
||||
helpString1, helpString2,
|
||||
tool_pixmap );
|
||||
|
||||
GtkToolbarChildType ctype = toggle ? GTK_TOOLBAR_CHILD_TOGGLEBUTTON
|
||||
: GTK_TOOLBAR_CHILD_BUTTON;
|
||||
|
||||
@@ -288,8 +289,12 @@ void wxToolBar::EnableTool(int toolIndex, bool enable)
|
||||
{
|
||||
wxToolBarTool *tool = (wxToolBarTool*)node->Data();
|
||||
if (tool->m_index == toolIndex)
|
||||
{
|
||||
{
|
||||
tool->m_enabled = enable;
|
||||
|
||||
if (tool->m_item)
|
||||
gtk_widget_set_sensitive( tool->m_item, enable );
|
||||
|
||||
return;
|
||||
}
|
||||
node = node->Next();
|
||||
|
Reference in New Issue
Block a user