1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2 // Name : ModelHighAPI_Services.h
6 // 17/06/16 - Sergey POKHODENKO - Creation of the file
8 #ifndef SRC_MODELHIGHAPI_MODELHIGHAPI_SERVICES_H_
9 #define SRC_MODELHIGHAPI_MODELHIGHAPI_SERVICES_H_
11 //--------------------------------------------------------------------------------------
12 #include "ModelHighAPI.h"
16 //--------------------------------------------------------------------------------------
20 class ModelAPI_Document;
21 class ModelAPI_Result;
22 //--------------------------------------------------------------------------------------
23 /// Return the main document (the Partset) created or open from the Modeler.
25 std::shared_ptr<ModelAPI_Document> moduleDocument();
27 /** Return the active document.
29 * This document can be either the main application document (i.e. the Partset) or one of documents
30 * referred to by the main document (a Part).
33 std::shared_ptr<ModelAPI_Document> activeDocument();
35 /** Return one of the three planes defined by the global coordinate system.
37 * These planes are respectively referred to by name "XOY" (Z=0), "XOZ" (Y=0) or "YOZ" (X=0).
40 std::shared_ptr<GeomAPI_Ax3> defaultPlane(const std::string & theName);
42 /// Return name of coordinate plane ("XOY", "XOZ" or "YOZ") or empty string for other planes.
44 std::string defaultPlane(const std::shared_ptr<GeomAPI_Pnt>& theOrigin,
45 const std::shared_ptr<GeomAPI_Dir>& theNormal,
46 const std::shared_ptr<GeomAPI_Dir>& theDirX);
48 /** Return one of the three standard results defined in PartSet document.
50 * These planes are respectively referred to by name "XOY" (Z=0), "XOZ" (Y=0) or "YOZ" (X=0).
53 std::shared_ptr<ModelAPI_Result> standardPlane(const std::string & theName);
55 /** Start a data structure transaction.
57 * Make a control point for being able to discard or undo
58 * all operations done during this transaction.
63 /** Commit the data structure transaction.
65 * Make all operations done since the last control point undo-able.
70 /** Commit the data structure transaction and start the new one.
72 * Make all operations done since the last control point undo-able
73 * and continue with the new transaction.
78 /** Executes features, created or updated before.
80 * This method flushes creation and update events in order to make all
81 * features up to date.
84 void updateFeatures();
86 /// Roll-back the data structure to the previous control point.
90 /// Restore the data structure rolled-back by the last undo.
94 /// Reset the data structure to initial state.
98 //--------------------------------------------------------------------------------------
99 //--------------------------------------------------------------------------------------
100 #endif /* SRC_MODELHIGHAPI_MODELHIGHAPI_SERVICES_H_ */