]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Issue #1863: Edit multi-lines
authorvsv <vitaly.smetannikov@opencascade.com>
Thu, 10 Nov 2016 07:49:33 +0000 (10:49 +0300)
committervsv <vitaly.smetannikov@opencascade.com>
Thu, 10 Nov 2016 07:49:33 +0000 (10:49 +0300)
cpplint.cfg
src/FeaturesPlugin/FeaturesPlugin_ValidatorTransform.cpp
src/FeaturesPlugin/FeaturesPlugin_Validators.cpp
src/GeomValidators/GeomValidators_ShapeType.cpp
src/ModuleBase/ModuleBase_Tools.cpp
src/ParametersPlugin/ParametersPlugin_EvalListener.cpp
src/PartSet/PartSet_OverconstraintListener.cpp
src/SketchSolver/SketchSolver_Error.h
src/XGUI/XGUI_Tools.cpp
src/XGUI/XGUI_Workshop.cpp

index e4c091ed6364352a7164f2bfd70805657bfcf8b3..0b65a5f2bfe00b16bf14a812a392f5510530c164 100644 (file)
@@ -1,5 +1,6 @@
 linelength=100
-filter=-whitespace,+whitespace/empty_loop_body,-readability,-build,-runtime
+filter=-,+readability/multiline_string
 root=src
