Salome HOME
Key_Escape processing in File selector widget. Otherwise, crash happens if file dialo...
[modules/shaper.git] / src / GeomValidators / GeomValidators_PartitionArguments.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include <GeomValidators_PartitionArguments.h>
22
23 #include <Events_InfoMessage.h>
24
25 #include <ModelAPI_AttributeBoolean.h>
26 #include <ModelAPI_AttributeSelectionList.h>
27
28 //=================================================================================================
29 bool GeomValidators_PartitionArguments::isValid(const std::shared_ptr<ModelAPI_Feature>& theFeature,
30                                               const std::list<std::string>& theArguments,
31                                               Events_InfoMessage& theError) const
32 {
33   if(theArguments.size() != 3) {
34     theError = "Wrong number of arguments (expected 3).";
35     return false;
36   }
37
38   int anObjectsNb = 0, aToolsNb = 0;
39   bool isCombine = true;
40
41   std::list<std::string>::const_iterator anIt = theArguments.begin(), aLast = theArguments.end();
42
43   std::shared_ptr<ModelAPI_AttributeSelectionList> anAttrSelList = theFeature->selectionList(*anIt);
44   if(anAttrSelList) {
45     anObjectsNb = anAttrSelList->size();
46   }
47   anIt++;
48
49   anAttrSelList = theFeature->selectionList(*anIt);
50   if(anAttrSelList) {
51     aToolsNb = anAttrSelList->size();
52   }
53   anIt++;
54
55   std::shared_ptr<ModelAPI_AttributeBoolean> anAttrBool = theFeature->boolean(*anIt);
56   if(anAttrBool) {
57     isCombine = anAttrBool->value();
58   }
59
60   if((anObjectsNb > 0 && aToolsNb > 0) ||
61      (isCombine && anObjectsNb != 0 && (anObjectsNb + aToolsNb > 1))) {
62     return true;
63   }
64
65   theError = "Not enough arguments";
66   return false;
67 }
68
69 //=================================================================================================
70 bool GeomValidators_PartitionArguments::isNotObligatory(std::string theFeature,
71                                                         std::string theAttribute)
72 {
73   if(theAttribute == "tool_objects") {
74     return true;
75   }
76
77   return false;
78 }