]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Unused method removed from the property panel
authorsbh <sergey.belash@opencascade.com>
Fri, 19 Sep 2014 15:31:58 +0000 (19:31 +0400)
committersbh <sergey.belash@opencascade.com>
Fri, 19 Sep 2014 15:31:58 +0000 (19:31 +0400)
src/XGUI/XGUI_PropertyPanel.cpp
src/XGUI/XGUI_PropertyPanel.h

index dd3cc642da41886a793674850d7f4a41948837c4..126f87610d2c349aa3fc462663e0d34e5c75f191 100644 (file)
@@ -51,7 +51,6 @@ XGUI_PropertyPanel::XGUI_PropertyPanel(QWidget* theParent)
   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"));
@@ -62,8 +61,6 @@ XGUI_PropertyPanel::XGUI_PropertyPanel(QWidget* theParent)
   myCustomWidget = new QWidget(aContent);
   myMainLayout->addWidget(myCustomWidget);
   myMainLayout->addStretch(1);
-
-  aBtn->installEventFilter(this);
 }
 
 XGUI_PropertyPanel::~XGUI_PropertyPanel()
@@ -117,24 +114,6 @@ const QList<ModuleBase_ModelWidget*>& XGUI_PropertyPanel::modelWidgets() const
   return myWidgets;
 }
 
-bool XGUI_PropertyPanel::eventFilter(QObject *theObject, QEvent *theEvent)
-{
-  QPushButton* anOkBtn = findChild<QPushButton*>(XGUI::PROP_PANEL_OK);
-  QPushButton* aCancelBtn = findChild<QPushButton*>(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;
index c292321105817d2fc898a13ab630f8c1f0a2efa4..a660b5484bf27c4a1bff6301da766f4f4ed39ced 100644 (file)
@@ -25,14 +25,17 @@ Q_OBJECT
   XGUI_PropertyPanel(QWidget* theParent);
   virtual ~XGUI_PropertyPanel();
 
+  /// Returns main widget of the property panel, which children will be created
+  /// by WidgetFactory using the XML definition
   QWidget* contentWidget();
+  /// Brings back all widget created by widget factory for signal/slot
+  /// connections and further processing
   void setModelWidgets(const QList<ModuleBase_ModelWidget*>& theWidgets);
+  /// Returns all property panel's widget created by WidgetFactory
   const QList<ModuleBase_ModelWidget*>& modelWidgets() const;
-
+  /// Removes all widgets in the widget area of the property panel
   void cleanContent();
 
-  virtual bool eventFilter(QObject *theObject, QEvent *theEvent);
-
  public slots:
   void updateContentWidget(FeaturePtr theFeature);
   /// slot to activate the next widget in the property panel
@@ -56,9 +59,7 @@ signals:
 
  private:
   QWidget* myCustomWidget;
-
   QList<ModuleBase_ModelWidget*> myWidgets;
-
   QVBoxLayout* myMainLayout;
 };