本文整理汇总了C++中OptionsDialog::SetBackgroundColour方法的典型用法代码示例。如果您正苦于以下问题:C++ OptionsDialog::SetBackgroundColour方法的具体用法?C++ OptionsDialog::SetBackgroundColour怎么用?C++ OptionsDialog::SetBackgroundColour使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OptionsDialog
的用法示例。
在下文中一共展示了OptionsDialog::SetBackgroundColour方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ShowPreferencesDialog
void findit_pi::ShowPreferencesDialog( wxWindow* parent )
{
int buyNotemp = buyNo;
int toBuyZerotemp = toBuyZero;
int lastRowDefaulttemp = lastRowDefault;
OptionsDialog* dlg = new OptionsDialog(parent,this);
wxColour cl;
GetGlobalColor(_T("DILG1"), &cl);
dlg->SetBackgroundColour(cl);
// dlg->m_checkBoxShowLogbook->SetValue(m_bLOGShowIcon);
if(dlg->ShowModal() == wxID_OK)
{
buyNo = dlg->m_radioBox11->GetSelection();
toBuyZero = dlg->m_radioBox1->GetSelection();
lastRowDefault = dlg->m_radioBox5->GetSelection();
if((buyNo != buyNotemp) || (toBuyZero != toBuyZerotemp) || (lastRowDefault != lastRowDefaulttemp))
if(m_pFindItWindow)
m_pFindItWindow->reloadData();
// Show Icon changed value?
if(m_bFINDITShowIcon != dlg->m_checkBoxFindItIcon->GetValue())
{
m_bFINDITShowIcon = dlg->m_checkBoxFindItIcon->GetValue();
if(m_bFINDITShowIcon)
m_leftclick_tool_id = InsertPlugInTool(_T(""), _img_findit, _img_findit, wxITEM_NORMAL,
_("FindIt"), _T(""), NULL, FINDIT_TOOL_POSITION, 0, this);
else
RemovePlugInTool(m_leftclick_tool_id);
}
SaveConfig();
}
else
{
if(buyNo != buyNotemp || toBuyZero != toBuyZerotemp || lastRowDefault != lastRowDefaulttemp)
if(m_pFindItWindow)
m_pFindItWindow->reloadData();
}
delete dlg;
}