Ejemplo n.º 1
0
void ToolbarPanel::OnSetInnerColor(wxCommandEvent& event)
{
	Shadow* shadow = m_stage->GetSymbol()->GetShadow();
	ee::RGBColorSettingDlg dlg(this, NULL, shadow->GetInnerColor());
	if (dlg.ShowModal() == wxID_OK) {
		shadow->SetInnerColer(dlg.GetColor());
		shadow->BuildFace();
		ee::SetCanvasDirtySJ::Instance()->SetDirty();
	}
}