X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_PropertyPanel.cpp;h=4760cffb5a5fe2c8b32bd739a84306e51d5d2dbd;hb=8f09d362a50ccbc085841c24af2e755121e458ba;hp=09a6c727ebe6041d521876455d977f1bb13a0e53;hpb=8c37fcd892dbda4a381c3966847c982f28c4ab57;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_PropertyPanel.cpp b/src/XGUI/XGUI_PropertyPanel.cpp index 09a6c727e..4760cffb5 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 * @@ -5,75 +7,234 @@ * Author: sbh */ -#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) + : ModuleBase_IPropertyPanel(theParent), + myActiveWidget(NULL), + myPreselectionWidget(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); - QVBoxLayout* aMainLay = new QVBoxLayout(aContent); - aMainLay->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); - aMainLay->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->setFlat(true); - aBtnLay->addWidget(aBtn); - aBtn = new QPushButton(QIcon(":pictures/button_cancel.png"), "", aFrm); - aBtn->setObjectName(XGUI::PROP_PANEL_CANCEL); - aBtn->setFlat(true); - aBtnLay->addWidget(aBtn); - - myCustomWidget = new QWidget(aContent); - aMainLay->addWidget(myCustomWidget); - aMainLay->addStretch(1); + ModuleBase_Tools::zeroMargins(aBtnLay); + aMainLayout->addWidget(aFrm, aPanelRow++, kPanelColumn); + + myHeaderWidget = aFrm; + + 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() { } +void XGUI_PropertyPanel::cleanContent() +{ + if (myActiveWidget) + myActiveWidget->deactivate(); + myWidgets.clear(); + myPanelPage->clearPage(); + myActiveWidget = NULL; + setWindowTitle(tr("Property Panel")); +} + 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(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) { + QList aControls = aLastWidget->getControls(); + if (!aControls.empty()) { + QWidget* aLastControl = aControls.last(); + + QToolButton* anOkBtn = findChild(PROP_PANEL_OK); + QToolButton* aCancelBtn = findChild(PROP_PANEL_CANCEL); + + setTabOrder(aLastControl, anOkBtn); + setTabOrder(anOkBtn, aCancelBtn); + } + } } -QWidget* XGUI_PropertyPanel::contentWidget() +const QList& XGUI_PropertyPanel::modelWidgets() const { - return myCustomWidget; + return myWidgets; } -void XGUI_PropertyPanel::updateContentWidget(boost::shared_ptr theFeature) +ModuleBase_PageBase* XGUI_PropertyPanel::contentWidget() { + + return static_cast(myPanelPage); +} + +void XGUI_PropertyPanel::updateContentWidget(FeaturePtr 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) { - eachWidget->restoreValue(theFeature); + if (!eachWidget->feature().get()) + eachWidget->setFeature(theFeature); + eachWidget->restoreValue(); + } + // the repaint is used here to immediately react in GUI to the values change. + repaint(); +} + +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; + for (; anIt != aLast && !aNextWidget; anIt++) { + if (isFoundWidget || !theWidget) { + if ((*anIt)->focusTo()) { + aNextWidget = *anIt; + } + } + isFoundWidget = (*anIt) == theWidget; + } + // 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::activateNextWidget() +{ + activateNextWidget(myActiveWidget); +} + +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; + 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); } } + +ModuleBase_ModelWidget* XGUI_PropertyPanel::preselectionWidget() const +{ + return myPreselectionWidget; +} + +void XGUI_PropertyPanel::setPreselectionWidget(ModuleBase_ModelWidget* theWidget) +{ + myPreselectionWidget = theWidget; +}