OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment that supports ordinary (i.e., non-delayed) and TLM connections.
ElementGeometry.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenModelica.
3  *
4  * Copyright (c) 1998-CurrentYear, 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 GPL VERSION 3 LICENSE OR
11  * THIS OSMC PUBLIC LICENSE (OSMC-PL) VERSION 1.2.
12  * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES
13  * RECIPIENT'S ACCEPTANCE OF THE OSMC PUBLIC LICENSE OR THE GPL VERSION 3,
14  * ACCORDING TO RECIPIENTS CHOICE.
15  *
16  * The OpenModelica software and the Open Source Modelica
17  * Consortium (OSMC) Public License (OSMC-PL) are obtained
18  * from OSMC, either from the above address,
19  * from the URLs: http://www.ida.liu.se/projects/OpenModelica or
20  * http://www.openmodelica.org, and in the OpenModelica distribution.
21  * GNU version 3 is obtained from: http://www.gnu.org/copyleft/gpl.html.
22  *
23  * This program is distributed WITHOUT ANY WARRANTY; without
24  * even the implied warranty of MERCHANTABILITY or FITNESS
25  * FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
26  * IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
27  *
28  * See the full OSMC Public License conditions for more details.
29  *
30  */
31 
32 #ifndef _SSD_ELEMENT_GEOMETRY_H_
33 #define _SSD_ELEMENT_GEOMETRY_H_
34 
35 #include "OMSimulator/Types.h"
36 
37 #include <pugixml.hpp>
38 
39 #include <string>
40 
41 namespace oms
42 {
43  namespace ssd
44  {
45  class ElementGeometry : protected ssd_element_geometry_t
46  {
47  public:
49  ElementGeometry(const ElementGeometry& rhs);
51 
53 
54  void setX1(double x1) {this->x1 = x1;}
55  void setY1(double y1) {this->y1 = y1;}
56  void setX2(double x2) {this->x2 = x2;}
57  void setY2(double y2) {this->y2 = y2;}
58  void setSizePosition(double x1, double y1, double x2, double y2) {this->x1 = x1; this->y1 = y1; this->x2 = x2; this->y2 = y2;}
59  void setRotation(double rotation) {this->rotation = rotation;}
60  void setIconSource(std::string iconSource);
61  void setIconRotation(double iconRotation) {this->iconRotation = iconRotation;}
62  void setIconFlip(bool iconFlip) {this->iconFlip = iconFlip;}
63  void setIconFixedAspectRatio(bool iconFixedAspectRatio) {this->iconFixedAspectRatio = iconFixedAspectRatio;}
64 
65  double getX1() const {return x1;}
66  double getY1() const {return y1;}
67  double getX2() const {return x2;}
68  double getY2() const {return y2;}
69  double getRotation() const {return rotation;}
70  std::string getIconSource() const {return std::string(iconSource);}
71  bool hasIconSource() const {return (NULL != iconSource);}
72  double getIconRotation() const {return iconRotation;}
73  bool getIconFlip() const {return iconFlip;}
74  bool getIconFixedAspectRatio() const {return iconFixedAspectRatio;}
75 
76  oms_status_enu_t exportToSSD(pugi::xml_node& root) const;
77  oms_status_enu_t importFromSSD(const pugi::xml_node& node);
78  };
79  }
80 }
81 
82 #endif
oms::ssd::ElementGeometry::getIconSource
std::string getIconSource() const
Definition: ElementGeometry.h:70
oms
Definition: AlgLoop.h:44
oms::ssd::ElementGeometry::setIconFixedAspectRatio
void setIconFixedAspectRatio(bool iconFixedAspectRatio)
Definition: ElementGeometry.h:63
oms::ssd::ElementGeometry::getY2
double getY2() const
Definition: ElementGeometry.h:68
oms::ssd::ElementGeometry::setX1
void setX1(double x1)
Definition: ElementGeometry.h:54
oms::ssd::ElementGeometry::getX2
double getX2() const
Definition: ElementGeometry.h:67
oms::ssd::ElementGeometry::setIconSource
void setIconSource(std::string iconSource)
Definition: ElementGeometry.cpp:119
logTrace
#define logTrace()
Definition: Logging.h:110
oms::ssd::ElementGeometry::setX2
void setX2(double x2)
Definition: ElementGeometry.h:56
Tags.h
oms::ssd::ElementGeometry::getRotation
double getRotation() const
Definition: ElementGeometry.h:69
oms::ssd::ElementGeometry::getY1
double getY1() const
Definition: ElementGeometry.h:66
oms::ssd::ElementGeometry::setRotation
void setRotation(double rotation)
Definition: ElementGeometry.h:59
oms::ssd::ElementGeometry::operator=
ElementGeometry & operator=(ElementGeometry const &rhs)
Definition: ElementGeometry.cpp:86
oms::ssd::ElementGeometry::setIconRotation
void setIconRotation(double iconRotation)
Definition: ElementGeometry.h:61
oms::ssd::ElementGeometry::ElementGeometry
ElementGeometry()
Definition: ElementGeometry.cpp:39
oms::ssd::ElementGeometry
Definition: ElementGeometry.h:45
oms::ssd::ElementGeometry::~ElementGeometry
~ElementGeometry()
Definition: ElementGeometry.cpp:78
oms::ssd::ElementGeometry::getX1
double getX1() const
Definition: ElementGeometry.h:65
oms::ssd::ElementGeometry::hasIconSource
bool hasIconSource() const
Definition: ElementGeometry.h:71
oms::ssd::ElementGeometry::getIconRotation
double getIconRotation() const
Definition: ElementGeometry.h:72
oms::ssd::ElementGeometry::getIconFixedAspectRatio
bool getIconFixedAspectRatio() const
Definition: ElementGeometry.h:74
oms::ssd::ElementGeometry::setIconFlip
void setIconFlip(bool iconFlip)
Definition: ElementGeometry.h:62
oms::ssd::ElementGeometry::exportToSSD
oms_status_enu_t exportToSSD(pugi::xml_node &root) const
Definition: ElementGeometry.cpp:134
oms::ssd::ElementGeometry::getIconFlip
bool getIconFlip() const
Definition: ElementGeometry.h:73
oms::ssd::ElementGeometry::importFromSSD
oms_status_enu_t importFromSSD(const pugi::xml_node &node)
Definition: ElementGeometry.cpp:166
ElementGeometry.h
oms::ssd::ElementGeometry::setY1
void setY1(double y1)
Definition: ElementGeometry.h:55
oms::ssd::ElementGeometry::setY2
void setY2(double y2)
Definition: ElementGeometry.h:57
oms::ssd::ElementGeometry::setSizePosition
void setSizePosition(double x1, double y1, double x2, double y2)
Definition: ElementGeometry.h:58
oms::ssp::Draft20180219::ssd::element_geometry
const char * element_geometry
Definition: Tags.cpp:53