X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetChoice.h;h=742a4cea08e33dbe0f70eca151984339f704ffe5;hb=06e7f5859095193fc7f498bd89a7d28009794f53;hp=cd0fa9521b1848d7b68b96f0164811d9bd31c8a9;hpb=a94fc319f2aa64b43c9a73b5ff7063923648faec;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetChoice.h b/src/ModuleBase/ModuleBase_WidgetChoice.h index cd0fa9521..742a4cea0 100644 --- a/src/ModuleBase/ModuleBase_WidgetChoice.h +++ b/src/ModuleBase/ModuleBase_WidgetChoice.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2023 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,10 +12,9 @@ // // 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 +// 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 ModuleBase_WidgetChoice_H @@ -25,9 +24,7 @@ #include "ModuleBase_ModelWidget.h" class QWidget; -class QLabel; -class QComboBox; -class QButtonGroup; +class ModuleBase_ChoiceCtrl; /** * \ingroup GUI @@ -73,6 +70,9 @@ Q_OBJECT /// \return the title value QString getPropertyPanelTitle(int theIndex); + /// The slot is called when user press Ok or OkPlus buttons in the parent property panel + virtual void onFeatureAccepted(); + signals: /// Segnal about selected item /// \param theWidget selected widget @@ -91,15 +91,15 @@ private slots: void onCurrentIndexChanged(int theIndex); private: - /// The label - QLabel* myLabel; - - /// The control - QComboBox* myCombo; - QButtonGroup* myButtons; + ModuleBase_ChoiceCtrl* myChoiceCtrl; // XML definition of titles QStringList myButtonTitles; + std::string myStringListAttribute; + + bool myIsFirst; + int myDefValue; + bool myHasValue; }; #endif