-#+whitespace/line_length
-#+whitespace/end_of_line
+# whitespace/line_length
+# whitespace/end_of_line
+# whitespace/empty_loop_body
index d64b506b01abeb4ac2bf83248ae5d5033f124ef0..c7a92abe0770665841df82b4a868d8ca0bbb50f6 100755 (executable)
@@ -48,8 +48,8 @@ bool FeaturesPlugin_ValidatorTransform::isValid(const AttributePtr& theAttribute
   if (!aValid) {
     std::string aResultGroupName = isPartSetDocument ? ModelAPI_ResultPart::group()
                                                      : ModelAPI_ResultBody::group();
-    theError = "Objects from the %1 group can be selected in the %2 document, \
- but an objects from the %3 group is selected.";
+    theError = "Objects from the %1 group can be selected in the %2 document, "
              "but an objects from the %3 group is selected.";
     theError.arg(aResultGroupName).arg(aDocument->kind()).arg(anErrorGroupName);
   }
   return aValid;
index be031014be35ffe25bd16063926ab80ee7db74ae..107815387167cc41b77a3484e754f0eaeb1f4f2b 100644 (file)
@@ -187,8 +187,8 @@ bool FeaturesPlugin_ValidatorBaseForGeneration::isValid(const AttributePtr& theA
         // Whole sketch selected.
         if(aSelectedSketchesFromObjects.find(aResultConstruction) !=
             aSelectedSketchesFromObjects.cend()) {
-          theError = "Error: Object from this sketch is already selected. \
- Sketch is not allowed for selection.";
+          theError = "Error: Object from this sketch is already selected. "
                    "Sketch is not allowed for selection.";
           return false;
         }
 
@@ -196,8 +196,8 @@ bool FeaturesPlugin_ValidatorBaseForGeneration::isValid(const AttributePtr& theA
       } else {
         // Object from sketch selected.
         if(aSelectedSketches.find(aResultConstruction) != aSelectedSketches.cend()) {
-          theError = "Error: Whole sketch with this object is already selected. \
- Don't allow to select this object.";
+          theError = "Error: Whole sketch with this object is already selected. "
                    "Don't allow to select this object.";
           return false;
         }
 
@@ -299,9 +299,9 @@ bool FeaturesPlugin_ValidatorBaseForGeneration::isValidAttribute(const Attribute
     // Check that object is a shape with allowed type.
     GeomValidators_ShapeType aShapeTypeValidator;
     if(!aShapeTypeValidator.isValid(anAttr, theArguments, theError)) {
-      theError = "Error: Selected shape has unacceptable type. Acceptable types are: faces or \
- wires on sketch, whole sketch(if it has at least one face), \
- and whole objects with shape types: %1";
+      theError = "Error: Selected shape has unacceptable type. Acceptable types are: faces or "
+                 "wires on sketch, whole sketch(if it has at least one face), "
                "and whole objects with shape types: %1";
       std::string anArgumentString;
       for(auto anIt = theArguments.cbegin(); anIt != theArguments.cend(); ++anIt) {
         if (!anArgumentString.empty())
@@ -401,8 +401,8 @@ bool FeaturesPlugin_ValidatorExtrusionDir::isValid(
   if(!aDirShape.get()) {
     // Check that dir can be empty.
     if(!isShapesCanBeEmpty(aCheckAttribute, theError)) {
-      theError = "Error: Base objects list contains vertex or edge, so attribute \"%1\" \
- can not be used with default value. Select direction for extrusion.";
+      theError = "Error: Base objects list contains vertex or edge, so attribute \"%1\" "
                "can not be used with default value. Select direction for extrusion.";
       theError.arg(*anArgsIt);
       return false;
     } else {
index 022704317c4107941729ab8fe14e06488a8c9621..4a417818a236dec7c0f450a964a1536095218dbe 100755 (executable)
@@ -91,8 +91,8 @@ bool GeomValidators_ShapeType::isValid(const AttributePtr& theAttribute,
       if (!aTypes.empty())
         aTypes += ", ";
     }
-    theError = "It does not contain element with acceptable shape type. \
- The type should be one of the next: %1";
+    theError = "It does not contain element with acceptable shape type. "
              "The type should be one of the next: %1";
     theError.arg(aTypes);
   }
 
index ae98b8a18d4f8d79798063e20a8c77c72cb6c098..adf14c58af0f6941f5d8e53946903b1cb8bd744f 100755 (executable)
@@ -1151,14 +1151,14 @@ bool askToDelete(const std::set<FeaturePtr> theFeatures,
   if (!aNotActivatedDocWrn.isEmpty())
     aText += aNotActivatedDocWrn;
   if (!anOtherFeatureNames.empty()) {
-    const char* aMsg = "Features are used in the following features: %1.\nThese \
- features will be deleted.\n";
+    const char* aMsg = "Features are used in the following features: %1.\nThese "
                      "features will be deleted.\n";
     aText += QString(QObject::tr(aMsg))
                      .arg(anOtherFeatureNames.join(aSep));
   }
   if (!aParamFeatureNames.empty()) {
-    const char* aMsg = "Parameters are used in the following features: %1.\nThese features will \
- be deleted.\nOr parameters could be replaced by their values.\n";
+    const char* aMsg = "Parameters are used in the following features: %1.\nThese features will "
                      "be deleted.\nOr parameters could be replaced by their values.\n";
     aText += QString(QObject::tr(aMsg))
                      .arg(aParamFeatureNames.join(aSep));
     QPushButton *aReplaceButton = 
index b3a1d73ec6f6e550d721485ad8c8006ba26181c1..791af81bfcc99b449882429b10c933619f662e2b 100644 (file)
@@ -392,8 +392,8 @@ void ParametersPlugin_EvalListener::processObjectRenamedEvent(
   std::string aNotActivatedNames;
   if (!ModelAPI_Tools::allDocumentsActivated(aNotActivatedNames)) {
     QMessageBox::StandardButton aRes = QMessageBox::warning(0, QObject::tr("Warning"),
-               QObject::tr("Selected objects can be used in Part documents which are not loaded: \
-%1. Whould you like to continue?").arg(aNotActivatedNames.c_str()),
+               QObject::tr("Selected objects can be used in Part documents which are not loaded: "
+                           "%1. Whould you like to continue?").arg(aNotActivatedNames.c_str()),
                QMessageBox::No | QMessageBox::Yes, QMessageBox::No);
     if (aRes != QMessageBox::Yes) {
       setParameterName(aResultParameter, aMessage->oldName());
index 769c54bca3d97833d6467ab538429137b44f7daa..39ee53259572a4c29fa2b1caf666986ecc48fd77 100755 (executable)
@@ -63,8 +63,8 @@ void PartSet_OverconstraintListener::processEvent(
 
   QString aCurrentInfoStr = getObjectsInfo(myConflictingObjects);
 
-  QString aMsg("PartSet_OverconstraintListener::processEvent: %1,\nobjects  \
- count = %2:%3\ncurrent objects count = %4:%5");
+  QString aMsg("PartSet_OverconstraintListener::processEvent: %1,\nobjects "
              "count = %2:%3\ncurrent objects count = %4:%5");
   qDebug(aMsg.arg(isRepaired ? "REPAIRED" : "FAILED")
              .arg(aCount).arg(anInfoStr).arg(myConflictingObjects.size())
              .arg(aCurrentInfoStr).toStdString().c_str());
index 148e5de066b9625db41f295f13442f3368dc54d6..8423eb52e70dc6384304441724219a2045d2b067 100644 (file)
@@ -20,8 +20,8 @@ class SketchSolver_Error
   /// The value parameter for the constraint
   inline static const std::string& CONSTRAINTS()
   {
-    static const std::string MY_ERROR_VALUE("The constraint is conflicting with others. \
- To fix this, you can either undo your operation or remove a conflicting constraint.");
+    static const std::string MY_ERROR_VALUE("The constraint is conflicting with others. "
     "To fix this, you can either undo your operation or remove a conflicting constraint.");
     return MY_ERROR_VALUE;
   }
   /// Constraints should use objects instead of features as attributes
index e1aa82f7c2dfc148c880f7c0d391fce002bcee6e..02beb1150148a9f2bda3783b9910e64421d84dcf 100644 (file)
@@ -114,9 +114,10 @@ bool canRemoveOrRename(QWidget* theParent, const std::set<FeaturePtr>& theFeatur
   if (!ModelAPI_Tools::allDocumentsActivated(aNotActivatedNames)) {
     bool aFoundPartSetObject = ModuleBase_Tools::hasModuleDocumentFeature(theFeatures);
     if (aFoundPartSetObject) {
+      const char* aKeyStr = "Selected objects can be used in Part documents which are not loaded: "
+                            "%1. Whould you like to continue?";
       QMessageBox::StandardButton aRes = QMessageBox::warning(theParent, QObject::tr("Warning"),
-               QObject::tr("Selected objects can be used in Part documents which are not loaded: \
-%1. Whould you like to continue?").arg(aNotActivatedNames.c_str()),
+               QObject::tr(aKeyStr).arg(aNotActivatedNames.c_str()),
                QMessageBox::No | QMessageBox::Yes, QMessageBox::No);
       aResult = aRes == QMessageBox::Yes;
     }
@@ -132,9 +133,9 @@ bool canRename(const ObjectPtr& theObject, const QString& theName)
     ResultParameterPtr aParam;
     if (ModelAPI_Tools::findVariable(theObject->document(), 
           FeaturePtr(), qPrintable(theName), aValue, aParam)) {
-      QString aErrMsg(QObject::tr("Selected parameter can not be renamed to: %1. \
- There is a parameter with the same name. Its value is: %2.")
-         .arg(qPrintable(theName)).arg(aValue));
+      const char* aKeyStr = "Selected parameter can not be renamed to: %1. "
+                            "There is a parameter with the same name. Its value is: %2.";
+      QString aErrMsg(QObject::tr(aKeyStr).arg(qPrintable(theName)).arg(aValue));
       // We can not use here a dialog box for message - 
       // it will crash editing process in ObjectBrowser
       Events_InfoMessage("XGUI_Tools", aErrMsg.toStdString()).send();
index 8f01c2d620ad63878bb7891df7f0ffad5aba016d..45db946d5e68c223e837f337d0710f195d961eed 100755 (executable)
@@ -1488,8 +1488,9 @@ void XGUI_Workshop::cleanHistory()
     aMessageBox.setStandardButtons(QMessageBox::No | QMessageBox::Yes);
     aMessageBox.setDefaultButton(QMessageBox::No);
 
-    QString aText = QString(tr("Unused features are the following: \
-%1.\nThese features will be deleted.\nWould you like to continue?").arg(anUnusedNames));
+    const char* aKeyStr = "Unused features are the following: "
+                          "%1.\nThese features will be deleted.\nWould you like to continue?";
+    QString aText = QString(tr(aKeyStr).arg(anUnusedNames));
     aMessageBox.setText(aText);
     if (aMessageBox.exec() == QMessageBox::No)
       return;