]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Issue #1834: Fix length of lines
authorvsv <vitaly.smetannikov@opencascade.com>
Thu, 3 Nov 2016 15:44:17 +0000 (18:44 +0300)
committervsv <vitaly.smetannikov@opencascade.com>
Thu, 3 Nov 2016 15:47:25 +0000 (18:47 +0300)
58 files changed:
src/ModuleBase/ModuleBase_ActionInfo.cpp
src/ModuleBase/ModuleBase_ActionInfo.h
src/ModuleBase/ModuleBase_FilterFactory.cpp
src/ModuleBase/ModuleBase_FilterValidated.h
src/ModuleBase/ModuleBase_IModule.h
src/ModuleBase/ModuleBase_IPropertyPanel.cpp
src/ModuleBase/ModuleBase_ISelection.h
src/ModuleBase/ModuleBase_IViewer.h
src/ModuleBase/ModuleBase_ModelWidget.cpp
src/ModuleBase/ModuleBase_ModelWidget.h
src/ModuleBase/ModuleBase_OperationAction.cpp
src/ModuleBase/ModuleBase_OperationFeature.cpp
src/ModuleBase/ModuleBase_PageBase.cpp
src/ModuleBase/ModuleBase_PageBase.h
src/ModuleBase/ModuleBase_PageGroupBox.cpp
src/ModuleBase/ModuleBase_PageGroupBox.h
src/ModuleBase/ModuleBase_PageWidget.cpp
src/ModuleBase/ModuleBase_PageWidget.h
src/ModuleBase/ModuleBase_PagedContainer.cpp
src/ModuleBase/ModuleBase_PagedContainer.h
src/ModuleBase/ModuleBase_ParamIntSpinBox.cpp
src/ModuleBase/ModuleBase_ParamIntSpinBox.h
src/ModuleBase/ModuleBase_ParamSpinBox.cpp
src/ModuleBase/ModuleBase_ParamSpinBox.h
src/ModuleBase/ModuleBase_Preferences.cpp
src/ModuleBase/ModuleBase_ResultPrs.cpp
src/ModuleBase/ModuleBase_ResultPrs.h
src/ModuleBase/ModuleBase_SelectionValidator.cpp
src/ModuleBase/ModuleBase_SelectionValidator.h
src/ModuleBase/ModuleBase_Tools.h
src/ModuleBase/ModuleBase_ViewerFilters.cpp
src/ModuleBase/ModuleBase_ViewerFilters.h
src/ModuleBase/ModuleBase_WidgetConcealedObjects.cpp
src/ModuleBase/ModuleBase_WidgetCreatorFactory.cpp
src/ModuleBase/ModuleBase_WidgetCreatorFactory.h
src/ModuleBase/ModuleBase_WidgetExprEditor.cpp
src/ModuleBase/ModuleBase_WidgetFactory.cpp
src/ModuleBase/ModuleBase_WidgetMultiSelector.cpp
src/ModuleBase/ModuleBase_WidgetMultiSelector.h
src/ModuleBase/ModuleBase_WidgetSelector.cpp
src/ModuleBase/ModuleBase_WidgetSelectorStore.cpp
src/ModuleBase/ModuleBase_WidgetSwitch.cpp
src/ModuleBase/ModuleBase_WidgetToolbox.cpp
src/ModuleBase/ModuleBase_WidgetToolbox.h
src/ModuleBase/ModuleBase_WidgetValidated.cpp
src/ModuleBase/ModuleBase_WidgetValidated.h
src/ModuleBase/ModuleBase_WidgetValidator.h
src/ParametersAPI/ParametersAPI_Parameter.cpp
src/ParametersAPI/ParametersAPI_Parameter.h
src/ParametersPlugin/ParametersPlugin_EvalListener.cpp
src/ParametersPlugin/ParametersPlugin_EvalListener.h
src/ParametersPlugin/ParametersPlugin_Plugin.cpp
src/ParametersPlugin/ParametersPlugin_PyInterp.cpp
src/ParametersPlugin/ParametersPlugin_PyInterp.h
src/ParametersPlugin/ParametersPlugin_Validators.cpp
src/ParametersPlugin/ParametersPlugin_Validators.h
src/ParametersPlugin/ParametersPlugin_WidgetParamsMgr.cpp
src/ParametersPlugin/ParametersPlugin_WidgetParamsMgr.h

index 35721b3585ce359551e7bd3a763d156d38236799..d444524752d4f50aaa1bf68d7a6059945c588981 100644 (file)
@@ -1,4 +1,4 @@
-// TEMPORARY COMMIT
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ModuleBase_ActionInfo.cpp
  *
index 1f21c7ca19be64ae95bf6f23d3141e992c554521..d796eb4b3437598f2c6db5ead3edf2f5163e31cd 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ActionInfo.h
  *
@@ -28,7 +29,9 @@ struct MODULEBASE_EXPORT ModuleBase_ActionInfo
   bool checked; //!< action's checked state
   bool enabled; //!< action's enabled state
   bool visible; //!< action's visibility state
-  bool modal;   //!< = true if the acton is a modal dialog box else property panel (==false by default)
+
+  //! = true if the acton is a modal dialog box else property panel (==false by default)
+  bool modal;   
   QIcon icon; //!< action's icon
   QString text; //!< action's text
   QString iconText; //!< action's descriptive icon text
