]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/ConstructionPlugin/ConstructionPlugin_Plugin.cpp
Salome HOME
Copyright update 2022
[modules/shaper.git] / src / ConstructionPlugin / ConstructionPlugin_Plugin.cpp
index bf21c3c977a1d32a7558a1e7bd3d0264179781eb..12556dbb5b7d07093046c51088dd591b9f08217d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2022  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -53,6 +53,8 @@ ConstructionPlugin_Plugin::ConstructionPlugin_Plugin()
                               new ConstructionPlugin_ValidatorAxisTwoNotParallelPlanes());
   aFactory->registerValidator("ConstructionPlugin_ValidatorPointThreeNonParallelPlanes",
                               new ConstructionPlugin_ValidatorPointThreeNonParallelPlanes());
+  aFactory->registerValidator("ConstructionPlugin_ValidatorNotFeature",
+                              new ConstructionPlugin_ValidatorNotFeature());
 
   Config_PropManager::registerProp(SKETCH_TAB_NAME, "planes_size", "Size", Config_Prop::DblSpin,
                                    PLANE_SIZE, "0", "1000");
@@ -73,9 +75,11 @@ ConstructionPlugin_Plugin::ConstructionPlugin_Plugin()
   ModelAPI_Session::get()->registerPlugin(this);
 
   // register construction properties
-  Config_PropManager::registerProp("Visualization", "construction_plane_color",
-                                   "Construction plane color",
-                                   Config_Prop::Color, ConstructionPlugin_Plane::DEFAULT_COLOR());
+  Config_PropManager::registerProp("Visualization", ConstructionPlugin_Plane::COLOR_NAME(),
+    "Construction plane color", Config_Prop::Color, ConstructionPlugin_Plane::DEFAULT_COLOR());
+
+  Config_PropManager::registerProp("Visualization", ConstructionPlugin_Point::COLOR_NAME(),
+    "Construction point color", Config_Prop::Color, ConstructionPlugin_Point::DEFAULT_COLOR());
 }
 
 FeaturePtr ConstructionPlugin_Plugin::createFeature(std::string theFeatureID)