Salome HOME
Merge remote-tracking branch 'origin/Toolbars_Management'
[modules/shaper.git] / src / Selector / Selector_AlgoWithSubs.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 <Selector_AlgoWithSubs.h>
22
23 Selector_AlgoWithSubs::Selector_AlgoWithSubs() : Selector_Algo()
24 {}
25
26 void Selector_AlgoWithSubs::clearSubAlgos()
27 {
28   std::list<Selector_Algo*>::iterator anAlgo = mySubSelList.begin();
29   for(; anAlgo != mySubSelList.end(); anAlgo++) {
30     delete *anAlgo;
31   }
32   mySubSelList.clear();
33 }
34
35 Selector_AlgoWithSubs::~Selector_AlgoWithSubs()
36 {
37   clearSubAlgos();
38 }
39
40 TDF_Label Selector_AlgoWithSubs::newSubLabel()
41 {
42   return label().FindChild(int(mySubSelList.size() + 1));
43 }
44
45 bool Selector_AlgoWithSubs::append(Selector_Algo* theAlgo, const bool theEraseIfNull)
46 {
47   if (theAlgo) {
48     mySubSelList.push_back(theAlgo);
49     return true;
50   }
51   if (theEraseIfNull)
52     clearSubAlgos();
53   return false;
54 }
55
56 std::list<Selector_Algo*>& Selector_AlgoWithSubs::list()
57 {
58   return mySubSelList;
59 }