OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment.
Loading...
Searching...
No Matches
ElementGeometry.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenModelica.
3 *
4 * Copyright (c) 1998-2026, Open Source Modelica Consortium (OSMC),
5 * c/o Linköpings universitet, Department of Computer and Information Science,
6 * SE-58183 Linköping, Sweden.
7 *
8 * All rights reserved.
9 *
10 * THIS PROGRAM IS PROVIDED UNDER THE TERMS OF AGPL VERSION 3 LICENSE OR
11 * THIS OSMC PUBLIC LICENSE (OSMC-PL) VERSION 1.8.
12 * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES
13 * RECIPIENT'S ACCEPTANCE OF THE OSMC PUBLIC LICENSE OR THE GNU AGPL
14 * VERSION 3, ACCORDING TO RECIPIENTS CHOICE.
15 *
16 * The OpenModelica software and the OSMC (Open Source Modelica Consortium)
17 * Public License (OSMC-PL) are obtained from OSMC, either from the above
18 * address, from the URLs:
19 * http://www.openmodelica.org or
20 * https://github.com/OpenModelica/ or
21 * http://www.ida.liu.se/projects/OpenModelica,
22 * and in the OpenModelica distribution.
23 *
24 * GNU AGPL version 3 is obtained from:
25 * https://www.gnu.org/licenses/licenses.html#GPL
26 *
27 * This program is distributed WITHOUT ANY WARRANTY; without
28 * even the implied warranty of MERCHANTABILITY or FITNESS
29 * FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
30 * IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
31 *
32 * See the full OSMC Public License conditions for more details.
33 *
34 */
35
36#ifndef _SSD_ELEMENT_GEOMETRY_H_
37#define _SSD_ELEMENT_GEOMETRY_H_
38
39#include "OMSimulator/Types.h"
40
41#include <pugixml.hpp>
42
43#include <string>
44
45namespace oms
46{
47 namespace ssd
48 {
49 class ElementGeometry : protected ssd_element_geometry_t
50 {
51 public:
55
57
58 void setX1(double x1) {this->x1 = x1;}
59 void setY1(double y1) {this->y1 = y1;}
60 void setX2(double x2) {this->x2 = x2;}
61 void setY2(double y2) {this->y2 = y2;}
62 void setSizePosition(double x1, double y1, double x2, double y2) {this->x1 = x1; this->y1 = y1; this->x2 = x2; this->y2 = y2;}
63 void setRotation(double rotation) {this->rotation = rotation;}
64 void setIconSource(std::string iconSource);
65 void setIconRotation(double iconRotation) {this->iconRotation = iconRotation;}
66 void setIconFlip(bool iconFlip) {this->iconFlip = iconFlip;}
67 void setIconFixedAspectRatio(bool iconFixedAspectRatio) {this->iconFixedAspectRatio = iconFixedAspectRatio;}
68
69 double getX1() const {return x1;}
70 double getY1() const {return y1;}
71 double getX2() const {return x2;}
72 double getY2() const {return y2;}
73 double getRotation() const {return rotation;}
74 std::string getIconSource() const {return std::string(iconSource);}
75 bool hasIconSource() const {return (NULL != iconSource);}
76 double getIconRotation() const {return iconRotation;}
77 bool getIconFlip() const {return iconFlip;}
78 bool getIconFixedAspectRatio() const {return iconFixedAspectRatio;}
79
80 oms_status_enu_t exportToSSD(pugi::xml_node& root) const;
81 oms_status_enu_t importFromSSD(const pugi::xml_node& node);
82 };
83 }
84}
85
86#endif
Definition ElementGeometry.h:50
double getY1() const
Definition ElementGeometry.h:70
~ElementGeometry()
Definition ElementGeometry.cpp:82
bool hasIconSource() const
Definition ElementGeometry.h:75
bool getIconFlip() const
Definition ElementGeometry.h:77
double getX2() const
Definition ElementGeometry.h:71
double getIconRotation() const
Definition ElementGeometry.h:76
bool getIconFixedAspectRatio() const
Definition ElementGeometry.h:78
void setIconRotation(double iconRotation)
Definition ElementGeometry.h:65
void setY1(double y1)
Definition ElementGeometry.h:59
void setSizePosition(double x1, double y1, double x2, double y2)
Definition ElementGeometry.h:62
std::string getIconSource() const
Definition ElementGeometry.h:74
void setRotation(double rotation)
Definition ElementGeometry.h:63
oms_status_enu_t exportToSSD(pugi::xml_node &root) const
Definition ElementGeometry.cpp:138
void setIconFlip(bool iconFlip)
Definition ElementGeometry.h:66
double getX1() const
Definition ElementGeometry.h:69
oms_status_enu_t importFromSSD(const pugi::xml_node &node)
Definition ElementGeometry.cpp:170
void setX2(double x2)
Definition ElementGeometry.h:60
void setX1(double x1)
Definition ElementGeometry.h:58
double getRotation() const
Definition ElementGeometry.h:73
double getY2() const
Definition ElementGeometry.h:72
void setY2(double y2)
Definition ElementGeometry.h:61
void setIconSource(std::string iconSource)
Definition ElementGeometry.cpp:123
void setIconFixedAspectRatio(bool iconFixedAspectRatio)
Definition ElementGeometry.h:67
ElementGeometry()
Definition ElementGeometry.cpp:43
ElementGeometry & operator=(ElementGeometry const &rhs)
Definition ElementGeometry.cpp:90
Definition AlgLoop.h:49