Fix for bug IPAL19502 (Qt4 porting. Edit Group. Ok (Apply) doesn't become active after change of color).

This commit is contained in:
mzn 2008-04-09 12:02:44 +00:00
parent 135ff2be87
commit d4a2b286c0
2 changed files with 12 additions and 0 deletions

View File

@ -379,6 +379,8 @@ void SMESHGUI_GroupDlg::initDialog(bool create)
connect(myGroupBtn, SIGNAL(clicked()), this, SLOT(setCurrentSelection()));
connect(myGeomGroupBtn, SIGNAL(toggled(bool)), this, SLOT(onGeomSelectionButton(bool)));
connect(myColorBtn, SIGNAL(changed( QColor )), this, SLOT(onColorChanged( QColor )));
connect(myOKBtn, SIGNAL(clicked()), this, SLOT(onOK()));
connect(myApplyBtn, SIGNAL(clicked()), this, SLOT(onApply()));
connect(myCloseBtn, SIGNAL(clicked()), this, SLOT(onClose()));
@ -633,6 +635,15 @@ void SMESHGUI_GroupDlg::onGrpTypeChanged (int id)
myGrpTypeId = id;
}
//=================================================================================
// function : onColorChanged()
// purpose : Color button management
//=================================================================================
void SMESHGUI_GroupDlg::onColorChanged(QColor theColor)
{
updateButtons();
}
//=================================================================================
// function : setSelectionMode()
// purpose : Radio button management

View File

@ -81,6 +81,7 @@ public slots:
private slots:
void onTypeChanged( int );
void onGrpTypeChanged( int );
void onColorChanged( QColor );
void onOK();
void onClose();