mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-22 14:50:33 +05:00
0021179: EDF 1654 SMESH GEOM: better look'n'feel
Additional fix of bug: impossible to remove user's materials
This commit is contained in:
parent
ce8009fe71
commit
dbca9b56bb
@ -427,6 +427,7 @@ GEOMToolsGUI_MaterialPropertiesDlg::GEOMToolsGUI_MaterialPropertiesDlg( QWidget*
|
|||||||
setButtonPosition( Right, Close );
|
setButtonPosition( Right, Close );
|
||||||
setDialogFlags( AlignOnce );
|
setDialogFlags( AlignOnce );
|
||||||
myMaterialList->setEditTriggers( QAbstractItemView::EditKeyPressed );
|
myMaterialList->setEditTriggers( QAbstractItemView::EditKeyPressed );
|
||||||
|
myMaterialList->installEventFilter( this );
|
||||||
|
|
||||||
// ! RESOURCES
|
// ! RESOURCES
|
||||||
QStringList globalMaterials = resourceMgr()->materials( Material_ResourceMgr::Global );
|
QStringList globalMaterials = resourceMgr()->materials( Material_ResourceMgr::Global );
|
||||||
@ -574,9 +575,11 @@ void GEOMToolsGUI_MaterialPropertiesDlg::accept()
|
|||||||
\brief Process key press event
|
\brief Process key press event
|
||||||
\param e key event
|
\param e key event
|
||||||
*/
|
*/
|
||||||
void GEOMToolsGUI_MaterialPropertiesDlg::keyPressEvent( QKeyEvent* e )
|
bool GEOMToolsGUI_MaterialPropertiesDlg::eventFilter( QObject* o, QEvent* e )
|
||||||
{
|
{
|
||||||
if ( e->key() == Qt::Key_Delete ) {
|
if ( o == myMaterialList && e->type() == QEvent::KeyPress ) {
|
||||||
|
QKeyEvent* ke = (QKeyEvent*)e;
|
||||||
|
if ( ke->key() == Qt::Key_Delete ) {
|
||||||
QListWidgetItem* item = myMaterialList->currentItem();
|
QListWidgetItem* item = myMaterialList->currentItem();
|
||||||
if ( item && item->data( TypeRole ).toInt() == User ) {
|
if ( item && item->data( TypeRole ).toInt() == User ) {
|
||||||
if ( QMessageBox::question( this,
|
if ( QMessageBox::question( this,
|
||||||
@ -590,7 +593,8 @@ void GEOMToolsGUI_MaterialPropertiesDlg::keyPressEvent( QKeyEvent* e )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
QtxDialog::keyPressEvent( e );
|
}
|
||||||
|
return QtxDialog::eventFilter( o, e );
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
@ -63,8 +63,7 @@ public:
|
|||||||
|
|
||||||
void accept();
|
void accept();
|
||||||
|
|
||||||
protected:
|
bool eventFilter( QObject*, QEvent* );
|
||||||
void keyPressEvent( QKeyEvent* );
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Material_ResourceMgr* resourceMgr();
|
Material_ResourceMgr* resourceMgr();
|
||||||
|
Loading…
Reference in New Issue
Block a user