1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/*
* Copyright (C) 2017 Thales Lima Oliveira <thales@ufu.br>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef TEXT_H
#define TEXT_H
#include "GraphicalElement.h"
#include "PowerElement.h"
#include "wxGLString.h"
class TextForm;
class Bus;
class Line;
class Transformer;
class SyncGenerator;
class IndMotor;
class SyncMotor;
class Load;
class Inductor;
class Capacitor;
enum ElementType {
TYPE_NONE = 0,
TYPE_BUS,
TYPE_CAPACITOR,
TYPE_IND_MOTOR,
TYPE_INDUCTOR,
TYPE_LINE,
TYPE_LOAD,
TYPE_SYNC_GENERATOR,
TYPE_SYNC_MOTOR,
TYPE_TRANSFORMER
};
enum DataType {
DATA_NAME,
DATA_VOLTAGE,
DATA_ANGLE,
DATA_SC_CURRENT,
DATA_SC_VOLTAGE,
DATA_SC_POWER,
DATA_ACTIVE_POWER,
DATA_REACTIVE_POWER,
DATA_PF_ACTIVE,
DATA_PF_REACTIVE,
DATA_PF_LOSSES,
DATA_PF_CURRENT
};
/**
* @class Text
* @author Thales Lima Oliveira <thales@ufu.br>
* @date 06/10/2017
* @brief Element that shows power element informations in workspace.
* @file Text.h
*/
class Text : public GraphicalElement
{
public:
Text();
Text(wxPoint2DDouble position);
~Text();
virtual Element* GetCopy();
virtual bool AddParent(Element* parent, wxPoint2DDouble position) { return true; };
virtual bool Contains(wxPoint2DDouble position) const;
virtual void Draw(wxPoint2DDouble translation, double scale);
virtual bool Intersects(wxRect2DDouble rect) const;
virtual void Rotate(bool clockwise = true);
virtual bool ShowForm(wxWindow* parent, std::vector<Element*> elementList);
virtual void UpdateText(double systemPowerBase);
virtual wxString GetText() const { return m_text; }
virtual void SetText(wxString text);
void SetDataType(const DataType& dataType) { m_dataType = dataType; }
void SetDirection(int direction) { m_direction = direction; }
void SetElement(Element* element) { m_element = element; }
void SetElementNumber(int elementNumber) { m_elementNumber = elementNumber; }
void SetElementType(const ElementType elementType) { m_elementType = elementType; }
void SetFontSize(int fontSize) { m_fontSize = fontSize; }
void SetUnit(const ElectricalUnit unit) { m_unit = unit; }
void SetDecimalPlaces(int decimalPlaces) { m_decimalPlaces = decimalPlaces; }
const DataType GetDataType() const { return m_dataType; }
int GetDirection() const { return m_direction; }
Element* GetElement() { return m_element; }
int GetElementNumber() const { return m_elementNumber; }
const ElementType GetElementType() const { return m_elementType; }
int GetFontSize() const { return m_fontSize; }
const ElectricalUnit GetUnit() const { return m_unit; }
int GetDecimalPlaces() const { return m_decimalPlaces; }
protected:
wxGLString* m_glString = NULL;
wxGLStringArray* m_glStringArray = NULL;
wxString m_text = _("Text");
int m_numberOfLines;
bool m_isMultlineText = false;
int m_fontSize = 10;
Element* m_element = NULL;
ElementType m_elementType = TYPE_NONE;
int m_elementNumber;
DataType m_dataType;
ElectricalUnit m_unit;
int m_direction = 0;
int m_decimalPlaces = 2;
};
#endif // TEXT_H
|