X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_PropertyPanel.cpp;h=26ea5d021e587ad4a7a5820c1b3373a5e38bdb2f;hb=6ac73f31213a0faadd92eed42e4e27d1b0820eaf;hp=94712d811a10ed6f52df4a2fb43c0a8586d70d40;hpb=758a57d77b6fa3a0485fa3378a1280c7e87a74aa;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_PropertyPanel.cpp b/src/XGUI/XGUI_PropertyPanel.cpp index 94712d811..26ea5d021 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,17 +8,24 @@ */ #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 @@ -24,45 +33,43 @@ XGUI_PropertyPanel::XGUI_PropertyPanel(QWidget* theParent) : ModuleBase_IPropertyPanel(theParent), - myActiveWidget(NULL) + myActiveWidget(NULL), + myPanelPage(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); - myMainLayout = new QVBoxLayout(aContent); - myMainLayout->setContentsMargins(3, 3, 3, 3); + QGridLayout* aMainLayout = new QGridLayout(aContent); + const int kPanelColumn = 0; + int aPanelRow = 0; + aMainLayout->setContentsMargins(3, 3, 3, 3); this->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); - - QPushButton* aBtn = new QPushButton(QIcon(":pictures/button_help.png"), "", aFrm); - aBtn->setFlat(true); - aBtnLay->addWidget(aBtn); - 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); - - aBtn = new QPushButton(QIcon(":pictures/button_cancel.png"), "", aFrm); - aBtn->setToolTip(tr("Cancel")); - aBtn->setObjectName(XGUI::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); + ModuleBase_Tools::zeroMargins(aBtnLay); + aMainLayout->addWidget(aFrm, aPanelRow++, kPanelColumn); + + QStringList aBtnNames; + aBtnNames << QString(PROP_PANEL_HELP) + << QString(PROP_PANEL_OK) + << 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); } XGUI_PropertyPanel::~XGUI_PropertyPanel() @@ -71,31 +78,25 @@ XGUI_PropertyPanel::~XGUI_PropertyPanel() void XGUI_PropertyPanel::cleanContent() { + if (myActiveWidget) + myActiveWidget->deactivate(); myWidgets.clear(); - qDeleteAll(myCustomWidget->children()); + myPanelPage->clearPage(); myActiveWidget = NULL; + setWindowTitle(tr("Property Panel")); } void XGUI_PropertyPanel::setModelWidgets(const QList& theWidgets) { myWidgets = theWidgets; - int aS = myWidgets.size(); if (theWidgets.empty()) return; - - 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*))); - - ModuleBase_WidgetPoint2D* aPointWidget = dynamic_cast(*anIt); - if (aPointWidget) - connect(aPointWidget, SIGNAL(storedPoint2D(ObjectPtr, const std::string&)), this, - SIGNAL(storedPoint2D(ObjectPtr, const std::string&))); + foreach (ModuleBase_ModelWidget* aWidget, theWidgets) { + connect(aWidget, SIGNAL(focusInWidget(ModuleBase_ModelWidget*)), + this, SLOT(activateWidget(ModuleBase_ModelWidget*))); + connect(aWidget, SIGNAL(focusOutWidget(ModuleBase_ModelWidget*)), + this, SLOT(activateNextWidget(ModuleBase_ModelWidget*))); + connect(aWidget, SIGNAL(keyReleased(QKeyEvent*)), + this, SIGNAL(keyReleased(QKeyEvent*))); } ModuleBase_ModelWidget* aLastWidget = theWidgets.last(); if (aLastWidget) { @@ -103,8 +104,8 @@ void XGUI_PropertyPanel::setModelWidgets(const QList& t if (!aControls.empty()) { QWidget* aLastControl = aControls.last(); - QPushButton* anOkBtn = findChild(XGUI::PROP_PANEL_OK); - QPushButton* aCancelBtn = findChild(XGUI::PROP_PANEL_CANCEL); + QToolButton* anOkBtn = findChild(PROP_PANEL_OK); + QToolButton* aCancelBtn = findChild(PROP_PANEL_CANCEL); setTabOrder(aLastControl, anOkBtn); setTabOrder(anOkBtn, aCancelBtn); @@ -117,15 +118,20 @@ 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) - { + // Invalid feature case on abort of the operation + if (theFeature.get() == NULL) + return; + if (theFeature->isAction() || !theFeature->data()) + return; + foreach(ModuleBase_ModelWidget* eachWidget, myWidgets) { eachWidget->setFeature(theFeature); eachWidget->restoreValue(); } @@ -135,6 +141,11 @@ void XGUI_PropertyPanel::updateContentWidget(FeaturePtr theFeature) 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; @@ -149,7 +160,7 @@ void XGUI_PropertyPanel::activateNextWidget(ModuleBase_ModelWidget* theWidget) // Normaly focusTo is enough to activate widget // here is a special case on mouse click in the viewer if(aNextWidget == NULL) { - activateWidget(NULL); + activateWidget(aNextWidget); } } @@ -158,20 +169,58 @@ void XGUI_PropertyPanel::activateNextWidget() activateNextWidget(myActiveWidget); } -void XGUI_PropertyPanel::setAcceptEnabled(bool isEnabled) -{ - QPushButton* anOkBtn = findChild(XGUI::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) { + emit beforeWidgetActivated(theWidget); theWidget->setHighlighted(true); + theWidget->activate(); } myActiveWidget = theWidget; - emit widgetActivated(theWidget); + if (myActiveWidget) { + emit widgetActivated(theWidget); + } else if (!isEditingMode()) { + emit noMoreWidgets(); + } +} + +void XGUI_PropertyPanel::setCancelEnabled(bool theEnabled) +{ + QToolButton* anCancelBtn = findChild(PROP_PANEL_CANCEL); + anCancelBtn->setEnabled(theEnabled); +} + +bool XGUI_PropertyPanel::isCancelEnabled() const +{ + QToolButton* 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); + } +} + +void XGUI_PropertyPanel::setupActions(XGUI_ActionsMgr* theMgr) +{ + QStringList aButtonNames; + aButtonNames << PROP_PANEL_OK << PROP_PANEL_CANCEL << PROP_PANEL_HELP; + QList aActionIds; + aActionIds << XGUI_ActionsMgr::Accept << XGUI_ActionsMgr::Abort << XGUI_ActionsMgr::Help; + for (int i = 0; i < aButtonNames.size(); ++i) { + QToolButton* aBtn = findChild(aButtonNames.at(i)); + QAction* anAct = theMgr->operationStateAction(aActionIds.at(i)); + aBtn->setDefaultAction(anAct); + } }