Salome HOME
Before virtualization of SalomeContainerTools
[modules/yacs.git] / src / genericgui / EditionComponent.hxx
index c4c5bacffc7e32ef21f6d231737ee39b1e297c00..6da9982ee60a37ee31c4fcdf27dde99121559b0d 100644 (file)
@@ -1,38 +1,49 @@
-//  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2019  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.
+// 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.
+// 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
+// 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
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 #ifndef _EDITIONCOMPONENT_HXX_
 #define _EDITIONCOMPONENT_HXX_
 
 #include "ItemEdition.hxx"
+#include "FormComponent.hxx"
 
 namespace YACS
 {
   namespace HMI
   {
+    class PropertyEditor;
 
     class EditionComponent: public ItemEdition
     {
+      Q_OBJECT
     public:
       EditionComponent(Subject* subject,
-                  QWidget* parent = 0,
-                  const char* name = 0);
+                       QWidget* parent = 0,
+                       const char* name = 0);
       virtual ~EditionComponent();
+      virtual void update(GuiEvent event, int type, Subject* son);
+    protected:
+      PropertyEditor* _propeditor;
+      ComboBox* _cb_container;
+    public slots:
+      virtual void fillContainerPanel();
+      virtual void changeContainer(int index);
     };
   }
 }