X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_PropertyPanel.cpp;h=3ce0ed1713e41f3b2a26160b78c0b9e764042641;hb=b73fb7468bea81901dbeed8e229d742f788ec282;hp=9a5877369ba5a51254ba151fc696429a48688a00;hpb=5886d3bb6adb74533e2dbac1bcb0addcad68014a;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_PropertyPanel.cpp b/src/XGUI/XGUI_PropertyPanel.cpp old mode 100644 new mode 100755 index 9a5877369..3ce0ed171 --- a/src/XGUI/XGUI_PropertyPanel.cpp +++ b/src/XGUI/XGUI_PropertyPanel.cpp @@ -1,66 +1,127 @@ -/* - * XGUI_PropertyPanel.cpp - * - * Created on: Apr 29, 2014 - * Author: sbh - */ +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// +#include +#include +#include +#include #include -#include -#include +#include +#include +#include +#include -#include -#include +//#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include +#include + +#include #include -#include #include -#include -#include #include +#include +#include +#include +#include +#include +#include #ifdef _DEBUG #include #endif -XGUI_PropertyPanel::XGUI_PropertyPanel(QWidget* theParent) - : QDockWidget(theParent) +//#define DEBUG_TAB_WIDGETS + +//#define DEBUG_ACTIVE_WIDGET + +XGUI_PropertyPanel::XGUI_PropertyPanel(QWidget* theParent, XGUI_OperationMgr* theMgr) + : ModuleBase_IPropertyPanel(theParent), + myActiveWidget(NULL), + myPreselectionWidget(NULL), + myInternalActiveWidget(NULL), + myPanelPage(NULL), + myOperationMgr(theMgr) { - this->setWindowTitle(tr("Property Panel")); - QAction* aViewAct = this->toggleViewAction(); - this->setObjectName(XGUI::PROP_PANEL); + setWindowTitle(tr("Property Panel")); + QAction* aViewAct = toggleViewAction(); + setObjectName(PROP_PANEL); setStyleSheet("::title { position: relative; padding-left: 5px; text-align: left center }"); QWidget* aContent = new QWidget(this); - myMainLayout = new QVBoxLayout(aContent); - myMainLayout->setContentsMargins(3, 3, 3, 3); - this->setWidget(aContent); + QGridLayout* aMainLayout = new QGridLayout(aContent); + const int kPanelColumn = 0; + int aPanelRow = 0; + aMainLayout->setContentsMargins(3, 3, 3, 3); + setWidget(aContent); QFrame* aFrm = new QFrame(aContent); - aFrm->setFrameStyle(QFrame::Sunken); + aFrm->setFrameStyle(QFrame::Raised); aFrm->setFrameShape(QFrame::Panel); QHBoxLayout* aBtnLay = new QHBoxLayout(aFrm); - aBtnLay->setContentsMargins(0, 0, 0, 0); - myMainLayout->addWidget(aFrm); + ModuleBase_Tools::zeroMargins(aBtnLay); + aMainLayout->addWidget(aFrm, aPanelRow++, kPanelColumn); - QPushButton* aBtn = new QPushButton(QIcon(":pictures/button_help.png"), "", aFrm); - aBtn->setFlat(true); - aBtnLay->addWidget(aBtn); + myHeaderWidget = aFrm; + + QStringList aBtnNames; + aBtnNames << QString(PROP_PANEL_HELP) + << QString(PROP_PANEL_OK) + << QString(PROP_PANEL_OK_PLUS) + << QString(PROP_PANEL_CANCEL); + foreach(QString eachBtnName, aBtnNames) { + QToolButton* aBtn = new QToolButton(aFrm); + aBtn->setObjectName(eachBtnName); + aBtn->setAutoRaise(true); + aBtnLay->addWidget(aBtn); + } + aBtnLay->insertStretch(1, 1); + + myPanelPage = new ModuleBase_PageWidget(aContent); + myPanelPage->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::MinimumExpanding); + aMainLayout->addWidget(myPanelPage, aPanelRow, kPanelColumn); + + // spit to make the preview button on the bottom of the panel + aMainLayout->setRowStretch(aPanelRow++, 1); + + // preview button on the bottom of panel + aFrm = new QFrame(aContent); + aBtnLay = new QHBoxLayout(aFrm); aBtnLay->addStretch(1); - aBtn = new QPushButton(QIcon(":pictures/button_ok.png"), "", aFrm); - aBtn->setObjectName(XGUI::PROP_PANEL_OK); - aBtn->setToolTip(tr("Ok")); - aBtn->setFlat(true); - aBtnLay->addWidget(aBtn); + ModuleBase_Tools::zeroMargins(aBtnLay); + aMainLayout->addWidget(aFrm, aPanelRow++, kPanelColumn); - aBtn = new QPushButton(QIcon(":pictures/button_cancel.png"), "", aFrm); - aBtn->setToolTip(tr("Cancel")); - aBtn->setObjectName(XGUI::PROP_PANEL_CANCEL); - aBtn->setFlat(true); + QToolButton* aBtn = new QToolButton(aFrm); + aBtn->setObjectName(PROP_PANEL_PREVIEW); aBtnLay->addWidget(aBtn); - - myCustomWidget = new QWidget(aContent); - myMainLayout->addWidget(myCustomWidget); - myMainLayout->addStretch(1); } XGUI_PropertyPanel::~XGUI_PropertyPanel() @@ -69,42 +130,56 @@ XGUI_PropertyPanel::~XGUI_PropertyPanel() void XGUI_PropertyPanel::cleanContent() { - myWidgets.clear(); - qDeleteAll(myCustomWidget->children()); -} + if (myActiveWidget) + myActiveWidget->deactivate(); -void XGUI_PropertyPanel::setModelWidgets(const QList& theWidgets) -{ - myWidgets = theWidgets; - if (theWidgets.empty()) return; + XGUI_ActiveControlSelector* aPPSelector = XGUI_Tools::workshop(myOperationMgr->workshop())-> + activeControlMgr()->getSelector(XGUI_PropertyPanelSelector::Type()); + aPPSelector->reset(); // it removes need to be updated widget link - QList::const_iterator anIt = theWidgets.begin(), aLast = - theWidgets.end(); + /// as the widgets are deleted later, it is important that the signals + /// of these widgets are not processed. An example of the error is issue 986. + /// In the given case, the property panel is firstly filled by new widgets + /// of restarted operation and after that the mouse release signal come from + /// the widget of the previous operation (Point2d widget about mouse is released + /// and focus is out of this widget) + QList::const_iterator anIt = myWidgets.begin(), + aLast = myWidgets.end(); for (; anIt != aLast; anIt++) { - connect(*anIt, SIGNAL(keyReleased(QKeyEvent*)), this, SIGNAL(keyReleased(QKeyEvent*))); - - connect(*anIt, SIGNAL(focusOutWidget(ModuleBase_ModelWidget*)), this, - SLOT(onActivateNextWidget(ModuleBase_ModelWidget*))); - connect(*anIt, SIGNAL(focusInWidget(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&))); + QWidget* aWidget = *anIt; + if (aWidget) { + aWidget->blockSignals(true); + } } - 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); + myWidgets.clear(); + myPanelPage->clearPage(); + myActiveWidget = NULL; + emit propertyPanelDeactivated(); + myOperationMgr->workshop()->selectionActivate()->updateSelectionModes(); + myOperationMgr->workshop()->selectionActivate()->updateSelectionFilters(); +#ifdef DEBUG_ACTIVE_WIDGET + std::cout << "myActiveWidget = NULL" << std::endl; +#endif + + findButton(PROP_PANEL_PREVIEW)->setVisible(false); /// by default it is hidden + setWindowTitle(tr("Property Panel")); +} - setTabOrder(aLastControl, anOkBtn); - setTabOrder(anOkBtn, aCancelBtn); - } +void XGUI_PropertyPanel::setModelWidgets(const QList& theWidgets) +{ + myWidgets = theWidgets; + if (theWidgets.empty()) + return; + foreach (ModuleBase_ModelWidget* aWidget, theWidgets) { + connect(aWidget, SIGNAL(focusInWidget(ModuleBase_ModelWidget*)), + this, SLOT(onFocusInWidget(ModuleBase_ModelWidget*))); + connect(aWidget, SIGNAL(focusOutWidget(ModuleBase_ModelWidget*)), + this, SLOT(onActivateNextWidget(ModuleBase_ModelWidget*))); + connect(aWidget, SIGNAL(keyReleased(QObject*, QKeyEvent*)), + this, SIGNAL(keyReleased(QObject*, QKeyEvent*))); + connect(aWidget, SIGNAL(enterClicked(QObject*)), + this, SIGNAL(enterClicked(QObject*))); } } @@ -113,40 +188,454 @@ const QList& XGUI_PropertyPanel::modelWidgets() const return myWidgets; } -QWidget* XGUI_PropertyPanel::contentWidget() +ModuleBase_PageBase* XGUI_PropertyPanel::contentWidget() { - return myCustomWidget; + return static_cast(myPanelPage); } void XGUI_PropertyPanel::updateContentWidget(FeaturePtr theFeature) { - foreach(ModuleBase_ModelWidget* eachWidget, myWidgets) - { - eachWidget->setFeature(theFeature); + // Invalid feature case on abort of the operation + if (theFeature.get() == NULL) + return; + if (theFeature->isAction() || !theFeature->data()) + return; + foreach(ModuleBase_ModelWidget* eachWidget, myWidgets) { + if (!eachWidget->feature().get()) + 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::createContentPanel(FeaturePtr theFeature) +{ + // Invalid feature case on abort of the operation + if (theFeature.get() == NULL) + return; + if (theFeature->isAction() || !theFeature->data()) + return; + + if (myWidgets.empty()) { + ModuleBase_Operation* anOperation = myOperationMgr->currentOperation(); + QString aXmlRepr = anOperation->getDescription()->xmlRepresentation(); + + ModuleBase_WidgetFactory aFactory(aXmlRepr.toStdString(), myOperationMgr->workshop()); + aFactory.createPanel(contentWidget(), theFeature); + /// Apply button should be update if the feature was modified by the panel + myOperationMgr->onValidateOperation(); + } + std::shared_ptr aFeatureInfo = + myOperationMgr->workshop()->featureInfo(theFeature->getKind().c_str()); + if (aFeatureInfo.get()) + findButton(PROP_PANEL_OK_PLUS)->setVisible(aFeatureInfo->isApplyContinue()); +} + +ModuleBase_ModelWidget* XGUI_PropertyPanel::activeWidget(const bool isUseCustomWidget) const +{ + if (isUseCustomWidget && myInternalActiveWidget) + return myInternalActiveWidget; + + return myActiveWidget; +} + +void XGUI_PropertyPanel::activateNextWidget(ModuleBase_ModelWidget* theWidget) +{ + // it is possible that the property panel widgets have not been visualized + // (e.g. on start operation), so it is strictly important to do not check visualized state + activateNextWidget(theWidget, false); +} + +void XGUI_PropertyPanel::onFocusInWidget(ModuleBase_ModelWidget* theWidget) +{ +#ifdef DEBUG_ACTIVE_WIDGET + std::cout << "onFocusInWidget" << std::endl; +#endif + if (theWidget->canAcceptFocus()) + activateWidget(theWidget); +} + void XGUI_PropertyPanel::onActivateNextWidget(ModuleBase_ModelWidget* theWidget) { - ModuleBase_ModelWidget* aNextWidget = 0; + // this slot happens when some widget lost focus, the next widget which accepts the focus + // should be shown, so the second parameter is true + // it is important for features where in cases the same attributes are used, isCase for this + // attribute returns true, however it can be placed in hidden stack widget(extrusion: elements, + // sketch multi rotation -> single/full point) + // it is important to check the widget visibility to do not check of the next widget visible + // state if the current is not shown. (example: sketch circle re-entrant operation after mouse + // release in the viewer, next, radius, + // widget should be activated but the first is not visualized) + bool isVisible = theWidget->isVisible(); + activateNextWidget(theWidget, isVisible); +} + + +void XGUI_PropertyPanel::activateNextWidget(ModuleBase_ModelWidget* theWidget, + const bool isCheckVisibility) +{ + // TO CHECK: Editing operation does not have automatical activation of widgets + if (isEditingMode()) { + activateWidget(NULL); + return; + } + ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators(); + QList::const_iterator anIt = myWidgets.begin(), aLast = myWidgets.end(); bool isFoundWidget = false; - for (; anIt != aLast && !aNextWidget; anIt++) { + ModuleBase_Tools::activateWindow(this, "XGUI_PropertyPanel::activateNextWidget()"); + for (; anIt != aLast; anIt++) { + ModuleBase_ModelWidget* aCurrentWidget = *anIt; if (isFoundWidget || !theWidget) { - if ((*anIt)->focusTo()) { - aNextWidget = *anIt; + + if (!aValidators->isCase(aCurrentWidget->feature(), aCurrentWidget->attributeID())) + continue; // this attribute does not participate in the current case + if (isCheckVisibility && !aCurrentWidget->isInternal()) { + if (!aCurrentWidget->isVisible()) + continue; + } + if (!aCurrentWidget->isObligatory()) + continue; // not obligatory widgets are not activated automatically + + if (!aCurrentWidget->canAcceptFocus()) + continue; // do not set focus if it can not be accepted, case: optional choice + + if (aCurrentWidget->focusTo()) { + aCurrentWidget->emitFocusInWidget(); + return; + } + } + isFoundWidget = isFoundWidget || (*anIt) == theWidget; + } + // set focus to Ok/Cancel button in Property panel if there are no more active widgets + // it should be performed before activateWidget(NULL) because it emits some signals which + // can be processed by moudule for example as to activate another widget with setting focus + QWidget* aNewFocusWidget = 0; + QToolButton* anOkBtn = findButton(PROP_PANEL_OK); + if (anOkBtn->isEnabled()) + aNewFocusWidget = anOkBtn; + else { + QToolButton* aCancelBtn = findButton(PROP_PANEL_CANCEL); + if (aCancelBtn->isEnabled()) + aNewFocusWidget = aCancelBtn; + } + if (aNewFocusWidget) + ModuleBase_Tools::setFocus(aNewFocusWidget, "XGUI_PropertyPanel::activateNextWidget"); + + activateWidget(NULL); +} + +void findDirectChildren(QWidget* theParent, QList& theWidgets, const bool theDebug) +{ + QList aWidgets; + + if (theParent) { + QLayout* aLayout = theParent->layout(); + if (aLayout) { + for (int i = 0, aCount = aLayout->count(); i < aCount; i++) { + QLayoutItem* anItem = aLayout->itemAt(i); + QWidget* aWidget = anItem ? anItem->widget() : 0; + if (aWidget) { + if (aWidget->isVisible()) { + if (aWidget->focusPolicy() != Qt::NoFocus) + theWidgets.append(aWidget); + findDirectChildren(aWidget, theWidgets, false); + } + } + else if (anItem->layout()) { + QLayout* aLayout = anItem->layout(); + for (int i = 0, aCount = aLayout->count(); i < aCount; i++) { + QLayoutItem* anItem = aLayout->itemAt(i); + QWidget* aWidget = anItem ? anItem->widget() : 0; + if (aWidget) { + if (aWidget->isVisible()) { + if (aWidget->focusPolicy() != Qt::NoFocus) + theWidgets.append(aWidget); + findDirectChildren(aWidget, theWidgets, false); + } + } + else { + // TODO: improve recursive search for the case when here QLayout is used + // currently, the switch widget uses only 1 level of qlayout in qlayout using for + // example for construction plane feature. If there are more levels, + // it should be implemented here + } + } + } + } + } + } +#ifdef DEBUG_TAB_WIDGETS + if (theDebug) { + QStringList aWidgetTypes; + QList::const_iterator anIt = theWidgets.begin(), aLast = theWidgets.end(); + for (; anIt != aLast; anIt++) { + QWidget* aWidget = *anIt; + if (aWidget) + aWidgetTypes.append(aWidget->objectName()); + } + QString anInfo = QString("theWidgets[%1]: %2") + .arg(theWidgets.count()).arg(aWidgetTypes.join(",")); + qDebug(anInfo.toStdString().c_str()); + } +#endif +} + +bool XGUI_PropertyPanel::setFocusNextPrevChild(bool theIsNext) +{ + return focusNextPrevChild(theIsNext); +} + +bool XGUI_PropertyPanel::focusNextPrevChild(bool theIsNext) +{ + // it wraps the Tabs clicking to follow in the chain: + // controls, last control, Apply, Cancel, first control, controls + bool isChangedFocus = false; + + QWidget* aFocusWidget = focusWidget(); +#ifdef DEBUG_TAB_WIDGETS + if (aFocusWidget) { + QString anInfo = QString("focus Widget: %1").arg(aFocusWidget->objectName()); + qDebug(anInfo.toStdString().c_str()); + } +#endif + ModuleBase_ModelWidget* aFocusMWidget = ModuleBase_ModelWidget::findModelWidget(this, + aFocusWidget); + //if (aFocusMWidget) + // aFocusMWidget->setHighlighted(false); + + QWidget* aNewFocusWidget = 0; + if (aFocusWidget) { + QList aChildren; + findDirectChildren(this, aChildren, true); + int aChildrenCount = aChildren.count(); + int aFocusWidgetIndex = aChildren.indexOf(aFocusWidget); + QToolButton* anOkBtn = findButton(PROP_PANEL_OK); + if (aFocusWidgetIndex >= 0) { + if (theIsNext) { + if (aFocusWidgetIndex == aChildrenCount-1) { + // after the last widget focus should be set to "Apply" + if (anOkBtn->isEnabled()) + aNewFocusWidget = anOkBtn; + else { + QToolButton* aCancelBtn = findButton(PROP_PANEL_CANCEL); + if (aCancelBtn->isEnabled()) + aNewFocusWidget = aCancelBtn; + } + } + else { + aNewFocusWidget = aChildren[aFocusWidgetIndex+1]; + } + } + else { + if (aFocusWidgetIndex == 0) { + // before the first widget, the last should accept focus + aNewFocusWidget = aChildren[aChildrenCount - 1]; + } + else { + // before the "Apply" button, the last should accept focus for consistency with "Next" + if (aFocusWidget == anOkBtn) { + aNewFocusWidget = aChildren[aChildrenCount - 1]; + } + else { + aNewFocusWidget = aChildren[aFocusWidgetIndex-1]; + } + } + } + } + } + if (aNewFocusWidget) { + if (myActiveWidget) { + bool isFirstControl = !theIsNext; + QWidget* aLastFocusControl = myActiveWidget->getControlAcceptingFocus(isFirstControl); + if (aFocusWidget == aLastFocusControl) { + setActiveWidget(NULL, false); } } - isFoundWidget = (*anIt) == theWidget; + + // we want to have property panel as an active window to enter values in double control + ModuleBase_Tools::setFocus(aNewFocusWidget, "XGUI_PropertyPanel::focusNextPrevChild()"); + + ModuleBase_ModelWidget* aNewFocusMWidget = ModuleBase_ModelWidget::findModelWidget(this, + aNewFocusWidget); + if (aNewFocusMWidget) { + if (aFocusMWidget) { + aFocusMWidget->setHighlighted(false); + } + aNewFocusMWidget->emitFocusInWidget(); + isChangedFocus = true; + } + } + return isChangedFocus; +} + +void XGUI_PropertyPanel::activateNextWidget() +{ + activateNextWidget(myActiveWidget); +} + +void XGUI_PropertyPanel::activateWidget(ModuleBase_ModelWidget* theWidget, const bool theEmitSignal) +{ + std::string aPreviosAttributeID; + if(myActiveWidget) + aPreviosAttributeID = myActiveWidget->attributeID(); + + // Avoid activation of already actve widget. It could happen on focusIn event many times + setActiveWidget(theWidget, theEmitSignal); +} + +bool XGUI_PropertyPanel::setActiveWidget(ModuleBase_ModelWidget* theWidget, const bool isEmitSignal) +{ + // Avoid activation of already actve widget. It could happen on focusIn event many times + if (theWidget == myActiveWidget) { + return false; + } + std::string aPreviosAttributeID; + ModuleBase_ModelWidget* aDeactivatedWidget = NULL, *anActivatedWidget = NULL; + if(myActiveWidget) { + aPreviosAttributeID = myActiveWidget->attributeID(); + myActiveWidget->processValueState(); + myActiveWidget->deactivate(); + myActiveWidget->setHighlighted(false); + aDeactivatedWidget = myActiveWidget; + } + if(theWidget) { + emit beforeWidgetActivated(theWidget); + theWidget->setHighlighted(true); + theWidget->activate(); + anActivatedWidget = theWidget; + } + myActiveWidget = theWidget; + +#ifdef DEBUG_ACTIVE_WIDGET + std::cout << "myActiveWidget = " << (theWidget ? theWidget->context().c_str() : "") << std::endl; +#endif + bool aHasMoreWidgets = true; + if (isEmitSignal) { + //emit widgetActivated(myActiveWidget); + if (!myActiveWidget && !isEditingMode()) { + aHasMoreWidgets = false; + emit noMoreWidgets(aPreviosAttributeID); + } + } + if (myActiveWidget) + emit propertyPanelActivated(); + else + emit propertyPanelDeactivated(); + myOperationMgr->workshop()->selectionActivate()->updateSelectionModes(); + myOperationMgr->workshop()->selectionActivate()->updateSelectionFilters(); + + if (aHasMoreWidgets && aDeactivatedWidget) + aDeactivatedWidget->updateAfterDeactivation(); + if (aHasMoreWidgets && anActivatedWidget) + anActivatedWidget->updateAfterActivation(); + + if (aHasMoreWidgets && myActiveWidget) + { + // restore widget selection should be done after selection modes of widget activating + static Events_ID anEvent = Events_Loop::eventByName(EVENT_UPDATE_BY_WIDGET_SELECTION); + Events_Loop::loop()->flush(anEvent); } - emit widgetActivated(aNextWidget); + return true; +} + +void XGUI_PropertyPanel::setFocusOnOkButton() +{ + QToolButton* anOkBtn = findButton(PROP_PANEL_OK); + ModuleBase_Tools::setFocus(anOkBtn, "XGUI_PropertyPanel::setFocusOnOkButton()"); +} + +void XGUI_PropertyPanel::setCancelEnabled(bool theEnabled) +{ + QToolButton* anCancelBtn = findButton(PROP_PANEL_CANCEL); + anCancelBtn->setEnabled(theEnabled); +} + +bool XGUI_PropertyPanel::isCancelEnabled() const +{ + QToolButton* anCancelBtn = findButton(PROP_PANEL_CANCEL); + return anCancelBtn->isEnabled(); +} + +void XGUI_PropertyPanel::setEditingMode(bool isEditing) +{ + ModuleBase_IPropertyPanel::setEditingMode(isEditing); + foreach(ModuleBase_ModelWidget* aWgt, myWidgets) { + aWgt->setEditingMode(isEditing); + } +} + +void XGUI_PropertyPanel::setupActions(XGUI_ActionsMgr* theMgr) +{ + QStringList aButtonNames; + aButtonNames << PROP_PANEL_OK<< PROP_PANEL_OK_PLUS << PROP_PANEL_CANCEL + << PROP_PANEL_HELP << PROP_PANEL_PREVIEW; + QList aActionIds; + aActionIds << XGUI_ActionsMgr::Accept << XGUI_ActionsMgr::AcceptPlus << XGUI_ActionsMgr::Abort + << XGUI_ActionsMgr::Help << XGUI_ActionsMgr::Preview; + for (int i = 0; i < aButtonNames.size(); ++i) { + QToolButton* aBtn = findButton(aButtonNames.at(i).toStdString().c_str()); + QAction* anAct = theMgr->operationStateAction(aActionIds.at(i)); + aBtn->setDefaultAction(anAct); + } +} + +void XGUI_PropertyPanel::onAcceptData() +{ + foreach (ModuleBase_ModelWidget* aWidget, myWidgets) { + aWidget->onFeatureAccepted(); + } +} + +void XGUI_PropertyPanel::setInternalActiveWidget(ModuleBase_ModelWidget* theWidget) +{ + if (theWidget) + { + myInternalActiveWidget = theWidget; + emit propertyPanelActivated(); + } + else + { + if (myInternalActiveWidget) + { + delete myInternalActiveWidget; + myInternalActiveWidget = 0; + } + emit propertyPanelDeactivated(); + } + myOperationMgr->workshop()->selectionActivate()->updateSelectionModes(); + myOperationMgr->workshop()->selectionActivate()->updateSelectionFilters(); +} + +ModuleBase_ModelWidget* XGUI_PropertyPanel::preselectionWidget() const +{ + return myPreselectionWidget; +} + +void XGUI_PropertyPanel::setPreselectionWidget(ModuleBase_ModelWidget* theWidget) +{ + myPreselectionWidget = theWidget; +} + + +void XGUI_PropertyPanel::closeEvent(QCloseEvent* theEvent) +{ + ModuleBase_Operation* aOp = myOperationMgr->currentOperation(); + if (aOp) { + if (myOperationMgr->canStopOperation(aOp)) { + myOperationMgr->abortOperation(aOp); + if (myOperationMgr->hasOperation()) + theEvent->ignore(); + else + theEvent->accept(); + } else + theEvent->ignore(); + } else + ModuleBase_IPropertyPanel::closeEvent(theEvent); } -void XGUI_PropertyPanel::setAcceptEnabled(bool isEnabled) +QToolButton* XGUI_PropertyPanel::findButton(const char* theInternalName) const { - QPushButton* anOkBtn = findChild(XGUI::PROP_PANEL_OK); - anOkBtn->setEnabled(isEnabled); + return findChild(theInternalName); }