X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fgenericgui%2FEditionComponent.hxx;h=6da9982ee60a37ee31c4fcdf27dde99121559b0d;hb=fbc4862b8d9d3803c5058c2d77e341b0cc3b1313;hp=c4c5bacffc7e32ef21f6d231737ee39b1e297c00;hpb=f4c10bf1781a76534bb1fa293aef541aef56148b;p=modules%2Fyacs.git diff --git a/src/genericgui/EditionComponent.hxx b/src/genericgui/EditionComponent.hxx index c4c5bacff..6da9982ee 100644 --- a/src/genericgui/EditionComponent.hxx +++ b/src/genericgui/EditionComponent.hxx @@ -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); }; } }