-
Notifications
You must be signed in to change notification settings - Fork 0
/
ElectricalElement.h
67 lines (56 loc) · 2.77 KB
/
ElectricalElement.h
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
#pragma once
#include <QString>
#include <QPainter>
#include <QIcon>
#include <QTableWidget>
#include <QJsonObject>
#include "RenderArea.h"
enum class RenderingState;
// Класс электрического элемента
class ElectricalElement
{
public:
// Конструктор, принимающий позицию центра, ориентацию и сопротивление
ElectricalElement(QPoint location, Qt::Orientation orientation, double resistance);
// Деструктор
virtual ~ElectricalElement() {}
// Обновление свойств элемента по списку
virtual bool updateFromProperties(const QStringList& properties) = 0;
// Заполнение таблицы свойств
virtual void fillPropertiesTable(QTableWidget* tw) const;
// Запись элемента в JSON-документ
virtual void writeJson(QJsonObject& json) const = 0;
// Геттеры и сеттеры для позиции и ориентации элемента
QPoint getLocation() const { return location; }
Qt::Orientation getOrientation() const { return orientation; }
void setLocation(QPoint newLocation) { location = newLocation; }
void setOrientation(Qt::Orientation newOrientation) { orientation = newOrientation; }
// Получение крайних точек элемента
virtual QVector<QPoint> getEndPoints() const;
// Отрисовка элемента в нужном состоянии
virtual void render(QPainter& painter, RenderingState state) const = 0;
// Получение изображения элемента
virtual QIcon* getIcon() const;
// Геттер для сопротивления
virtual double getResistance() const { return resistance; }
// Обновление состояния элемента при прохождении через него тока
virtual void onCurrentFlow(double current) { }
// Оператор сравнения
virtual bool operator==(const ElectricalElement& other) const;
protected:
// Позиция центра
QPoint location;
// Ориентация элемента
Qt::Orientation orientation;
// Сопротивление элемента
double resistance;
};
// Фабрика для электрических элементов
class ElectricalElementFactory
{
public:
// Создание элемента по позиции, ориентации и списку свойств
virtual ElectricalElement* create(QPoint location, Qt::Orientation orientation, const QStringList& properties) const = 0;
// Создание элемента из JSON-объекта
virtual ElectricalElement* readJsonAndCreate(const QJsonObject& json) const = 0;
};