wxRibbonButtonBar:在运行时更改按钮的图像

时间:2017-01-30 05:25:31

标签: c++ wxwidgets

我正在寻找一种更好的方式来在运行时更改wxRibbonButtonBar上按钮的图像。在MS Excel中,当单元格或单元格的背景发生更改时,功能区按钮会反映最后选择的颜色。因此,我的目标是实现类似的目标。我想到了两种可能的方法:

第一种方法:有两个功能:

1)AddButton(int button_id,..,const wxBitmap& bitmap,...)

2)DeleteButton(int button_id)

由于按钮的ID是已知的,我想在每次需要更改位图时调用DeleteButton然后调用AddButton。虽然这样可行,但我怀疑这是一个很好的方法。

另一种可能的方法:由于AddButton函数返回指向wxRibbonButtonBarButtonBase的指针,并且存在以下函数

void SetItemClientData (wxRibbonButtonBarButtonBase *item, void *data)

返回值wxRibbonButtonBarButtonBase可以作为参数传递给指向特定按钮。但是,在这里,我不确定data究竟指的是什么参数(因为按钮可以有标题,位图等......)以及如何将wxBitmap作为data传递给此函数。

以下代码有效,它是第1和第2种方法的混合,更多的是第1种;但是,我怀疑这是最佳方式。

wxColourDialog dlg(this);

wxColour color;
if (dlg.ShowModal() == wxID_OK) color = dlg.GetColourData().GetColour(); else return;

wxMemoryDC dc;
wxBitmap bmp(bucket_xpm); //32 by 32
dc.SelectObject(bmp);
dc.SetBrush(color);
dc.DrawRectangle(0, 28, 32, 32);

int itemID=m_ribbonButtonBarFormat->GetItemId(m_BtnFillColor);
m_ribbonButtonBarFormat->DeleteButton(itemID);
m_BtnFillColor=m_ribbonButtonBarFormat->AddButton(itemID, wxT("Fill Color"), bmp, wxEmptyString);
m_ribbonButtonBarFormat->Realize();

任何想法都会受到赞赏,如果这有利于第二种方法,那么代码片段将会有很大的帮助。

1 个答案:

答案 0 :(得分:0)

我的目标是“我正在寻找一种更好的方法来在运行时更改 wxRibbonButtonBar 上的按钮图像。在MS Excel中,当一个或多个单元格的背景发生变化时,功能区按钮反映最后选择的颜色。“

我的方法的缺点是我的目标是改变wxRibbonButtonBar的位图。事实上,Excel通过 混合按钮工具 实现了这一点,当点击下拉工具时它显示调色板,然后一旦你点击按钮,它就适用了选定的颜色(我仍然不知道如何显示浮动调色板)。

因此,我将我的方法从wxRibbonButtonBar更改为wxRibbonToolBar,并添加了一个带有以下代码的混合按钮:

m_ribbonToolBarFormat->AddHybridTool(ID_FORMATFILLCOLOR, bmp, wxT("Fill Color"));

混合工具可以生成两个事件: 1) OnRibbonToolClicked 2) OnRibbonToolDropdownClicked

OnRibbonToolDropdownFillColorClicked(wxRibbonToolBarEvent& event)
{
    wxColourDialog dlg(this);

    if (dlg.ShowModal() == wxID_OK) m_LastChosenFillColor = dlg.GetColourData().GetColour(); else return;

    wxMemoryDC dc;
    wxBitmap bmp(bucket_xpm);
    dc.SelectObject(bmp);
    dc.SetBrush(m_LastChosenFillColor);
    dc.DrawRectangle(0, 28, 32, 32);

    m_ribbonToolBarFormat->SetToolNormalBitmap(ID_FORMATFILLCOLOR, bmp);
    m_ribbonToolBarFormat->Refresh();

使用SetToolNormalBitmap,我可以在不删除工具的情况下在运行时设置工具的图像。