]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Spell-checking
authorspo <sergey.pokhodenko@opencascade.com>
Tue, 14 Jul 2015 13:15:56 +0000 (16:15 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Tue, 14 Jul 2015 13:16:34 +0000 (16:16 +0300)
18 files changed:
src/Config/Config_FeatureReader.h
src/Events/Events_Message.h
src/Model/Model_Data.cpp
src/Model/Model_Document.h
src/Model/Model_Objects.h
src/Model/Model_Update.cpp
src/ModelAPI/ModelAPI_AttributeSelectionList.h
src/ModelAPI/ModelAPI_Data.h
src/ModelAPI/ModelAPI_Events.h
src/ModelAPI/ModelAPI_Result.h
src/ModelAPI/ModelAPI_Session.h
src/ModuleBase/ModuleBase_IWorkshop.h
src/ModuleBase/ModuleBase_ModelWidget.h
src/ModuleBase/ModuleBase_WidgetFileSelector.h
src/ModuleBase/ModuleBase_WidgetMultiSelector.cpp
src/ModuleBase/ModuleBase_WidgetMultiSelector.h
src/ModuleBase/ModuleBase_WidgetSwitch.h
src/PartSet/PartSet_WidgetEditor.h

index a0952ec1b69afacf95a44f43140848447b084bef..409af6c7ec4270ae3db3e4d98f5f4a7a23c57339 100644 (file)
@@ -39,7 +39,7 @@ class Config_FeatureReader : public Config_XMLReader
   /// Overloaded method. Defines how to process each node
   virtual void processNode(xmlNodePtr aNode);
 
-  /// Overloaded method. Clears attribute cache on extit from attribute's node
+  /// Overloaded method. Clears attribute cache on exit from attribute's node
   virtual void cleanup(xmlNodePtr aNode);
 
   /// Overloaded method. Defines if the given node should be parsed recursively
index 40027344a7231cef442347b7cbfbb69c940f04b1..c55149ff21bf19037e97bd17d1aef7aaadbcaef0 100644 (file)
@@ -14,9 +14,9 @@
  * \brief Identifier of the event kind.
  *
  * Each event ID is created in main Envent_Loop class
- * that stores correspondance between the string-name of the
+ * that stores correspondence between the string-name of the
  * identifier and the pointer to the static string that is really
- * used as an identifier (this is usefull for debugging of the events
+ * used as an identifier (this is useful for debugging of the events
  * with log files and in debugger).
  */
 class EVENTS_EXPORT Events_ID
index 2f1eb6f9556aba2f499b19711fc5baa8618381c9..dd2f8313088c96794083e2653a5e15b656c638d2 100644 (file)
@@ -119,7 +119,7 @@ AttributePtr Model_Data::addAttribute(const std::string& theID, const std::strin
   } else if (theAttrType == ModelAPI_AttributeIntArray::typeId()) {
     anAttr = new Model_AttributeIntArray(anAttrLab);
   } 
-  // create also GeomData attributes here because only here the OCAF strucure is known
+  // create also GeomData attributes here because only here the OCAF structure is known
   else if (theAttrType == GeomData_Point::typeId()) {
     anAttr = new GeomData_Point(anAttrLab);
   } else if (theAttrType == GeomData_Dir::typeId()) {
index 9dff1f2cff23264a4113329a0c96106601ac591a..997765a85fc6e0c738808a8361541e67933ae28d 100644 (file)
@@ -110,7 +110,7 @@ class Model_Document : public ModelAPI_Document
   //! Internal sub-document by ID
   MODEL_EXPORT virtual std::shared_ptr<Model_Document> subDoc(std::string theDocID);
 
-  ///! Returns the id of hte document
+  ///! Returns the id of the document
   MODEL_EXPORT virtual const std::string& id() const
   {
     return myID;
index ec81a9f6ad1cbfaf9352fa7df0ba4957065bb2a1..a78ac94185acb12c6cc6f716d0d5e8d22cb05dba 100644 (file)
@@ -94,7 +94,7 @@ class Model_Objects
   //! Returns the feature by zero-based index: features in the history or not
   std::shared_ptr<ModelAPI_Feature> internalFeature(const int theIndex);
 
-  /// Creates a construction cresults
+  /// Creates a construction results
   std::shared_ptr<ModelAPI_ResultConstruction> createConstruction(
       const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0);
   /// Creates a body results
index 0083fede83207e291ee632440e91903281225225..8dce5e1ca80f7ed9c03fec99b32b54c209212191 100644 (file)
@@ -108,7 +108,7 @@ void Model_Update::processEvent(const std::shared_ptr<Events_Message>& theMessag
       }
       #endif
     }
-    // this event is for solver update, not here, do not react immideately
+    // this event is for solver update, not here, do not react immediately
     if (!isOnlyResults && !(theMessage->eventID() == kMovedEvent))
       processOperation(false);
   } else if (theMessage->eventID() == kOpFinishEvent || theMessage->eventID() == kOpAbortEvent ||
@@ -348,7 +348,7 @@ ModelAPI_ExecState stateByReference(ObjectPtr theTarget, const ModelAPI_ExecStat
 
 void Model_Update::updateArguments(FeaturePtr theFeature) {
   // perform this method also for disabled features: to make "not done" state for
-  // featuers referenced to the active and modified features
+  // features referenced to the active and modified features
 
   static ModelAPI_ValidatorsFactory* aFactory = ModelAPI_Session::get()->validators();
 
index 170efc09add30ae8f178f5acd159e82701d8935c..7994c37a62930f135c5e5448053e153650805914 100644 (file)
@@ -27,7 +27,7 @@ class ModelAPI_AttributeSelectionList : public ModelAPI_Attribute
   /// The type of shape is taken from the current selection type
   virtual void append(std::string theNamingName) = 0;
 
-  /// Returns the number ofselection attributes in the list
+  /// Returns the number of selection attributes in the list
   virtual int size() = 0;
 
   /// The type of all elements selection
index dfc6ee32af3359791efbc29ccb5ca74c278bd27d..d06d7c100d99eaf153ad16f2aee7cd0b67754bdb 100644 (file)
@@ -141,7 +141,7 @@ class MODELAPI_EXPORT ModelAPI_Data
   virtual void referencesToObjects(
     std::list<std::pair<std::string, std::list<std::shared_ptr<ModelAPI_Object> > > >& theRefs) =0;
 
-  /// Copies all atributes content into theTarget data
+  /// Copies all attributes content into theTarget data
   virtual void copyTo(std::shared_ptr<ModelAPI_Data> theTarget) = 0;
 
   /// Returns the invalid data pointer (to avoid working with NULL shared ptrs in swig)
index bcb50be1e84850b491f0026ab1c0839ebb8adecb..eb64dc19efbf29a8d77c763c3f9021b12ee17209 100644 (file)
@@ -180,7 +180,7 @@ class ModelAPI_AttributeEvalMessage : public Events_Message
     return anId;
   }
 
-  /// usefull method that creates and sends the AttributeEvalMessage event
+  /// Useful method that creates and sends the AttributeEvalMessage event
   MODELAPI_EXPORT static void send(AttributePtr theAttribute, const void* theSender)
   {
     std::shared_ptr<ModelAPI_AttributeEvalMessage> aMessage =
index 7922612c68f203e139c9011f9f8aef5161d87bf1..97359e5ad74d9d43b3fa3bc9f6acedaedb53e60e 100644 (file)
@@ -52,7 +52,7 @@ class ModelAPI_Result : public ModelAPI_Object
   /// Returns the result is disabled or not.
   MODELAPI_EXPORT virtual bool isDisabled() const;
 
-  // Retuns the parameters of color definition in the resources config manager
+  // Returns the parameters of color definition in the resources config manager
   virtual void colorConfigInfo(std::string& theSection, std::string& theName,
     std::string& theDefault) {}
 
index fe78aebf3b9f1be9c0972f7433d853e16463c652..2f778aa2e6ee6b9e2859338e41e7e5676c36d281 100644 (file)
@@ -44,7 +44,7 @@ class MODELAPI_EXPORT ModelAPI_Session
   //! Closes all documents
   virtual void closeAll() = 0;
 
-  //! Starts a new operation (opens a tansaction)
+  //! Starts a new operation (opens a transaction)
   //! \param theId of operation for history (optional)
   //! \param theAttachedToNested if it is true, it means that this transaction is attached to the nested 
   //!          where it is located and will be commited on the next commit with the nested
index a4f4afc28a332b41b2c1d99e1a61f8d9dd57ab0f..c148fafc7ab39c91f66f95b8e3ec02bde294ba91 100644 (file)
@@ -26,7 +26,7 @@ class ModuleBase_FilterFactory;
 
 /**
  * \ingroup GUI
- * Class which provides access to Workshop object serveces
+ * Class which provides access to Workshop object services
  */
 class MODULEBASE_EXPORT ModuleBase_IWorkshop : public QObject
 {
@@ -74,7 +74,7 @@ Q_OBJECT
   //! Returns true if the operation with id theId can be started
   virtual bool canStartOperation(QString theId) = 0;
 
-  //! Returns AIS opbject by data object
+  //! Returns AIS object by data object
   virtual AISObjectPtr findPresentation(const ObjectPtr& theObject) const = 0;
 
   //! Returns data object by AIS
@@ -85,7 +85,7 @@ Q_OBJECT
   virtual void setSelected(const QList<ModuleBase_ViewerPrs>& theValues) = 0;
 
 signals:
-  /// Signal selection chaged.
+  /// Signal selection changed.
   void selectionChanged();
 
   /// Signal which is emited after activation of property panel
index 4926a1e8118fbd6a0fff57f6cc40f2286dad0b27..031c5dd421bd24cb9af75dfcb1581db2e2bd9fd5 100644 (file)
@@ -35,7 +35,7 @@ Q_OBJECT
  public:
   /// Constructor
   /// \param theParent the parent object
-  /// \param theData the widget configuation. The attribute of the model widget is obtained from
+  /// \param theData the widget configuration. The attribute of the model widget is obtained from
   /// \param theParentId is Id of a parent of the current attribute
   ModuleBase_ModelWidget(QWidget* theParent, const Config_WidgetAPI* theData,
                          const std::string& theParentId);
@@ -98,10 +98,10 @@ Q_OBJECT
   /// \return the state whether the widget can accept the focus
   virtual bool focusTo();
 
-  /// The methiod called when widget is activated
+  /// The method called when widget is activated
   void activate();
 
-  /// The methiod called when widget is deactivated
+  /// The method called when widget is deactivated
   virtual void deactivate() {}
 
   /// Returns list of widget controls
@@ -177,7 +177,7 @@ signals:
   void focusOutWidget(ModuleBase_ModelWidget* theWidget);
 
  protected:
-  /// Sets default value of widget. Nornaly, widget should fetch this value 
+  /// Sets default value of widget. Normally, widget should fetch this value
   /// from the xml. However, some widgets derived widgets could define it
   void setDefaultValue(const std::string& theValue);
   /// \brief Set the attribute name
@@ -195,7 +195,7 @@ signals:
   /// \return True in success
   virtual bool storeValueCustom() const = 0;
 
-  /// The methiod called when widget is activated
+  /// The method called when widget is activated
   virtual void activateCustom() {};
 
 protected slots:
index ae2d0daa761f50dd0babda225424567baef38f16..8b5987fa086a9e27c58fd559a7ba23754277d8ec 100644 (file)
@@ -33,6 +33,9 @@ class QLineEdit;
 *          <validator id="ExchangePlugin_ImportFormat" parameters="BREP:BREPImport,STEP:STEPImport" />
 *      </file_selector>
 *  \endcode
+* It can use following parameters:
+* - id - name of object attribute
+* - type - type of dialog. Possible values: open, save.
 */
 class MODULEBASE_EXPORT ModuleBase_WidgetFileSelector : public ModuleBase_ModelWidget
 {
@@ -40,7 +43,7 @@ class MODULEBASE_EXPORT ModuleBase_WidgetFileSelector : public ModuleBase_ModelW
  public:
   /// Constructor
   /// \param theParent the parent object
-  /// \param theData the widget configuation. The attribute of the model widget is obtained from
+  /// \param theData the widget configuration. The attribute of the model widget is obtained from
   /// \param theParentId is Id of a parent of the current attribute
   ModuleBase_WidgetFileSelector(QWidget* theParent,
                                 const Config_WidgetAPI* theData,
index 770882294fe6107bcdc1e6fe6784d140f12b5805..a0e85e14c2c0342d8722d39e45da41ce28945546 100644 (file)
@@ -51,7 +51,7 @@ ModuleBase_WidgetMultiSelector::ModuleBase_WidgetMultiSelector(QWidget* theParen
   aMainLay->addWidget(aTypeLabel, 0, 0);
 
   myTypeCombo = new QComboBox(this);
-  // There is no sence to paramerize list of types while we can not parametrize selection mode
+  // There is no sense to parameterize list of types while we can not parameterize selection mode
 
   std::string aPropertyTypes = theData->getProperty("type_choice");
   QString aTypesStr = aPropertyTypes.c_str();
index 2fed320e4e18ea56403ba3b4689d2f4b31bf4b29..11f9023a4d54c6161e2deda816e83b74b5837bba 100644 (file)
@@ -43,7 +43,7 @@ class QAction;
 *    tooltip="Select a set of objects" 
 *    type_choice="Vertices Edges Faces Solids" /> 
 * \endcode
-* It uses folloing parameters:
+* It uses following parameters:
 * - id - is a name of corresponded attribute
 * - tooltip - a tooltip for the widget
 * - type_choice - list of expected shape types.
@@ -55,7 +55,7 @@ class MODULEBASE_EXPORT ModuleBase_WidgetMultiSelector : public ModuleBase_Widge
   /// Constructor
   /// \param theParent the parent object
   /// \param theWorkshop instance of workshop interface
-  /// \param theData the widget configuation. The attribute of the model widget is obtained from
+  /// \param theData the widget configuration. The attribute of the model widget is obtained from
   /// \param theParentId is Id of a parent of the current attribute
   ModuleBase_WidgetMultiSelector(QWidget* theParent,
                                  ModuleBase_IWorkshop* theWorkshop,
index aafb6224f0c280599a33eb0d5b6769f6222eed5b..fe89a0749366ca7db0f82a0cdc65ba4b4d212757 100644 (file)
@@ -18,7 +18,7 @@ class QStackedLayout;
 
 /**
 * \ingroup GUI
-* Implements a model widget for swithch as a container widget. It can be defined in XML with "switch" keyword
+* Implements a model widget for switch as a container widget. It can be defined in XML with "switch" keyword
 */
 class MODULEBASE_EXPORT ModuleBase_WidgetSwitch : public ModuleBase_PagedContainer
 {
index a4f611146f83e9940b3b481c6359ba4499fd5954..3536ebfafb61317443e4e6db262872bcdb95dd5c 100644 (file)
@@ -16,7 +16,7 @@ class ModuleBase_IWorkshop;
 
 /**
 * \ingroup Modules
-* Customosation of ModuleBase_WidgetEditor in order to do not show the editor value if the mouse
+* Customization of ModuleBase_WidgetEditor in order to do not show the editor value if the mouse
 * cursor is not over the OCC window
 */
 class PARTSET_EXPORT PartSet_WidgetEditor : public ModuleBase_WidgetEditor
@@ -26,7 +26,7 @@ Q_OBJECT
   /// Constructor
   /// \param theParent the parent object
   /// \param theWorkshop instance of workshop interface
-  /// \param theData the widget configuation. The attribute of the model widget is obtained from
+  /// \param theData the widget configuration. The attribute of the model widget is obtained from
   /// \param theParentId is Id of a parent of the current attribute
   PartSet_WidgetEditor(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop,
                        const Config_WidgetAPI* theData, const std::string& theParentId);
@@ -42,4 +42,4 @@ private:
   ModuleBase_IWorkshop* myWorkshop; // the current workshop
 };
 
-#endif
\ No newline at end of file
+#endif