index 4320004afc94da2b6ff8274aa58b22b63b5caef4..7337c22591bfed26c3425f1e1bb0d9a9146aaff5 100644 (file)
@@ -19,7 +19,8 @@ void ModuleBase_FilterFactory::registerFilter(const std::string& theID,
                                               ModuleBase_Filter* theFilter)
 {
   if (myIDs.find(theID) != myIDs.end()) {
-    Events_InfoMessage("ModuleBase_FilterFactory", "Filter %1 is already registered").arg(theID).send();
+    Events_InfoMessage("ModuleBase_FilterFactory", 
+      "Filter %1 is already registered").arg(theID).send();
   } else {
     myIDs[theID] = theFilter;
   }
index d2d58d6c9c4417dce8d0ae19fac90be8793cc0b1..ac8de70791714f1e38e95b6d31b285abcea9e9ab 100644 (file)
@@ -32,12 +32,15 @@ public:
       SelectMgr_Filter(), myWorkshop(theWorkshop) {}
 
   /**
-   * Returns true if the owner is computed from decomposition(it is global selection, not the sub-shapes)
-   * of if the selected result is a construction and the result feature is composite and has sub-elements.
+   * Returns true if the owner is computed from decomposition
+   * (it is global selection, not the sub-shapes)
+   * of if the selected result is a construction and the result 
+   * feature is composite and has sub-elements.
    * \param theOwner the result of selection
    * \return whether the owner is selectable in the viewer
   */
-  Standard_EXPORT virtual Standard_Boolean IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const;
+  Standard_EXPORT virtual 
+    Standard_Boolean IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const;
 
   DEFINE_STANDARD_RTTI(ModuleBase_FilterValidated)
 
index 41a37c0b47a50ac5c4c7e4d62744ac9553883c78..d4393e3ac361146f619c848f2cb3bdcc74810409 100755 (executable)
@@ -126,8 +126,10 @@ class MODULEBASE_EXPORT ModuleBase_IModule : public QObject
   /// Creates custom widgets for property panel
   /// \param theType a type of widget
   /// \param theParent the parent object
-  /// \param theWidgetApi the widget configuration. The attribute of the model widget is obtained from
-  virtual ModuleBase_ModelWidget* createWidgetByType(const std::string& theType, QWidget* theParent,
+  /// \param theWidgetApi the widget configuration. 
+  ///                     The attribute of the model widget is obtained from
+  virtual ModuleBase_ModelWidget* createWidgetByType(const std::string& theType, 
+                                                     QWidget* theParent,
                                                      Config_WidgetAPI* theWidgetApi)
   {
     return 0;
@@ -143,7 +145,8 @@ class MODULEBASE_EXPORT ModuleBase_IModule : public QObject
   /// It is called as on clearing of property panel as on filling with new widgets
   virtual void propertyPanelDefined(ModuleBase_Operation* theOperation) {}
 
-  /// Have an opportunity to create widgets for the current operation instead of standard creation in workshop
+  /// Have an opportunity to create widgets for the current operation 
+  /// instead of standard creation in workshop
   /// \param theOperation a started operation
   /// \param theWidgets a list of created widgets
   /// \return boolean result, false by default
@@ -204,7 +207,8 @@ class MODULEBASE_EXPORT ModuleBase_IModule : public QObject
   /// Return true if the custom presentation is activated
   /// \param theFlag a flag of level of customization, which means that only part of sub-elements
   /// \return boolean value
-  virtual bool isCustomPrsActivated(const ModuleBase_CustomizeFlag& theFlag) const { return false; };
+  virtual bool isCustomPrsActivated(const ModuleBase_CustomizeFlag& theFlag) const 
+  { return false; };
 
   /// Activate custom presentation for the object. Default realization is empty.
   /// \param theFeature a feature instance
@@ -221,7 +225,8 @@ class MODULEBASE_EXPORT ModuleBase_IModule : public QObject
                                    const bool theUpdateViewer) {}
 
   /// Modifies the given presentation in the custom way.
-  virtual bool customisePresentation(std::shared_ptr<ModelAPI_Result> theResult, AISObjectPtr thePrs,
+  virtual bool customisePresentation(std::shared_ptr<ModelAPI_Result> theResult, 
+                                     AISObjectPtr thePrs,
                                      GeomCustomPrsPtr theCustomPrs) { return false; };
 
   /// Update the object presentable properties such as color, lines width and other
index eb338776b20a50e9c0672bdf8076b55e1a6448f9..bb6d2276a9fe1736a4a2d1773d9498a60d973d4f 100644 (file)
@@ -14,7 +14,8 @@
 #include <ModelAPI_Validator.h>
 #include <ModelAPI_Session.h>
 
-ModuleBase_IPropertyPanel::ModuleBase_IPropertyPanel(QWidget* theParent) : QDockWidget(theParent), myIsEditing(false)
+ModuleBase_IPropertyPanel::ModuleBase_IPropertyPanel(QWidget* theParent)
+ : QDockWidget(theParent), myIsEditing(false)
 {
 
 }
@@ -25,7 +26,7 @@ ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget
 }
 
 ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget(
-                                                              const QList<ModuleBase_ModelWidget*>& theWidgets)
+                                        const QList<ModuleBase_ModelWidget*>& theWidgets)
 {
   ModuleBase_ModelWidget* aFirstWidget = 0;
 
index abc994373c608a13888333c560f4dc9b363c82a6..a8c2707c4337285afb4329c206c7571c7c0a0db9 100644 (file)
@@ -37,10 +37,11 @@ class ModuleBase_ISelection
 
   /// Returns a list of viewer selected presentations
   /// \return list of presentations
-  virtual QList<std::shared_ptr<ModuleBase_ViewerPrs>> getSelected(const SelectionPlace& thePlace = Browser) const = 0;
+  virtual QList<std::shared_ptr<ModuleBase_ViewerPrs>> 
+    getSelected(const SelectionPlace& thePlace = Browser) const = 0;
 
-  /// The values are appended to the first parameter list if the first list does not contain an item
-  /// with the same object
+  /// The values are appended to the first parameter list if the first list does not contain 
+  /// an item with the same object
   /// \param theValues a list of new values
   /// \param theValuesTo a list, that will be changed
   static void appendSelected(const QList<std::shared_ptr<ModuleBase_ViewerPrs>> theValues,
@@ -94,7 +95,8 @@ class ModuleBase_ISelection
   //! Return the IO from the viewer presentation.
   //! \param thePrs a selected object
   //! \return an interactive object
-  virtual MODULEBASE_EXPORT Handle(AIS_InteractiveObject) getIO(const std::shared_ptr<ModuleBase_ViewerPrs>& thePrs) = 0;
+  virtual MODULEBASE_EXPORT 
+    Handle(AIS_InteractiveObject) getIO(const std::shared_ptr<ModuleBase_ViewerPrs>& thePrs) = 0;
 
   //! Wraps the object list into the viewer prs list
   //! \param theObjects a list of objects
@@ -105,7 +107,7 @@ class ModuleBase_ISelection
   /// Removes selection items where owners have equal vertices. The first
   /// owner with the qual vertex stays in the list.
   static MODULEBASE_EXPORT void filterSelectionOnEqualPoints
-                                              (QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theSelected);
+                                      (QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theSelected);
 private:
   /// Find vertex shape build by a Brep owner of the presentation if it exists
   /// \param thePrs a viewer presentation
index 374e526bdd865975a8e13ab803735f612e3741db..d8a20cb428668a0fa90cf712597c3f13dab210cc 100644 (file)
@@ -101,7 +101,8 @@ Q_OBJECT
   /// Remember a scale factor for the view object
   /// \param theView a view object
   /// \param theVal a scale factor
-  void SetScale(const Handle(V3d_View)& theView, const double theVal) { myWindowScale[theView] = theVal; }
+  void SetScale(const Handle(V3d_View)& theView, const double theVal) 
+  { myWindowScale[theView] = theVal; }
 
   /// Method returns True if the viewer can process editing objects 
   /// by mouse drugging. If this is impossible thet it has to return False.
index 66d1c8c96daca4ad89f36bc567d7ed64348dd5ef..fdfffa34389b7df51a34a367975047e4141ebec0 100644 (file)
@@ -94,7 +94,8 @@ bool ModuleBase_ModelWidget::isValueEnabled() const
 #ifdef DEBUG_ENABLE_SKETCH_INPUT_FIELDS
     bool aCanDisable = false;
 #else
-    bool aCanDisable = true;//Config_PropManager::boolean(SKETCH_TAB_NAME, "disable_input_fields", "true");
+    //Config_PropManager::boolean(SKETCH_TAB_NAME, "disable_input_fields", "true");
+    bool aCanDisable = true;
 #endif
     if (aCanDisable)
       anEnabled = false;
index 4c677a1f34f9d74a258359208db09f9dc305ae20..06d3729e56f890e060714f711100b2ef1727e81a 100644 (file)
@@ -23,7 +23,8 @@ class QKeyEvent;
 
 /**\class ModuleBase_ModelWidget
  * \ingroup GUI
- * \brief An abstract custom widget class. This class realization is assumed to create some controls.
+ * \brief An abstract custom widget class. This class realization is assumed 
+ * to create some controls.
  * The controls values modification should send signal about values change.
  *
  * Common interface for widgets in the property panel.
@@ -42,7 +43,8 @@ Q_OBJECT
 
    enum EnableState { On,  /// the widget value is always enabled
                       Off, /// the widget value is always disabled
-                      DefinedInPreferences }; /// the widget value enable state is defined in preferences
+                      /// the widget value enable state is defined in preferences
+                      DefinedInPreferences }; 
 
   /// Constructor
   /// \param theParent the parent object
@@ -75,12 +77,14 @@ Q_OBJECT
   /// \return the boolean result
   bool isInternal() const { return myIsInternal; }
 
-  /// Returns true, if the obligatory value of the widget is not defined in the XML or has true value
+  /// Returns true, if the obligatory value of the widget is 
+  /// not defined in the XML or has true value
   /// \return the boolean result
   bool isObligatory() const { return myIsObligatory; }
 
-  /// Returns true, if the widget value is enabled and might be modified manualy. It returns false if
-  /// the application preferences allow having disabled value and the internal state tells to disable
+  /// Returns true, if the widget value is enabled and might be modified manualy. 
+  /// It returns false if the application preferences allow having disabled value 
+  /// and the internal state tells to disable
   /// \return the boolean result
   virtual bool isValueEnabled() const;
 
@@ -129,12 +133,14 @@ Q_OBJECT
   /// Checks if the selection presentation is valid in widget 
   /// \param theValue a selected presentation in the view
   /// \return a boolean value
-  virtual bool isValidSelectionCustom(const std::shared_ptr<ModuleBase_ViewerPrs>& theValue) { return true; }
+  virtual bool isValidSelectionCustom(const std::shared_ptr<ModuleBase_ViewerPrs>& theValue)
+  { return true; }
 
   /// Returns widget validator, by default it is NULL. To be created in a child if necessary
   ModuleBase_WidgetValidator* widgetValidator() { return myWidgetValidator; }
 
-  /// Restore value from attribute data to the widget's control. Emits signals before and after store
+  /// Restore value from attribute data to the widget's control. 
+  /// Emits signals before and after store
   /// \return True in success
   bool restoreValue();
 
@@ -142,7 +148,8 @@ Q_OBJECT
   /// \return True in success
   bool storeValue();
 
-  /// Set focus to the first control of the current widget. The focus policy of the control is checked.
+  /// Set focus to the first control of the current widget. 
+  /// The focus policy of the control is checked.
   /// If the widget has the NonFocus focus policy, it is skipped.
   /// \return the state whether the widget can accept the focus
   virtual bool focusTo();
index 19dda8a73709c9933637d173a18a06ff4b883c33..ed025343d2532de5eae9bfe1f216e7fd67b0b406 100755 (executable)
@@ -20,7 +20,8 @@ ModuleBase_OperationAction::~ModuleBase_OperationAction()
 
 bool ModuleBase_OperationAction::commit()
 {
-  // the action is supposed to perform a single modification, so the operation returns modified state
+  // the action is supposed to perform a single modification, 
+  // so the operation returns modified state
   setIsModified(true);
 
   return ModuleBase_Operation::commit();
index 450e52399e20a9af5b0c8a22471538df6adeb997..406d8b3a918b1eb06879950ce5f7487cf50b5ab8 100755 (executable)
@@ -206,16 +206,18 @@ bool ModuleBase_OperationFeature::hasObject(ObjectPtr theObj) const
     }
 #ifdef DEBUG_DO_NOT_ACTIVATE_SUB_FEATURE
     if (aFeature->isMacro()) {
-      // macro feature may refers to sub-features, which also should be deactivated when the operation
+      // macro feature may refers to sub-features, 
+      // which also should be deactivated when the operation
       // is active, e.g. rectangle'lines.
       FeaturePtr anObjectFeature = ModelAPI_Feature::feature(theObj);
       std::list<AttributePtr> anAttributes = aFeature->data()->attributes(
                                               ModelAPI_AttributeRefList::typeId());
-      std::list<AttributePtr>::const_iterator anIt = anAttributes.begin(), aLast = anAttributes.end();
+      std::list<AttributePtr>::const_iterator 
+        anIt = anAttributes.begin(), aLast = anAttributes.end();
       bool aFoundObject = false;
       for (; anIt != aLast && !aFoundObject; anIt++) {
         std::shared_ptr<ModelAPI_AttributeRefList> aCurSelList =
-                                         std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(*anIt);
+                               std::dynamic_pointer_cast<ModelAPI_AttributeRefList>(*anIt);
         for (int i = 0, aNb = aCurSelList->size(); i < aNb && !aFoundObject; i++) {
           ObjectPtr anObject = aCurSelList->object(i);
           FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(anObject);
@@ -448,7 +450,8 @@ FeaturePtr ModuleBase_OperationFeature::previousCurrentFeature()
   return myPreviousCurrentFeature;
 }
 
-void ModuleBase_OperationFeature::initSelection(const QList<ModuleBase_ViewerPrsPtr>& thePreSelected)
+void ModuleBase_OperationFeature::initSelection(
+  const QList<ModuleBase_ViewerPrsPtr>& thePreSelected)
 {
   QObjectPtrList aCurrentFeatureResults;
 
index 8d012cbf903e685b7f692bcc40687aec135df09d..272cb38472994fa70181a6ea05e83a285fa41c66 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ModuleBase_PageBase.cpp
  *
index 80fcca7580c9ac73fe7f24c6ffc335b4e2ccf0dc..261de06bf58d084fd0397baf30eafd992a008fd2 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ModuleBase_PageBase.h
  *
index 6d0d55acfa4d5934daa6c813a240089e6b57b629..3619d1464574982b0177ca5bf65e440ead7d4816 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
 /*
  * ModuleBase_PageGroupBox.cpp
  *
index 63c6ce88aefaadd10566cf0dcb5f372fd42c7c0b..77bd02ed3790b94fa3159228aa72b19d2451e16d 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ModuleBase_PageGroupBox.h
  *
index c351d0af404ae7b599281d618bc3bfb7fc784402..514d9358ab8cbb56eecf6e52565650a4dac46ba8 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
 /*
  * ModuleBase_PageWidget.cpp
  *
index ca7ba2c2c6e5ec3f99a98a4d6b9a632449781a72..8ff526a2b09ced624669490e7fb94ea95a057ddd 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ModuleBase_PageWidget.h
  *
index d069b57f604a783df4b4960bf4a91e1dff638657..0ae12a1fa4590e39a743ade107a91be35c7edcf8 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ModuleBase_PagedContainer.cpp
  *
@@ -17,7 +18,8 @@
 #include <QVBoxLayout>
 
 
-ModuleBase_PagedContainer::ModuleBase_PagedContainer(QWidget* theParent, const Config_WidgetAPI* theData)
+ModuleBase_PagedContainer::ModuleBase_PagedContainer(QWidget* theParent, 
+                                                     const Config_WidgetAPI* theData)
 : ModuleBase_ModelWidget(theParent, theData),
   myIsFocusOnCurrentPage(false)
 {
index 4522a8a8ee18675686277b79a22376fb5a369a25..863390897e1a7833eeed9bf71db9faf85fba6e93 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ModuleBase_PagedContainer.h
  *
index a2c41692e24bfab5cb4786b3d699a3dbbeecba36..5c7343cdf4909fde2b67d30c55cd07e167642db7 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
 #include "ModuleBase_ParamIntSpinBox.h"
 
 #include <ModelAPI_Session.h>
index 62f8fd679b8261b8c6bee579f8c4928e36c48a4b..a3900411a215880e6f214042c8689a0a235c2525 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 
 #ifndef ModuleBase_ParamIntSpinBox_H
 #define ModuleBase_ParamIntSpinBox_H
index 9916aec514e9e907f594822ea431d064321fc2ce..c8871269de0355c1c549386e69d179c92455f1d0 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
 #include "ModuleBase_ParamSpinBox.h"
 
 #include <ModelAPI_Session.h>
index 6f2252ec81bdeb3cdbb6c4ed6b46450e9368a331..774c535861659078a8108b66ebc9fe01d15b250b 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 
 #ifndef ModuleBase_ParamSpinBox_H
 #define ModuleBase_ParamSpinBox_H
index 641a1bc5952dcf716842fa34baa95ce154bffe79..e26cf8d34f02ef2850d1a0f33012e0ea8ef20d53 100644 (file)
@@ -210,7 +210,8 @@ private:
 //**********************************************************
 //**********************************************************
 //**********************************************************
-ModuleBase_PreferencesDlg::ModuleBase_PreferencesDlg(SUIT_ResourceMgr* theResurces, QWidget* theParent)
+ModuleBase_PreferencesDlg::ModuleBase_PreferencesDlg(SUIT_ResourceMgr* theResurces, 
+  QWidget* theParent)
     : QDialog(theParent),
       myIsChanged(false)
 {
@@ -319,7 +320,8 @@ void ModuleBase_PreferencesDlg::createMenuPage(int thePageId)
   myPreferences->setItemProperty("columns", 1, aSizeGroup);
 
   int aRowsNb = myPreferences->addItem(tr("Number of rows"), aSizeGroup,
-                                       SUIT_PreferenceMgr::IntSpin, ModuleBase_Preferences::MENU_SECTION,
+                                       SUIT_PreferenceMgr::IntSpin, 
+                                       ModuleBase_Preferences::MENU_SECTION,
                                        "rows_number");
   myPreferences->setItemProperty("min", 1, aRowsNb);
   myPreferences->setItemProperty("max", 6, aRowsNb);
index 49e1dc691715737cf3f9029d4bb33e92c3f03358..3a29f95aac8f4063c494af477f8e75dcab820395 100755 (executable)
@@ -69,9 +69,10 @@ void ModuleBase_ResultPrs::setAdditionalSelectionPriority(const int thePriority)
   myAdditionalSelectionPriority = thePriority;
 }
 
-void ModuleBase_ResultPrs::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
-                                   const Handle(Prs3d_Presentation)& thePresentation, 
-                                   const Standard_Integer theMode)
+void ModuleBase_ResultPrs::Compute(
+          const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
+          const Handle(Prs3d_Presentation)& thePresentation, 
+          const Standard_Integer theMode)
 {
   std::shared_ptr<GeomAPI_Shape> aShapePtr = ModelAPI_Tools::shape(myResult);
   bool aReadyToDisplay = aShapePtr.get();
@@ -85,7 +86,8 @@ void ModuleBase_ResultPrs::Compute(const Handle(PrsMgr_PresentationManager3d)& t
   AIS_Shape::Compute(thePresentationManager, thePresentation, theMode);
 
   if (!aReadyToDisplay) {
-    Events_InfoMessage("ModuleBase_ResultPrs", "An empty AIS presentation: ModuleBase_ResultPrs").send();
+    Events_InfoMessage("ModuleBase_ResultPrs", 
+                       "An empty AIS presentation: ModuleBase_ResultPrs").send();
     static const Events_ID anEvent = Events_Loop::eventByName(EVENT_EMPTY_AIS_PRESENTATION);
     ModelAPI_EventCreator::get()->sendUpdated(myResult, anEvent);
   }
@@ -121,7 +123,8 @@ void ModuleBase_ResultPrs::ComputeSelection(const Handle(SelectMgr_Selection)& a
         TopoDS_Shape aShape = aShapePtr->impl<TopoDS_Shape>();
         int aPriority = StdSelect_BRepSelectionTool::GetStandardPriority(aShape, TopAbs_COMPSOLID);
         /// It is important to have priority for the shape of comp solid result less than priority
-        /// for the presentation shape which is a sub-result. Reason is to select the sub-objects before: #1592
+        /// for the presentation shape which is a sub-result. 
+        /// Reason is to select the sub-objects before: #1592
         aPriority = aPriority - 1;
         double aDeflection = Prs3d::GetDeflection(aShape, myDrawer);
 
@@ -131,7 +134,8 @@ void ModuleBase_ResultPrs::ComputeSelection(const Handle(SelectMgr_Selection)& a
 
         for (aSelection->Init(); aSelection->More(); aSelection->Next()) {
           Handle(SelectMgr_EntityOwner) anOwner =
-            Handle(SelectMgr_EntityOwner)::DownCast(aSelection->Sensitive()->BaseSensitive()->OwnerId());
+            Handle(SelectMgr_EntityOwner)
+            ::DownCast(aSelection->Sensitive()->BaseSensitive()->OwnerId());
           anOwner->Set(this);
         }
         return;
@@ -143,7 +147,8 @@ void ModuleBase_ResultPrs::ComputeSelection(const Handle(SelectMgr_Selection)& a
 
   if (myAdditionalSelectionPriority > 0) {
     for (aSelection->Init(); aSelection->More(); aSelection->Next()) {
-      Handle(SelectBasics_EntityOwner) aBasicsOwner = aSelection->Sensitive()->BaseSensitive()->OwnerId();
+      Handle(SelectBasics_EntityOwner) aBasicsOwner = 
+        aSelection->Sensitive()->BaseSensitive()->OwnerId();
       if (!aBasicsOwner.IsNull())
         aBasicsOwner->Set(aBasicsOwner->Priority() + myAdditionalSelectionPriority);
     }
index 6d7dc8b1c52d4d4eedf1f3745f1cdcf9c676714f..597b3b8e70f067f8c3e31ac78b053fba2223ff50 100644 (file)
@@ -71,20 +71,22 @@ public:
   Standard_EXPORT ModuleBase_ResultPrs(ResultPtr theResult);
 
   //! Method which draws selected owners ( for fast presentation draw )
-  Standard_EXPORT virtual void HilightSelected(const Handle(PrsMgr_PresentationManager3d)& thePM, 
+  Standard_EXPORT virtual void HilightSelected(const Handle(PrsMgr_PresentationManager3d)& thePM,
                                                const SelectMgr_SequenceOfOwner& theOwners);
   
   //! Method which hilight an owner belonging to
   //! this selectable object  ( for fast presentation draw )
-  Standard_EXPORT virtual void HilightOwnerWithColor(const Handle(PrsMgr_PresentationManager3d)& thePM, 
-                                                     const Quantity_NameOfColor theColor, const Handle(SelectMgr_EntityOwner)& theOwner);
+  Standard_EXPORT virtual void HilightOwnerWithColor(
+    const Handle(PrsMgr_PresentationManager3d)& thePM,
+    const Quantity_NameOfColor theColor, const Handle(SelectMgr_EntityOwner)& theOwner);
 
   /// Returns result object
   Standard_EXPORT ResultPtr getResult() const { return myResult; }
 
   /// Returns selection priorities that will be added to created selection owner
   /// \return integer value
-  Standard_EXPORT int getAdditionalSelectionPriority() const { return myAdditionalSelectionPriority; }
+  Standard_EXPORT int getAdditionalSelectionPriority() const 
+  { return myAdditionalSelectionPriority; }
 
   /// Appends a special priority for the mode of selection
   /// \param theSelectionMode a mode of selection, used in ComputeSelection
@@ -94,7 +96,8 @@ public:
   DEFINE_STANDARD_RTTI(ModuleBase_ResultPrs)
 protected:
   /// Redefinition of virtual function
-  Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
+  Standard_EXPORT virtual void Compute(
+    const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
     const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
 
   /// Redefinition of virtual function
@@ -113,7 +116,9 @@ private:
 
   /// Original shape of the result object
   TopoDS_Shape myOriginalShape;
-  /// selection priority that will be added to the standard selection priority of the selection entity
+
+  /// selection priority that will be added to the standard 
+  /// selection priority of the selection entity
   int myAdditionalSelectionPriority;
 };
 
index c663b01c934a8560412d2ef820685957da16588a..10f07fe53743b13302dc1cec262db0e6baf57787 100644 (file)
@@ -8,7 +8,8 @@
 #include <ModuleBase_SelectionValidator.h>
 
 
-bool ModuleBase_SelectionValidator::isValid(const ModuleBase_ISelection* theSelection, ModuleBase_Operation* theOperation) const
+bool ModuleBase_SelectionValidator::isValid(const ModuleBase_ISelection* theSelection,
+                                            ModuleBase_Operation* theOperation) const
 {
   return true;
 }
index 50f04fc5b97237e6a6d8499f62e22ab2702f8418..1f686f0cf3ecd426723b1c4c8c3f917ad2dbaf00 100644 (file)
@@ -26,7 +26,8 @@ public:
    /// Returns True if selection is valid
    /// \param theSelection selection instance
    /// \param theOperation - current operation (can be 0)
-  virtual bool isValid(const ModuleBase_ISelection* theSelection, ModuleBase_Operation* theOperation) const;
+  virtual bool isValid(const ModuleBase_ISelection* theSelection, 
+                       ModuleBase_Operation* theOperation) const;
 };
 
 #endif
index 3e250f5c37dc1e2459e83a728b3d8fde81374139..9c529b341eec68aa704990a7d0f5d79567c73ea4 100755 (executable)
@@ -293,7 +293,8 @@ bool MODULEBASE_EXPORT hasModuleDocumentFeature(const std::set<FeaturePtr>& theF
 /// \param theReferencesToDelete an out set for references features to be removed
 /// \return true if in message box answer is Yes
 bool MODULEBASE_EXPORT askToDelete(const std::set<FeaturePtr> aFeatures,
-                                   const std::map<FeaturePtr, std::set<FeaturePtr> >& theReferences,
+                                   const std::map<FeaturePtr, 
+                                   std::set<FeaturePtr> >& theReferences,
                                    QWidget* theParent,
                                    std::set<FeaturePtr>& theReferencesToDelete,
                                    const std::string& thePrefixInfo = "");
@@ -303,7 +304,8 @@ bool MODULEBASE_EXPORT askToDelete(const std::set<FeaturePtr> aFeatures,
 /// of this parameter is to be removed
 /// \param theObjects a list of objects
 /// \param theFeatures an out conteiner of features
-void MODULEBASE_EXPORT convertToFeatures(const QObjectPtrList& theObjects, std::set<FeaturePtr>& theFeatures);
+void MODULEBASE_EXPORT convertToFeatures(const QObjectPtrList& theObjects, 
+                                         std::set<FeaturePtr>& theFeatures);
 
 
 /// Returns translation from the given data.
index f92e3895e9ab363cdb63cb29d0a6b0b6f0f13fb9..b96672f8909c0f1a510fc085677f7571aa32e2ee 100644 (file)
@@ -37,7 +37,8 @@ IMPLEMENT_STANDARD_RTTIEXT(ModuleBase_ShapeDocumentFilter, SelectMgr_Filter);
 
 
 //TODO (VSV): Check bug in OCCT: Filter result is ignored (bug25340)
-Standard_Boolean ModuleBase_ShapeDocumentFilter::IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
+Standard_Boolean ModuleBase_ShapeDocumentFilter::IsOk(
+                                            const Handle(SelectMgr_EntityOwner)& theOwner) const
 {
   bool aValid = true;
 
@@ -75,7 +76,8 @@ Standard_Boolean ModuleBase_ShapeDocumentFilter::IsOk(const Handle(SelectMgr_Ent
 IMPLEMENT_STANDARD_HANDLE(ModuleBase_ShapeInPlaneFilter, SelectMgr_Filter);
 IMPLEMENT_STANDARD_RTTIEXT(ModuleBase_ShapeInPlaneFilter, SelectMgr_Filter);
 
-Standard_Boolean ModuleBase_ShapeInPlaneFilter::IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
+Standard_Boolean ModuleBase_ShapeInPlaneFilter::IsOk(
+                                        const Handle(SelectMgr_EntityOwner)& theOwner) const
 {
   bool aValid = true;
 
index 8314f70546b69907268289f9e879098ef691e7ea..d2639b44670ea4484e6f21589ec18c226e71e5ad 100644 (file)
@@ -32,12 +32,14 @@ class ModuleBase_ShapeDocumentFilter: public SelectMgr_Filter
 public:
   /// Constructor
   /// \param theWorkshop instance of workshop interface
-  Standard_EXPORT ModuleBase_ShapeDocumentFilter(ModuleBase_IWorkshop* theWorkshop): SelectMgr_Filter(),
+  Standard_EXPORT 
+    ModuleBase_ShapeDocumentFilter(ModuleBase_IWorkshop* theWorkshop): SelectMgr_Filter(),
     myWorkshop(theWorkshop) {}
 
   /// Returns True if the given owner is acceptable for selection
   /// \param theOwner the selected owner
-  Standard_EXPORT virtual Standard_Boolean IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const;
+  Standard_EXPORT virtual 
+    Standard_Boolean IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const;
 
   DEFINE_STANDARD_RTTI(ModuleBase_ShapeDocumentFilter)
 
@@ -68,7 +70,8 @@ public:
 
   /// Returns True if the given owner is acceptable for selection
   /// \param theOwner the selected owner
-  Standard_EXPORT virtual Standard_Boolean IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const;
+  Standard_EXPORT virtual 
+    Standard_Boolean IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const;
 
   DEFINE_STANDARD_RTTI(ModuleBase_ShapeInPlaneFilter)
 private:
index 0e5f4d9e6e939acb2590eab668109f83fc16dabc..0624b58441e75ec165be2ad854f3ccd585d4a34d 100644 (file)
@@ -113,7 +113,8 @@ QList<QWidget*> ModuleBase_WidgetConcealedObjects::getControls() const
   return result;
 }
 
-void ModuleBase_WidgetConcealedObjects::addViewRow(const std::shared_ptr<ModelAPI_Result>& theResult)
+void ModuleBase_WidgetConcealedObjects::addViewRow(
+                                const std::shared_ptr<ModelAPI_Result>& theResult)
 {
   int anId = myView->rowCount();
   myView->setRowCount(anId+1);
index 2d0ab9e2508c9fc85906f0dde7943ae69373d955..27697fef8aafd7280b3945875d6e1d5c343e4810 100755 (executable)
@@ -19,7 +19,8 @@ std::shared_ptr<ModuleBase_WidgetCreatorFactory> MY_WIDGET_CREATOR_FACTORY;
 std::shared_ptr<ModuleBase_WidgetCreatorFactory> ModuleBase_WidgetCreatorFactory::get()
 {
   if (!MY_WIDGET_CREATOR_FACTORY) {
-    MY_WIDGET_CREATOR_FACTORY =  std::shared_ptr<ModuleBase_WidgetCreatorFactory>(new ModuleBase_WidgetCreatorFactory());
+    MY_WIDGET_CREATOR_FACTORY =  
+      std::shared_ptr<ModuleBase_WidgetCreatorFactory>(new ModuleBase_WidgetCreatorFactory());
   }
   return MY_WIDGET_CREATOR_FACTORY;
 }
@@ -44,7 +45,8 @@ void ModuleBase_WidgetCreatorFactory::registerCreator(const WidgetCreatorPtr& th
       myPanelToCreator[aKey] = theCreator;
     else {
       Events_InfoMessage("ModuleBase_WidgetCreatorFactory", 
-        "The %1 panel XML definition has been already used by another widget creator").arg(aKey).send();
+        "The %1 panel XML definition has been already used by another widget creator")
+        .arg(aKey).send();
     }
   }
 
@@ -57,7 +59,8 @@ void ModuleBase_WidgetCreatorFactory::registerCreator(const WidgetCreatorPtr& th
       myCreators[aKey] = theCreator;
     else {
       Events_InfoMessage("ModuleBase_WidgetCreatorFactory",
-        "The %1 widget XML definition has been already used by another widget creator").arg(aKey).send();
+        "The %1 widget XML definition has been already used by another widget creator")
+        .arg(aKey).send();
     }
   }
 
@@ -70,7 +73,8 @@ void ModuleBase_WidgetCreatorFactory::registerCreator(const WidgetCreatorPtr& th
       myPageToCreator[aKey] = theCreator;
     else {
       Events_InfoMessage("ModuleBase_WidgetCreatorFactory",
-        "The %1 page XML definition has been already used by another widget creator").arg(aKey).send();
+        "The %1 page XML definition has been already used by another widget creator")
+        .arg(aKey).send();
     }
   }
 }
index e5ffb33698a8c4d93fced9467a81684708bcbe26..42f6f06d0ea436f4bc947d4a886d69a121b73096 100755 (executable)
@@ -26,7 +26,7 @@ class QWidget;
 
 /**
 * \ingroup GUI
-* A class for creation of widgets instances in for property panel using XML deskription of 
+* A class for creation of widgets instances in for property panel using XML deskription of
 * a feature
 */
 class MODULEBASE_EXPORT ModuleBase_WidgetCreatorFactory
@@ -38,7 +38,8 @@ class MODULEBASE_EXPORT ModuleBase_WidgetCreatorFactory
   /// Destructor
   virtual ~ModuleBase_WidgetCreatorFactory();
 
-  /// The creator is added to the internal container to be used when the createWidgetByType is called
+  /// The creator is added to the internal container 
+  /// to be used when the createWidgetByType is called
   /// \param theCreator a new widget creator
   void registerCreator(const WidgetCreatorPtr& theCreator);
 
@@ -63,7 +64,8 @@ class MODULEBASE_EXPORT ModuleBase_WidgetCreatorFactory
   /// Create page by its type
   /// \param theType a type
   /// \param theParent a parent widget
-  /// \param theWidgetApi the widget configuration. The attribute of the model widget is obtained from XML
+  /// \param theWidgetApi the widget configuration. 
+  ///                     The attribute of the model widget is obtained from XML
   /// \return a created page or null
   ModuleBase_PageBase* createPageByType(const std::string& theType,
                                         QWidget* theParent,
@@ -72,7 +74,8 @@ class MODULEBASE_EXPORT ModuleBase_WidgetCreatorFactory
   /// Create widget by its type
   /// \param theType a type
   /// \param theParent a parent widget
-  /// \param theWidgetApi the widget configuration. The attribute of the model widget is obtained from XML
+  /// \param theWidgetApi the widget configuration. 
+  ///                     The attribute of the model widget is obtained from XML
   /// \param theWorkshop a workshop object instance
   /// \return a created widget or null
   ModuleBase_ModelWidget* createWidgetByType(const std::string& theType,
index ed22ac55f76d1a41cc0e30a1c8bb15c4acb7ddcf..cf5b6fc5527e78aaf5b90aa22df4dd105f35072a 100644 (file)
@@ -194,7 +194,8 @@ void ExpressionEditor::paintEvent( QPaintEvent* theEvent )
     QPen anOldpen = aPainter.pen();
     aPainter.setPen( aColor );
     lineRect.adjust(minLB, 0, 0, 0);
-    QString elidedText = aFontMetrics.elidedText( myPlaceHolderText, Qt::ElideRight, lineRect.width() );
+    QString elidedText = 
+      aFontMetrics.elidedText( myPlaceHolderText, Qt::ElideRight, lineRect.width() );
     aPainter.drawText( lineRect, va, elidedText );
     aPainter.setPen( anOldpen );
   }
index 2812d171432748d29d7bd937528573983302288e..3b43d76646326ab5a4b610db5b6e2fdcbf111a18 100644 (file)
@@ -121,7 +121,8 @@ void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage, bool a
             ModuleBase_PageBase* aPage = new ModuleBase_PageWidget(aWidget);
             createWidget(aPage);
             if (aWdgType == WDG_SWITCH || aWdgType == WDG_TOOLBOX) {
-              ModuleBase_PagedContainer* aContainer = qobject_cast<ModuleBase_PagedContainer*>(aWidget);
+              ModuleBase_PagedContainer* aContainer = 
+                qobject_cast<ModuleBase_PagedContainer*>(aWidget);
 
               QString anIconPath = qs( myWidgetApi->getProperty( CONTAINER_PAGE_ICON ) );
               QPixmap anIcon = ModuleBase_IconFactory::loadPixmap( anIconPath );
@@ -179,7 +180,8 @@ void ModuleBase_WidgetFactory::getAttributeTitle(const std::string& theAttribute
   if (aFound) {
     theTitle = QString::fromStdString(myWidgetApi->widgetLabel()).toStdString().c_str();
     if (theTitle.empty())
-      theTitle = QString::fromStdString(myWidgetApi->getProperty(CONTAINER_PAGE_NAME)).toStdString().c_str();
+      theTitle = 
+      QString::fromStdString(myWidgetApi->getProperty(CONTAINER_PAGE_NAME)).toStdString().c_str();
   }
 }
 
index bc5fb36d02331c84d53cc1af907795587d8c2032..6b30c97d40e4d390dc05dc88c981831932fdf375 100755 (executable)
@@ -121,7 +121,8 @@ ModuleBase_WidgetMultiSelector::ModuleBase_WidgetMultiSelector(QWidget* theParen
   QLabel* aListLabel = new QLabel(!aLabelText.empty() ? aLabelText.c_str()
                                                       : tr("Selected objects:"), this);
   aMainLay->addWidget(aListLabel, 1, 0);
-  // if the xml definition contains one type, an information label should be shown near to the latest
+  // if the xml definition contains one type, an information label 
+  // should be shown near to the latest
   if (aShapeTypes.size() <= 1) {
     QString aLabelIcon = QString::fromStdString(theData->widgetIcon());
     if (!aLabelIcon.isEmpty()) {
@@ -280,7 +281,7 @@ bool ModuleBase_WidgetMultiSelector::setSelection(QList<ModuleBase_ViewerPrsPtr>
 
   if (isDone) // may be the feature's result is not displayed, but attributes should be
     myWorkshop->module()->customizeObject(myFeature, ModuleBase_IModule::CustomizeArguments,
-                                          true);/// hope that something is redisplayed by object updated
+                             true);/// hope that something is redisplayed by object updated
 
   return isDone;
 }
@@ -362,7 +363,7 @@ bool ModuleBase_WidgetMultiSelector::processDelete()
 
     // may be the feature's result is not displayed, but attributes should be
     myWorkshop->module()->customizeObject(myFeature, ModuleBase_IModule::CustomizeArguments,
-                                          true); /// hope that something is redisplayed by object updated
+                              true); /// hope that something is redisplayed by object updated
   }
 
   // Restore selection
@@ -592,7 +593,7 @@ void ModuleBase_WidgetMultiSelector::getSelectedAttributeIndices(std::set<int>&
 }
 
 void ModuleBase_WidgetMultiSelector::convertIndicesToViewerSelection(std::set<int> theAttributeIds,
-                                                      QList<ModuleBase_ViewerPrsPtr>& theValues) const
+                                                   QList<ModuleBase_ViewerPrsPtr>& theValues) const
 {
   if(myFeature.get() == NULL)
     return;
@@ -684,7 +685,8 @@ bool ModuleBase_WidgetMultiSelector::removeUnusedAttributeObjects
   }
   else if (aType == ModelAPI_AttributeRefAttrList::typeId()) {
     std::set<AttributePtr> anAttributes;
-    QList<ModuleBase_ViewerPrsPtr>::const_iterator anIt = theValues.begin(), aLast = theValues.end();
+    QList<ModuleBase_ViewerPrsPtr>::const_iterator 
+      anIt = theValues.begin(), aLast = theValues.end();
     ObjectPtr anObject;
     GeomShapePtr aShape;
     for (; anIt != aLast; anIt++) {
index 5a9382a0dedcee423850054742383f08a9ffdd2a..3b38acb5d4371e70f7e2380e45dfdf68c57fe3b7 100755 (executable)
@@ -148,12 +148,13 @@ protected:
   /// \param theAttributeIds indices in attribute list to be returned
   /// \param theValues the result presentations, filled with object and shape of an attribute item
   void convertIndicesToViewerSelection(std::set<int> theAttributeIds,
-                                       QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theValues) const;
+                            QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theValues) const;
 
   /// Iterates throgh the model attribute list and remove elements which do not present in the list
   /// \param theValues the wrapped selection values
   /// \return true if at least one object is removed
-  virtual bool removeUnusedAttributeObjects(QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theValues);
+  virtual bool removeUnusedAttributeObjects(
+    QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theValues);
 
   /// Converts viewer presentation selection list to objects and shapes map
   /// \param theValues the wrapped selection values
index fda60cc0ea2030903ce8aa1ba33688a20ce6f9ad..3dfcd8e43f62ecef7354940e71290acdacb8b395 100755 (executable)
@@ -80,7 +80,8 @@ void ModuleBase_WidgetSelector::updateOnSelectionChanged(const bool theDone)
 QIntList ModuleBase_WidgetSelector::getShapeTypes() const
 {
   QIntList aShapeTypes = shapeTypes();
-  if (/*aShapeTypes.contains(TopAbs_SOLID) ||*/ // this type should be mentioned in XML, poor selection otherwise
+  // this type should be mentioned in XML, poor selection otherwise
+  if (/*aShapeTypes.contains(TopAbs_SOLID) ||*/ 
       aShapeTypes.contains(ModuleBase_ResultPrs::Sel_Result/*TopAbs_SHAPE*/)) {
     // it should be selectable for both, "solids" and "objects" types
     aShapeTypes.append(TopAbs_COMPSOLID);
@@ -197,7 +198,8 @@ bool ModuleBase_WidgetSelector::setSelectionCustom(const ModuleBase_ViewerPrsPtr
   getGeomSelection(thePrs, anObject, aShape);
 
   // the last flag is to be depending on hasObject is called before. To be corrected later
-  return ModuleBase_Tools::setObject(attribute(), anObject, aShape, myWorkshop, myIsInValidate, true);
+  return ModuleBase_Tools::setObject(attribute(), anObject, aShape, 
+                                     myWorkshop, myIsInValidate, true);
 }
 
 //********************************************************************
@@ -217,7 +219,7 @@ void ModuleBase_WidgetSelector::deactivate()
   }
   else if (anAttribute->attributeType() == ModelAPI_AttributeSelectionList::typeId()) {
     AttributeSelectionListPtr aSelectAttr =
-                             std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(anAttribute);
+                      std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(anAttribute);
     aSelectAttr->removeTemporaryValues();
   }
 }
index 08e6893876b50035d1522a1dca7ab904fefba609..d9ed9a3667230915424e70dbd0bad1134cf757fc 100755 (executable)
@@ -46,7 +46,8 @@ void ModuleBase_WidgetSelectorStore::storeAttributeValue(const AttributePtr& the
     myShape = ModuleBase_Tools::getShape(theAttribute, theWorkshop);
     myRefAttribute = AttributePtr();
     myIsObject = false;
-    AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
+    AttributeRefAttrPtr aRefAttr =
+      std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
     if (aRefAttr) {
       myIsObject = aRefAttr->isObject();
       myRefAttribute = aRefAttr->attr();
@@ -86,7 +87,8 @@ void ModuleBase_WidgetSelectorStore::restoreAttributeValue(const AttributePtr& t
   }
   else {
     ModuleBase_Tools::setObject(theAttribute, myObject, myShape, theWorkshop, true, true);
-    AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
+    AttributeRefAttrPtr aRefAttr = 
+      std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
     if (aRefAttr) {
       if (!myIsObject)
         aRefAttr->setAttr(myRefAttribute);
index 77eff6744cfa77257461edc04bc0901a8ada2e03..894b442b210e858407c2ca40ebc4316c81913587 100644 (file)
@@ -18,7 +18,8 @@
 #include <QStackedLayout>
 #include <QVBoxLayout>
 
-ModuleBase_WidgetSwitch::ModuleBase_WidgetSwitch(QWidget* theParent, const Config_WidgetAPI* theData)
+ModuleBase_WidgetSwitch::ModuleBase_WidgetSwitch(QWidget* theParent, 
+  const Config_WidgetAPI* theData)
 : ModuleBase_PagedContainer(theParent, theData)
 {
   QVBoxLayout*  aMainLay = new QVBoxLayout(this);
index 48a44df867b792aba95718d1e9d19ae67265bea1..81b92a04469ea5377a18636a6ad5c25e45d268bd 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ModuleBase_WidgetToolbox.cpp
  *
@@ -18,7 +19,8 @@
 #include <QVBoxLayout>
 #include <QIcon>
 
-ModuleBase_WidgetToolbox::ModuleBase_WidgetToolbox(QWidget* theParent, const Config_WidgetAPI* theData)
+ModuleBase_WidgetToolbox::ModuleBase_WidgetToolbox(QWidget* theParent, 
+                                                   const Config_WidgetAPI* theData)
 : ModuleBase_PagedContainer(theParent, theData)
 {
   QVBoxLayout* aMainLayout = new QVBoxLayout(this);
index f92d79f4c2cc706f113825751ba72a488a64cd10..d1c737f83680d9399ae81db66be4d6e7d72a09ef 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ModuleBase_WidgetToolbox.h
  *
index daecef19f35de242812527ed9bbc41ff5ed22cdf..e3cf651f0850a3d624cb07aa32543a0209ae9016 100644 (file)
@@ -143,8 +143,9 @@ bool ModuleBase_WidgetValidated::isValidSelection(const ModuleBase_ViewerPrsPtr&
 }
 
 //********************************************************************
-bool ModuleBase_WidgetValidated::isValidSelectionForAttribute(const ModuleBase_ViewerPrsPtr& theValue,
-                                                              const AttributePtr& theAttribute)
+bool ModuleBase_WidgetValidated::isValidSelectionForAttribute(
+                                            const ModuleBase_ViewerPrsPtr& theValue,
+                                            const AttributePtr& theAttribute)
 {
   bool aValid = false;
 
@@ -248,7 +249,8 @@ void ModuleBase_WidgetValidated::blockAttribute(const AttributePtr& theAttribute
 }
 
 //********************************************************************
-void ModuleBase_WidgetValidated::storeValidState(const ModuleBase_ViewerPrsPtr& theValue, const bool theValid)
+void ModuleBase_WidgetValidated::storeValidState(const ModuleBase_ViewerPrsPtr& theValue, 
+                                                 const bool theValid)
 {
   GeomShapePtr aShape = theValue.get() ? theValue->shape() : GeomShapePtr();
   if (aShape.get()) {
@@ -286,13 +288,15 @@ void ModuleBase_WidgetValidated::storeValidState(const ModuleBase_ViewerPrsPtr&
     }
   }
   #ifdef DEBUG_VALID_STATE
-    qDebug(QString("storeValidState: myValidPrs.size() = %1, myInvalidPrs.size() = %2").arg(myValidPrs.count())
+    qDebug(QString("storeValidState: myValidPrs.size() = %1, myInvalidPrs.size() = %2")
+                   .arg(myValidPrs.count())
                    .arg(myInvalidPrs.count()).toStdString().c_str());
   #endif
 }
 
 //********************************************************************
-bool ModuleBase_WidgetValidated::getValidState(const ModuleBase_ViewerPrsPtr& theValue, bool& theValid)
+bool ModuleBase_WidgetValidated::getValidState(const ModuleBase_ViewerPrsPtr& theValue, 
+                                               bool& theValid)
 {
   if (!theValue.get())
     return false;
@@ -378,7 +382,8 @@ void ModuleBase_WidgetValidated::filterCompSolids(QList<ModuleBase_ViewerPrsPtr>
   for (; anIt != aLast; anIt++) {
     const ModuleBase_ViewerPrsPtr& aViewerPrs = *anIt;
     ObjectPtr anObject = aViewerPrs->object();
-    ResultCompSolidPtr aResultCompSolid = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(anObject);
+    ResultCompSolidPtr aResultCompSolid = 
+      std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(anObject);
     if(aResultCompSolid.get()) {
       aCompSolids.insert(aResultCompSolid);
     }
index 427ecf169d63547f6e0a3f226e4db00f0875d973..2271c2be1407878bf0b25dfc961dcd98e7b4f10e 100644 (file)
@@ -137,7 +137,8 @@ private:
   bool isValidAttribute(const AttributePtr& theAttribute) const;
 
 protected:
-  /// Gets the validity state of the presentation in an internal map. Returns true if the valid state of value is stored
+  /// Gets the validity state of the presentation in an internal map. 
+  /// Returns true if the valid state of value is stored
   /// \param theValue a viewer presentation
   /// \param theValid a valid state
   bool getValidState(const std::shared_ptr<ModuleBase_ViewerPrs>& theValue, bool& theValid);
@@ -166,8 +167,11 @@ protected:
 private:
   ObjectPtr myPresentedObject; /// back up of the filtered object
 #ifdef LIST_OF_VALID_PRS
-  QList<std::shared_ptr<ModuleBase_ViewerPrs>> myValidPrs; /// cash of valid selection presentations
-  QList<std::shared_ptr<ModuleBase_ViewerPrs>> myInvalidPrs; /// cash of invalid selection presentations
+  /// cash of valid selection presentations
+  QList<std::shared_ptr<ModuleBase_ViewerPrs>> myValidPrs; 
+
+  /// cash of invalid selection presentations
+  QList<std::shared_ptr<ModuleBase_ViewerPrs>> myInvalidPrs; 
 #else
   // assume that one presentation selection presentation corresponds only one shape
   NCollection_DataMap<TopoDS_Shape, std::shared_ptr<ModuleBase_ViewerPrs> > myValidPrs;
index db9719b807f4d3351301edee79b6920eeb5cffee..912a1985897e122e89031fe58070c12dea1246da 100755 (executable)
@@ -52,7 +52,8 @@ private:
   //! Clear all validated cash in the widget
   void clearValidatedCash();
 
-  /// Gets the validity state of the presentation in an internal map. Returns true if the valid state of value is stored
+  /// Gets the validity state of the presentation in an internal map. 
+  /// Returns true if the valid state of value is stored
   /// \param theValue a viewer presentation
   /// \param theValid a valid state
   bool getValidState(const std::shared_ptr<ModuleBase_ViewerPrs>& theValue, bool& theValid);
@@ -67,8 +68,11 @@ protected:
   ModuleBase_ModelWidget* myModelWidget; ///< the current widget to be validated
   ModuleBase_IWorkshop* myWorkshop; ///< the active workshop
 
-  QList<std::shared_ptr<ModuleBase_ViewerPrs>> myValidPrs; ///< cash of valid selection presentations
-  QList<std::shared_ptr<ModuleBase_ViewerPrs>> myInvalidPrs; ///< cash of invalid selection presentations
+  /// cash of valid selection presentations
+  QList<std::shared_ptr<ModuleBase_ViewerPrs>> myValidPrs; 
+  
+  /// cash of invalid selection presentations
+  QList<std::shared_ptr<ModuleBase_ViewerPrs>> myInvalidPrs; 
 };
 
 #endif /* ModuleBase_WidgetValidator_H_ */
index 03158e47d62dfe127c9019d7a67915fbb63325c5..0f86e784f7df33f62ae6767f4b52719bddc007ae 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
 // Name   : ParametersAPI_Parameter.cpp
 // Purpose: 
 //
index 52626709991851da67991ae802f52753e06707fd..cdf66c71ec61528e5823892d3386f897edc47e29 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
 // Name   : ParametersAPI_Parameter.h
 // Purpose: 
 //
@@ -38,9 +39,12 @@ public:
   virtual ~ParametersAPI_Parameter();
 
   INTERFACE_3(ParametersPlugin_Parameter::ID(),
-              name, ParametersPlugin_Parameter::VARIABLE_ID(), ModelAPI_AttributeString, /** Name */,
-              expression, ParametersPlugin_Parameter::EXPRESSION_ID(), ModelAPI_AttributeString, /** Expression */,
-              comment, ParametersPlugin_Parameter::COMMENT_ID(), ModelAPI_AttributeString, /** Comment */
+              name, ParametersPlugin_Parameter::VARIABLE_ID(), 
+              ModelAPI_AttributeString, /** Name */,
+              expression, ParametersPlugin_Parameter::EXPRESSION_ID(),
+              ModelAPI_AttributeString, /** Expression */,
+              comment, ParametersPlugin_Parameter::COMMENT_ID(),
+              ModelAPI_AttributeString, /** Comment */
   )
 
   /// Dump wrapped feature
index d63741c9fa606596f832c40bd95ddb6524d0b2ac..b3a1d73ec6f6e550d721485ad8c8006ba26181c1 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
 /*
  * ParametersPlugin_EvalListener.cpp
  *
@@ -138,7 +139,8 @@ void ParametersPlugin_EvalListener::processEvaluationEvent(
     bool isValid = anError.empty();
     if (isValid)
       anAttribute->setCalculatedValue(aValue);
-    anAttribute->setUsedParameters(isValid ? toSet(myInterp->compile(anAttribute->text())) : std::set<std::string>());
+    anAttribute->setUsedParameters(isValid ? 
+      toSet(myInterp->compile(anAttribute->text())) : std::set<std::string>());
     anAttribute->setExpressionInvalid(!isValid);
     anAttribute->setExpressionError(anAttribute->text().empty() ? "" : anError);
   } else
@@ -150,7 +152,8 @@ void ParametersPlugin_EvalListener::processEvaluationEvent(
     bool isValid = anError.empty();
     if (isValid)
       anAttribute->setCalculatedValue(aValue);
-    anAttribute->setUsedParameters(isValid ? toSet(myInterp->compile(anAttribute->text())) : std::set<std::string>());
+    anAttribute->setUsedParameters(isValid ? 
+      toSet(myInterp->compile(anAttribute->text())) : std::set<std::string>());
     anAttribute->setExpressionInvalid(!isValid);
     anAttribute->setExpressionError(anAttribute->text().empty() ? "" : anError);
   } else
@@ -172,7 +175,8 @@ void ParametersPlugin_EvalListener::processEvaluationEvent(
       double aValue = evaluate(aParamFeature, aText[i], anError);
       bool isValid = anError.empty();
       if (isValid) aCalculatedValue[i] = aValue;
-      anAttribute->setUsedParameters(i, isValid ? toSet(myInterp->compile(aText[i])) : std::set<std::string>());
+      anAttribute->setUsedParameters(i, 
+        isValid ? toSet(myInterp->compile(aText[i])) : std::set<std::string>());
       anAttribute->setExpressionInvalid(i, !isValid);
       anAttribute->setExpressionError(i, aText[i].empty() ? "" : anError);
     }
@@ -196,7 +200,8 @@ void ParametersPlugin_EvalListener::processEvaluationEvent(
       double aValue = evaluate(aParamFeature, aText[i], anError);
       bool isValid = anError.empty();
       if (isValid) aCalculatedValue[i] = aValue;
-      anAttribute->setUsedParameters(i, isValid ? toSet(myInterp->compile(aText[i])) : std::set<std::string>());
+      anAttribute->setUsedParameters(i, 
+        isValid ? toSet(myInterp->compile(aText[i])) : std::set<std::string>());
       anAttribute->setExpressionInvalid(i, !isValid);
       anAttribute->setExpressionError(i, aText[i].empty() ? "" : anError);
     }
@@ -313,9 +318,10 @@ void ParametersPlugin_EvalListener::renameInAttribute(
   }
 }
 
-void ParametersPlugin_EvalListener::renameInDependents(std::shared_ptr<ModelAPI_ResultParameter> theResultParameter,
-                                                       const std::string& theOldName,
-                                                       const std::string& theNewName)
+void ParametersPlugin_EvalListener::renameInDependents(
+              std::shared_ptr<ModelAPI_ResultParameter> theResultParameter,
+              const std::string& theOldName,
+              const std::string& theNewName)
 {
   std::set<std::shared_ptr<ModelAPI_Attribute> > anAttributes =
       theResultParameter->data()->refsToMe();
@@ -397,8 +403,11 @@ void ParametersPlugin_EvalListener::processObjectRenamedEvent(
 
   // try to update the parameter feature according the new name
   setParameterName(aResultParameter, aMessage->newName());
-  // TODO(spo): replace with ModelAPI_Session::get()->validators()->validate(aParameter, ParametersPlugin_Parameter::VARIABLE_ID())
-  // when ModelAPI_ValidatorsFactory::validate(const std::shared_ptr<ModelAPI_Feature>& theFeature, const std::string& theAttribute) const
+  // TODO(spo): replace with 
+  // ModelAPI_Session::get()->validators()->validate(aParameter, 
+  //                                                 ParametersPlugin_Parameter::VARIABLE_ID())
+  // when ModelAPI_ValidatorsFactory::validate(const std::shared_ptr<ModelAPI_Feature>& theFeature,
+  //                                           const std::string& theAttribute) const
   // is ready
   if (!isValidAttribute(aParameter->string(ParametersPlugin_Parameter::VARIABLE_ID()))) {
     setParameterName(aResultParameter, aMessage->oldName());
index 76639caef039b10245949a594ea85a53ffc14166..3b870a879711cda42188a997f64e8a7b3b4aa306 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
 /*
  * ParametersPlugin_EvalListener.h
  *
@@ -30,7 +31,8 @@ class ParametersPlugin_EvalListener : public Events_Listener
   PARAMETERSPLUGIN_EXPORT virtual ~ParametersPlugin_EvalListener();
 
   /// Reimplemented from Events_Listener::processEvent().
-  PARAMETERSPLUGIN_EXPORT virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
+  PARAMETERSPLUGIN_EXPORT 
+    virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
 
  protected:
   /// Evaluates theExpression and returns its value.
index 975ca1e3a32eff654ca3bd9cf30239727832cb9e..cc1946413fd43bbd4c6bae302e0f0d0a552dbdc7 100644 (file)
@@ -34,7 +34,8 @@ ParametersPlugin_Plugin::ParametersPlugin_Plugin()
   aFactory->registerValidator("Parameters_ExpressionValidator",
                               new ParametersPlugin_ExpressionValidator);
 
-  myEvalListener = std::shared_ptr<ParametersPlugin_EvalListener>(new ParametersPlugin_EvalListener());
+  myEvalListener = 
+    std::shared_ptr<ParametersPlugin_EvalListener>(new ParametersPlugin_EvalListener());
 }
 
 FeaturePtr ParametersPlugin_Plugin::createFeature(std::string theFeatureID)
index 1d9851b834cbae5ed65090333c90c97a70a1b376..b15dc2ac7e74d744e9ef300a25fc7833100cb9c0 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ParametersPlugin_PyInterp.cpp
  *
@@ -81,7 +82,8 @@ std::list<std::string> ParametersPlugin_PyInterp::compile(const std::string& the
   }
 
   PyObject *aCodePyObj =
-      PyObject_CallMethod(aCodeopModule, (char*)"compile_command", (char*)"(s)", theExpression.c_str());
+    PyObject_CallMethod(aCodeopModule, (char*)"compile_command", (char*)"(s)", 
+                        theExpression.c_str());
 
   if(!aCodePyObj || aCodePyObj == Py_None || !PyCode_Check(aCodePyObj)) {
     Py_XDECREF(aCodePyObj);
index 6764db13a2112c211243269215043921aee352ba..6f4a30467d3695ae88f7aeb07594e8aeb7784174 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
 /*
  * ParametersPlugin_PyInterp.h
  *
index 7c5f839ab7298f18f73089d39b25578b881b2a16..f1bb988a6ef676a1c3e1e2a5e97b01dde72d32c0 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
 /*
  * Parameters_VariableValidator.cpp
  *
index 50b0e937d1afacd8fea0e1142563a6dce5eab436..0881b3a69d1a88e14c4e7f9bfe08f7f23cae000e 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
 /*
  * Parameters_VariableValidator.h
  *
index 3350f9285c5a8dff16c38c056d456030f9751662..485ad91297a7ccd2b0ec05679ff71631389c9a6b 100644 (file)
@@ -123,7 +123,8 @@ QWidget* ParametersPlugin_ItemDelegate::createEditor(QWidget* parent,
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////////////
-void ParametersPlugin_TreeWidget::closeEditor(QWidget* theEditor, QAbstractItemDelegate::EndEditHint theHint)
+void ParametersPlugin_TreeWidget::closeEditor(QWidget* theEditor, 
+                                              QAbstractItemDelegate::EndEditHint theHint)
 {
   if (theHint == QAbstractItemDelegate::EditNextItem) {
     QModelIndex aCurrent = currentIndex();
@@ -158,7 +159,8 @@ void ParametersPlugin_TreeWidget::closeEditor(QWidget* theEditor, QAbstractItemD
 
 /////////////////////////////////////////////////////////////////////////////////////////////////
 
-ParametersPlugin_WidgetParamsMgr::ParametersPlugin_WidgetParamsMgr(QWidget* theParent, const Config_WidgetAPI* theData)
+ParametersPlugin_WidgetParamsMgr::ParametersPlugin_WidgetParamsMgr(QWidget* theParent, 
+  const Config_WidgetAPI* theData)
   : ModuleBase_ModelDialogWidget(theParent, theData)
 {
   QVBoxLayout* aLayout = new QVBoxLayout(this);
@@ -338,12 +340,14 @@ QList<QStringList> ParametersPlugin_WidgetParamsMgr::
             QStringList aValNames;
             aValNames << aReferenced->data()->name().c_str();
 
-            AttributeDoublePtr aDouble = std::dynamic_pointer_cast<ModelAPI_AttributeDouble>(aAttr);
+            AttributeDoublePtr aDouble =
+              std::dynamic_pointer_cast<ModelAPI_AttributeDouble>(aAttr);
             if (aDouble.get()) {
               aValNames << aDouble->text().c_str();
               aValNames << QString::number(aDouble->value());
             } else {
-              AttributeIntegerPtr aInt = std::dynamic_pointer_cast<ModelAPI_AttributeInteger>(aAttr);
+              AttributeIntegerPtr aInt =
+                std::dynamic_pointer_cast<ModelAPI_AttributeInteger>(aAttr);
               if (aInt.get()) {
                 aValNames << aInt->text().c_str();
                 aValNames << QString::number(aInt->value());
@@ -382,7 +386,8 @@ QList<QStringList> ParametersPlugin_WidgetParamsMgr::
     } else
       aValues << aExpr.c_str();
 
-    std::string aErr = aParameter->data()->string(ParametersPlugin_Parameter::EXPRESSION_ERROR_ID())->value();
+    std::string aErr =
+      aParameter->data()->string(ParametersPlugin_Parameter::EXPRESSION_ERROR_ID())->value();
     if (aErr.empty()) {
       AttributeDoublePtr aValueAttribute = aParam->data()->real(ModelAPI_ResultParameter::VALUE());
       aValues << QString::number(aValueAttribute->value());
@@ -433,7 +438,8 @@ void ParametersPlugin_WidgetParamsMgr::onCloseEditor(QWidget* theEditor,
     break;
   case Col_Equation:
     {
-      AttributeStringPtr aStringAttr = aFeature->string(ParametersPlugin_Parameter::EXPRESSION_ID());
+      AttributeStringPtr aStringAttr = 
+        aFeature->string(ParametersPlugin_Parameter::EXPRESSION_ID());
       if (!aText.isEmpty()) {
         if (aText != aStringAttr->value().c_str()) {
           aStringAttr->setValue(aText.toStdString());
index 0606cf092d52c7a943f1e9266df89c45dc032bf0..74ae279627ece880070d98e06565a2d908c2f1d8 100644 (file)
@@ -128,7 +128,8 @@ private:
   /// Enable or disable buttons for parameters managemnt
   void enableButtons(bool theEnable);
 
-  QList<QStringList> featuresItems(const QList<FeaturePtr>& theFeatures, QList<FeaturePtr>& theFeatureList) const;
+  QList<QStringList> featuresItems(const QList<FeaturePtr>& theFeatures, 
+                                   QList<FeaturePtr>& theFeatureList) const;
   QList<QStringList> parametersItems(const QList<FeaturePtr>& theFeatures) const;
 
   void updateParametersFeatures();