0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / QADNaming / QADNaming_IteratorsCommands.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 785f967..f89b829
@@ -1,22 +1,17 @@
 // Created on: 2002-04-25
 // Created by: Michael PONIKAROV
-// Copyright (c) 2002-2012 OPEN CASCADE SAS
+// Copyright (c) 2002-2014 OPEN CASCADE SAS
 //
-// The content of this file is subject to the Open CASCADE Technology Public
-// License Version 6.5 (the "License"). You may not use the content of this file
-// except in compliance with the License. Please obtain a copy of the License
-// at http://www.opencascade.org and read it completely before using this file.
+// This file is part of Open CASCADE Technology software library.
 //
-// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
-// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
 //
-// The Original Code and all software distributed under the License is
-// distributed on an "AS IS" basis, without warranty of any kind, and the
-// Initial Developer hereby disclaims all such warranties, including without
-// limitation, any warranties of merchantability, fitness for a particular
-// purpose or non-infringement. Please see the License for the specific terms
-// and conditions governing the rights and limitations under the License.
-
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
 
 #include <stdio.h>
 
@@ -50,8 +45,8 @@ static const char* EvolutionString(TNaming_Evolution theEvolution) {
     return "DELETE";
   case TNaming_SELECTED :
     return "SELECTED";
-//  case TNaming_REPLACE :
-//    return "REPLACE";
+  case TNaming_REPLACE :
+    return "MODIFY";
   }
   return "UNKNOWN_Evolution";
 }
@@ -65,7 +60,7 @@ static Standard_Integer GetNewShapes (Draw_Interpretor& di,
     if (!QADNaming::Entry(arg, aLabel)) return 1;
     Handle(TNaming_NamedShape) aNS;
     if (!aLabel.FindAttribute(TNaming_NamedShape::GetID(),aNS)) {
-      di<<"Label has no NamedShape"<<"\n";
+      di<<"Label has no NamedShape\n";
       return 1;
     }
     di<<EvolutionString(aNS->Evolution());
@@ -81,7 +76,7 @@ static Standard_Integer GetNewShapes (Draw_Interpretor& di,
     }
     di<<" "<<a-1;
   } else {
-    di<<"Usage: GetNewShapes df entry [res]"<<"\n";
+    di<<"Usage: GetNewShapes df entry [res]\n";
     return 1;
   }
   return 0;
@@ -95,7 +90,7 @@ static Standard_Integer GetOldShapes (Draw_Interpretor& di,
     if (!QADNaming::Entry(arg, aLabel)) return 1;
     Handle(TNaming_NamedShape) aNS;
     if (!aLabel.FindAttribute(TNaming_NamedShape::GetID(),aNS)) {
-      di<<"Label has no NamedShape"<<"\n";
+      di<<"Label has no NamedShape\n";
       return 1;
     }
     di<<EvolutionString(aNS->Evolution());
@@ -111,7 +106,7 @@ static Standard_Integer GetOldShapes (Draw_Interpretor& di,
     }
     di<<" "<<a-1;
   } else {
-    di<<"Usage: GetOldShapes df entry [res]"<<"\n";
+    di<<"Usage: GetOldShapes df entry [res]\n";
     return 1;
   }
   return 0;
@@ -150,7 +145,7 @@ static Standard_Integer GetAllNewShapes (Draw_Interpretor& di,
       if (!QADNaming::Entry(arg, aLabel)) return 1;
       Handle(TNaming_NamedShape) aNS;
       if (!aLabel.FindAttribute(TNaming_NamedShape::GetID(),aNS)) {
-       di<<"Label has no NamedShape"<<"\n";
+       di<<"Label has no NamedShape\n";
        return 1;
       }
       Standard_Integer a;
@@ -169,14 +164,14 @@ static Standard_Integer GetAllNewShapes (Draw_Interpretor& di,
     } else { // shape
       Handle(TDF_Data) DF;
       if (!DDF::GetDF(arg[1],DF)) {
-       di<<"Wrong df"<<"\n";
+       di<<"Wrong df\n";
        return 1;
       }
       TopoDS_Shape aShape = DBRep::Get(arg[2]);
       aResult=GetAllNew(aShape,DF->Root(),aName,0);
     }
   } else {
-    di<<"Usage: GetAllNewShapes df entry/shape [res]"<<"\n";
+    di<<"Usage: GetAllNewShapes df entry/shape [res]\n";
     return 1;
   }
   di<<aResult;
@@ -218,7 +213,7 @@ static Standard_Integer GetAllOldShapes (Draw_Interpretor& di,
       if (!QADNaming::Entry(arg, aLabel)) return 1;
       Handle(TNaming_NamedShape) aNS;
       if (!aLabel.FindAttribute(TNaming_NamedShape::GetID(),aNS)) {
-       di<<"Label has no NamedShape"<<"\n";
+       di<<"Label has no NamedShape\n";
        return 1;
       }
       Standard_Integer a;
@@ -237,14 +232,14 @@ static Standard_Integer GetAllOldShapes (Draw_Interpretor& di,
     } else { // shape
       Handle(TDF_Data) DF;
       if (!DDF::GetDF(arg[1],DF)) {
-       di<<"Wrong df"<<"\n";
+       di<<"Wrong df\n";
        return 1;
       }
       TopoDS_Shape aShape = DBRep::Get(arg[2]);
       aResult=GetAllOld(aShape,DF->Root(),aName,0);
     }
   } else {
-    di<<"Usage: GetAllNewShapes df entry/shape [res]"<<"\n";
+    di<<"Usage: GetAllNewShapes df entry/shape [res]\n";
     return 1;
   }
   di<<aResult;
@@ -259,7 +254,7 @@ static Standard_Integer GetSameShapes (Draw_Interpretor& di,
     Standard_Integer aResult = 0;
     Handle(TDF_Data) DF;
     if (!DDF::GetDF(arg[1],DF)) {
-      di<<"Wrong df"<<"\n";
+      di<<"Wrong df\n";
       return 1;
     }
     TopoDS_Shape aShape = DBRep::Get(arg[2]);
@@ -273,7 +268,7 @@ static Standard_Integer GetSameShapes (Draw_Interpretor& di,
       }
     }
   } else {
-    di<<"Usage: GetSameShapes df shape"<<"\n";
+    di<<"Usage: GetSameShapes df shape\n";
     return 1;
   }
   di<<aRes.ToCString();