X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_PropertyPanel.cpp;h=fc337bc6305a1a2e9cd2753613db5b6a427ef3f4;hb=b0782eb7d6c01174bd34cccd871078eb94259b5a;hp=dd3cc642da41886a793674850d7f4a41948837c4;hpb=7d7c82a40c584a3004bdbf41df431ba7c0b7eb4c;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_PropertyPanel.cpp b/src/XGUI/XGUI_PropertyPanel.cpp index dd3cc642d..fc337bc63 100644 --- a/src/XGUI/XGUI_PropertyPanel.cpp +++ b/src/XGUI/XGUI_PropertyPanel.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + /* * XGUI_PropertyPanel.cpp * @@ -6,8 +8,8 @@ */ #include -#include -#include +//#include +#include #include #include @@ -17,17 +19,19 @@ #include #include #include +#include #ifdef _DEBUG #include #endif XGUI_PropertyPanel::XGUI_PropertyPanel(QWidget* theParent) - : QDockWidget(theParent) + : ModuleBase_IPropertyPanel(theParent), + myActiveWidget(NULL) { this->setWindowTitle(tr("Property Panel")); QAction* aViewAct = this->toggleViewAction(); - this->setObjectName(XGUI::PROP_PANEL); + this->setObjectName(PROP_PANEL); setStyleSheet("::title { position: relative; padding-left: 5px; text-align: left center }"); QWidget* aContent = new QWidget(this); @@ -47,23 +51,21 @@ XGUI_PropertyPanel::XGUI_PropertyPanel(QWidget* theParent) aBtnLay->addWidget(aBtn); aBtnLay->addStretch(1); aBtn = new QPushButton(QIcon(":pictures/button_ok.png"), "", aFrm); - aBtn->setObjectName(XGUI::PROP_PANEL_OK); + aBtn->setObjectName(PROP_PANEL_OK); aBtn->setToolTip(tr("Ok")); aBtn->setFlat(true); aBtnLay->addWidget(aBtn); - aBtn->installEventFilter(this); aBtn = new QPushButton(QIcon(":pictures/button_cancel.png"), "", aFrm); aBtn->setToolTip(tr("Cancel")); - aBtn->setObjectName(XGUI::PROP_PANEL_CANCEL); + aBtn->setObjectName(PROP_PANEL_CANCEL); aBtn->setFlat(true); + aBtn->setShortcut(QKeySequence(Qt::Key_Escape)); aBtnLay->addWidget(aBtn); myCustomWidget = new QWidget(aContent); myMainLayout->addWidget(myCustomWidget); - myMainLayout->addStretch(1); - - aBtn->installEventFilter(this); + setStretchEnabled(true); } XGUI_PropertyPanel::~XGUI_PropertyPanel() @@ -72,39 +74,52 @@ XGUI_PropertyPanel::~XGUI_PropertyPanel() void XGUI_PropertyPanel::cleanContent() { + if (myActiveWidget) + myActiveWidget->deactivate(); myWidgets.clear(); qDeleteAll(myCustomWidget->children()); + myActiveWidget = NULL; + setWindowTitle(tr("Property Panel")); } void XGUI_PropertyPanel::setModelWidgets(const QList& theWidgets) { myWidgets = theWidgets; if (theWidgets.empty()) return; - + bool isEnableStretch = true; QList::const_iterator anIt = theWidgets.begin(), aLast = theWidgets.end(); for (; anIt != aLast; anIt++) { connect(*anIt, SIGNAL(keyReleased(QKeyEvent*)), this, SIGNAL(keyReleased(QKeyEvent*))); + connect(*anIt, SIGNAL(focusOutWidget(ModuleBase_ModelWidget*)), + this, SLOT(activateNextWidget(ModuleBase_ModelWidget*))); + connect(*anIt, SIGNAL(focusInWidget(ModuleBase_ModelWidget*)), + this, SLOT(activateWidget(ModuleBase_ModelWidget*))); - connect(*anIt, SIGNAL(focusOutWidget(ModuleBase_ModelWidget*)), this, - SLOT(onActivateNextWidget(ModuleBase_ModelWidget*))); + //ModuleBase_WidgetPoint2D* aPointWidget = dynamic_cast(*anIt); + //if (aPointWidget) + // connect(aPointWidget, SIGNAL(storedPoint2D(ObjectPtr, const std::string&)), this, + // SIGNAL(storedPoint2D(ObjectPtr, const std::string&))) + //} - //connect(*anIt, SIGNAL(activated(ModuleBase_ModelWidget*)), - // this, SIGNAL(widgetActivated(ModuleBase_ModelWidget*))); - - ModuleBase_WidgetPoint2D* aPointWidget = dynamic_cast(*anIt); - if (aPointWidget) - connect(aPointWidget, SIGNAL(storedPoint2D(ObjectPtr, const std::string&)), this, - SIGNAL(storedPoint2D(ObjectPtr, const std::string&))); + if (!isEnableStretch) continue; + foreach(QWidget* eachWidget, (*anIt)->getControls()) { + QSizePolicy::Policy aVPolicy = eachWidget->sizePolicy().verticalPolicy(); + if(aVPolicy == QSizePolicy::Expanding || + aVPolicy == QSizePolicy::MinimumExpanding) { + isEnableStretch = false; + } + } } + setStretchEnabled(isEnableStretch); ModuleBase_ModelWidget* aLastWidget = theWidgets.last(); if (aLastWidget) { QList aControls = aLastWidget->getControls(); if (!aControls.empty()) { QWidget* aLastControl = aControls.last(); - QPushButton* anOkBtn = findChild(XGUI::PROP_PANEL_OK); - QPushButton* aCancelBtn = findChild(XGUI::PROP_PANEL_CANCEL); + QPushButton* anOkBtn = findChild(PROP_PANEL_OK); + QPushButton* aCancelBtn = findChild(PROP_PANEL_CANCEL); setTabOrder(aLastControl, anOkBtn); setTabOrder(anOkBtn, aCancelBtn); @@ -117,24 +132,6 @@ const QList& XGUI_PropertyPanel::modelWidgets() const return myWidgets; } -bool XGUI_PropertyPanel::eventFilter(QObject *theObject, QEvent *theEvent) -{ - QPushButton* anOkBtn = findChild(XGUI::PROP_PANEL_OK); - QPushButton* aCancelBtn = findChild(XGUI::PROP_PANEL_CANCEL); - if (theObject == anOkBtn || theObject == aCancelBtn) { - if (theEvent->type() == QEvent::KeyRelease) { - QKeyEvent* aKeyEvent = (QKeyEvent*) theEvent; - if (aKeyEvent && (aKeyEvent->key() == Qt::Key_Return || - aKeyEvent->key() == Qt::Key_Enter)) { - // TODO: this is enter button processing when the focus is on "Apply" or "Cancel" buttons - //emit keyReleased("", (QKeyEvent*) theEvent); - return true; - } - } - } - return QDockWidget::eventFilter(theObject, theEvent); -} - QWidget* XGUI_PropertyPanel::contentWidget() { return myCustomWidget; @@ -142,17 +139,27 @@ QWidget* XGUI_PropertyPanel::contentWidget() void XGUI_PropertyPanel::updateContentWidget(FeaturePtr theFeature) { + // Invalid feature case on abort of the operation + if (theFeature.get() == NULL) + return; + if(!theFeature->data()) + return; foreach(ModuleBase_ModelWidget* eachWidget, myWidgets) { eachWidget->setFeature(theFeature); eachWidget->restoreValue(); } - // the repaint is used here to immediatelly react in GUI to the values change. + // the repaint is used here to immediately react in GUI to the values change. repaint(); } -void XGUI_PropertyPanel::onActivateNextWidget(ModuleBase_ModelWidget* theWidget) +void XGUI_PropertyPanel::activateNextWidget(ModuleBase_ModelWidget* theWidget) { + // TO CHECK: Editing operation does not have automatical activation of widgets + if (isEditingMode()) { + activateWidget(NULL); + return; + } ModuleBase_ModelWidget* aNextWidget = 0; QList::const_iterator anIt = myWidgets.begin(), aLast = myWidgets.end(); bool isFoundWidget = false; @@ -164,11 +171,89 @@ void XGUI_PropertyPanel::onActivateNextWidget(ModuleBase_ModelWidget* theWidget) } isFoundWidget = (*anIt) == theWidget; } - emit widgetActivated(aNextWidget); + // Normaly focusTo is enough to activate widget + // here is a special case on mouse click in the viewer + //if(aNextWidget == NULL) { + activateWidget(aNextWidget); + //} +} + +void XGUI_PropertyPanel::setStretchEnabled(bool isEnabled) +{ + if (myMainLayout->count() == 0) + return; + int aStretchIdx = myMainLayout->count() - 1; + bool hasStretch = myMainLayout->itemAt(aStretchIdx)->spacerItem() != NULL; + QLayoutItem* aChild; + if (isEnabled) { + if (!hasStretch) myMainLayout->addStretch(1); + } else if (hasStretch) { + aChild = myMainLayout->takeAt(aStretchIdx); + delete aChild; + } +} + +void XGUI_PropertyPanel::activateNextWidget() +{ + activateNextWidget(myActiveWidget); } void XGUI_PropertyPanel::setAcceptEnabled(bool isEnabled) { - QPushButton* anOkBtn = findChild(XGUI::PROP_PANEL_OK); + QPushButton* anOkBtn = findChild(PROP_PANEL_OK); anOkBtn->setEnabled(isEnabled); } + +void XGUI_PropertyPanel::activateWidget(ModuleBase_ModelWidget* theWidget) +{ + // Avoid activation of already actve widget. It could happen on focusIn event many times + if (theWidget == myActiveWidget) + return; + if(myActiveWidget) { + myActiveWidget->deactivate(); + myActiveWidget->setHighlighted(false); + } + if(theWidget) { + if (theWidget) + emit beforeWidgetActivated(theWidget); + theWidget->activate(); + theWidget->setHighlighted(true); + } + myActiveWidget = theWidget; + if (myActiveWidget) + emit widgetActivated(theWidget); + else if (!isEditingMode()) + emit noMoreWidgets(); +} + +void XGUI_PropertyPanel::setOkEnabled(bool theEnabled) +{ + QPushButton* anOkBtn = findChild(PROP_PANEL_OK); + anOkBtn->setEnabled(theEnabled); +} + +bool XGUI_PropertyPanel::isOkEnabled() const +{ + QPushButton* anOkBtn = findChild(PROP_PANEL_OK); + return anOkBtn->isEnabled(); +} + +void XGUI_PropertyPanel::setCancelEnabled(bool theEnabled) +{ + QPushButton* anCancelBtn = findChild(PROP_PANEL_CANCEL); + anCancelBtn->setEnabled(theEnabled); +} + +bool XGUI_PropertyPanel::isCancelEnabled() const +{ + QPushButton* anCancelBtn = findChild(PROP_PANEL_CANCEL); + return anCancelBtn->isEnabled(); +} + +void XGUI_PropertyPanel::setEditingMode(bool isEditing) +{ + ModuleBase_IPropertyPanel::setEditingMode(isEditing); + foreach(ModuleBase_ModelWidget* aWgt, myWidgets) { + aWgt->setEditingMode(isEditing); + } +}