1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #ifndef SRC_MODELHIGHAPI_MODELHIGHAPI_SERVICES_H_
22 #define SRC_MODELHIGHAPI_MODELHIGHAPI_SERVICES_H_
24 //--------------------------------------------------------------------------------------
25 #include "ModelHighAPI.h"
29 //--------------------------------------------------------------------------------------
33 class ModelAPI_Document;
34 class ModelAPI_Result;
35 //--------------------------------------------------------------------------------------
36 /// Return the main document (the Partset) created or open from the Modeler.
38 std::shared_ptr<ModelAPI_Document> moduleDocument();
40 /** Return the active document.
42 * This document can be either the main application document (i.e. the Partset) or one of documents
43 * referred to by the main document (a Part).
46 std::shared_ptr<ModelAPI_Document> activeDocument();
48 /** Return one of the three planes defined by the global coordinate system.
50 * These planes are respectively referred to by name "XOY" (Z=0), "XOZ" (Y=0) or "YOZ" (X=0).
53 std::shared_ptr<GeomAPI_Ax3> defaultPlane(const std::string & theName);
55 /// Return name of coordinate plane ("XOY", "XOZ" or "YOZ") or empty string for other planes.
57 std::string defaultPlane(const std::shared_ptr<GeomAPI_Pnt>& theOrigin,
58 const std::shared_ptr<GeomAPI_Dir>& theNormal,
59 const std::shared_ptr<GeomAPI_Dir>& theDirX);
61 /** Return one of the three standard results defined in PartSet document.
63 * These planes are respectively referred to by name "XOY" (Z=0), "XOZ" (Y=0) or "YOZ" (X=0).
66 std::shared_ptr<ModelAPI_Result> standardPlane(const std::string & theName);
68 /** Start a data structure transaction.
70 * Make a control point for being able to discard or undo
71 * all operations done during this transaction.
76 /** Commit the data structure transaction.
78 * Make all operations done since the last control point undo-able.
83 /** Commit the data structure transaction and start the new one.
85 * Make all operations done since the last control point undo-able
86 * and continue with the new transaction.
91 /** Executes features, created or updated before.
93 * This method flushes creation and update events in order to make all
94 * features up to date.
97 void updateFeatures();
99 /// Roll-back the data structure to the previous control point.
103 /// Restore the data structure rolled-back by the last undo.
107 /// Reset the data structure to initial state.
111 //--------------------------------------------------------------------------------------
112 //--------------------------------------------------------------------------------------
113 #endif /* SRC_MODELHIGHAPI_MODELHIGHAPI_SERVICES_H_ */