X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModuleBase%2FModuleBase_IPropertyPanel.h;h=803b520e41cc79f81612d72e9feaa775b5e898ca;hb=4725b6d71721fcbfc2172f4cca67af92cd14854e;hp=c9f51e1224e2ba79976de4aab0f46f8c9facc9b1;hpb=4049559747c32c5ec443cf3d60501bc64a17e58a;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IPropertyPanel.h b/src/ModuleBase/ModuleBase_IPropertyPanel.h index c9f51e122..803b520e4 100644 --- a/src/ModuleBase/ModuleBase_IPropertyPanel.h +++ b/src/ModuleBase/ModuleBase_IPropertyPanel.h @@ -1,11 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -/* - * ModuleBase_IPropertyPanel.h - * - * Created on: Oct 01, 2014 - * Author: vsv - */ +// Copyright (C) 2014-2022 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 +// #ifndef ModuleBase_PROPERTYPANEL_H_ #define ModuleBase_PROPERTYPANEL_H_ @@ -32,12 +42,19 @@ public: /// Returns header widget virtual QWidget* headerWidget() const = 0; - /// Returns currently active widget - virtual ModuleBase_ModelWidget* activeWidget() const = 0; + /// Returns currently active widget. This is a widget from internal container of widgets + /// (myWidgets) activated/deactivated by focus in property panel. If parameter is true, + /// the method finds firstly the custom widget, after the direct active widget. + /// \param isUseCustomWidget boolean state if the custom widget might be a result + virtual ModuleBase_ModelWidget* activeWidget(const bool isUseCustomWidget = false) const = 0; /// Returns all property panel's widget created by WidgetFactory virtual const QList& modelWidgets() const = 0; + /// Returns widget, that has the given attribute index + /// \param theAttributeId an attribute from XML + virtual ModuleBase_ModelWidget* modelWidget(const std::string& theAttributeId) const; + /// Removes all widgets in the widget area of the property panel virtual void cleanContent() = 0; @@ -64,11 +81,17 @@ public: /// Sets widget processed by preselection virtual void setPreselectionWidget(ModuleBase_ModelWidget* theWidget) = 0; - /// Returns the first widget, where canSetValue returns true + /// Returns the first widget, where canAcceptFocus returns true /// \return a widget or null ModuleBase_ModelWidget* findFirstAcceptingValueWidget(); - /// Returns the first widget, where canSetValue returns true + /// The method is called on accepting of operation + virtual void onAcceptData() = 0; + + /// Returns True if data of its feature was modified during operation + virtual bool isModified() const; + + /// Returns the first widget, where canAcceptFocus returns true /// \return a widget or null static ModuleBase_ModelWidget* findFirstAcceptingValueWidget( const QList& theWidgets); @@ -85,7 +108,7 @@ signals: /// The signal about the widget activation /// \param theWidget the activated widget - void widgetActivated(ModuleBase_ModelWidget* theWidget); + //void widgetActivated(ModuleBase_ModelWidget* theWidget); /// Emited when there is no next widget /// \param thePreviousAttributeID an attribute key of the previous active widget @@ -102,7 +125,6 @@ public slots: /** * Makes the given widget active, highlights it and removes * highlighting from the previous active widget - * emits widgetActivated(theWidget) signal * \param theWidget which has to be activated * \param theEmitSignal a flag to prohibit signal emit */