X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSamplePanelPlugin%2FSamplePanelPlugin_WidgetCreator.cpp;h=108b857e700368e1936e4499f2474945a4030a57;hb=fc72d43b677baa05ae7fd317346fd8b723b799ed;hp=9389905cefbd2469a5d7826fd3c4357b880c2cef;hpb=3e040ca4c0ec763ad164a8aa81db539ecd57ea68;p=modules%2Fshaper.git diff --git a/src/SamplePanelPlugin/SamplePanelPlugin_WidgetCreator.cpp b/src/SamplePanelPlugin/SamplePanelPlugin_WidgetCreator.cpp old mode 100755 new mode 100644 index 9389905ce..108b857e7 --- a/src/SamplePanelPlugin/SamplePanelPlugin_WidgetCreator.cpp +++ b/src/SamplePanelPlugin/SamplePanelPlugin_WidgetCreator.cpp @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: SamplePanelPlugin_WidgetCreator.cpp -// Created: 29 Mar 2015 -// Author: Natalia ERMOLAEVA +// Copyright (C) 2014-2023 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, 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. +// +// 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 +// #include "SamplePanelPlugin_WidgetCreator.h" @@ -20,14 +33,17 @@ void SamplePanelPlugin_WidgetCreator::panelTypes(std::set& theTypes } QWidget* SamplePanelPlugin_WidgetCreator::createPanelByType(const std::string& theType, - QWidget* theParent) + QWidget* theParent, + const FeaturePtr& theFeature) { QWidget* aWidget = 0; if (myPanelTypes.find(theType) == myPanelTypes.end()) return aWidget; if (theType == "QtPanel") { - aWidget = new SamplePanelPlugin_Panel(theParent); + SamplePanelPlugin_Panel* aPanel = new SamplePanelPlugin_Panel(theParent); + aPanel->setFeature(theFeature); + aWidget = aPanel; } return aWidget;