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
|
#ifndef SYMEDIT_H
#define SYMEDIT_H
#include <QObject>
#include <QString>
#include <QPoint>
#include <QSize>
#include <QTranslator>
#include <QUrl>
#include <deque>
#include "symbol.h"
//! Settings class.
class SymEditSettings
{
friend class SymEditManager;
public:
SymEditSettings();
void Load();
void Save() const;
private:
QPoint Position; //!< Window position.
QSize Size; //!< Window size.
std::map<QString, int> IntValues; //!< Integer setting values.
std::map<QString, double> RealValues; //!< Real setting values.
std::map<QString, QString> TextValues; //!< String setting values.
};
//! Manager class.
class SymEditManager : public QObject
{
Q_OBJECT
public:
explicit SymEditManager(QObject* parent = nullptr);
explicit SymEditManager(const QString& filename, const QString& symbol);
//! Save settings.
void SaveSettings() const { Settings.Save(); }
Q_INVOKABLE void setInitialized();
Q_INVOKABLE void setGeometry(QPoint point, QSize size);
Q_INVOKABLE QPoint getWindowPos() const;
Q_INVOKABLE QSize getWindowSize() const;
Q_INVOKABLE void setIntSetting(QString name, int value);
Q_INVOKABLE int getIntSetting(QString name) const;
Q_INVOKABLE void setRealSetting(QString name, double value);
Q_INVOKABLE double getRealSetting(QString name) const;
Q_INVOKABLE void setTextSetting(QString name, QString value);
Q_INVOKABLE QString getTextSetting(QString name) const;
Q_INVOKABLE QString getSymbol(bool rich) const;
Q_INVOKABLE bool addPointItem(int operation, QPoint point, int value, int color, int fill);
Q_INVOKABLE bool addLineItem(int operation, QPoint point, QPoint end, int value, int color, int fill);
Q_INVOKABLE bool addTextItem(int operation, QPoint point, QPoint end, QString text, double size, int color, int align);
Q_INVOKABLE bool removeItem();
Q_INVOKABLE int getItemCount() const;
Q_INVOKABLE int getItemOperation(int index) const;
Q_INVOKABLE QPoint getItemPosition(int index) const;
Q_INVOKABLE int getItemValue(int index) const;
Q_INVOKABLE QPoint getItemPoint(int index) const;
Q_INVOKABLE QString getItemText(int index ) const;
Q_INVOKABLE int getItemColor(int index) const;
Q_INVOKABLE int getItemFill(int index) const;
Q_INVOKABLE int getItemAlign(int index) const;
Q_INVOKABLE double getItemSize(int index) const;
Q_INVOKABLE int selectItem(QPoint point) const;
Q_INVOKABLE bool setActiveIndex(int index);
Q_INVOKABLE int getActiveIndex() const;
Q_INVOKABLE void cutClipboard();
Q_INVOKABLE void copyClipboard() const;
Q_INVOKABLE void pasteClipboard();
Q_INVOKABLE void rotateSymbol(int dir);
Q_INVOKABLE bool raiseItem(int dir);
Q_INVOKABLE bool undo(bool undo);
Q_INVOKABLE void help(QString topic) const;
Q_INVOKABLE bool open(QUrl fileurl);
Q_INVOKABLE bool save(QUrl fileurl);
Q_INVOKABLE bool hasFilename() const;
Q_INVOKABLE QUrl getFilename() const;
bool open(const QString& filename);
bool save(const QString& filename);
void setLanguage(QString lang);
private:
void undosave();
bool Initialized = false; //!< Initialization mutex.
QString Filename; //!< Symbol file name.
QString Language; //!< Language id.
SymEditSymbol Symbol; //!< Current symbol.
SymEditSettings Settings; //!< Editor settings.
std::deque<QString> UndoStack; //!< Undo stack.
std::deque<QString> RedoStack; //!< Redo stack.
};
#endif
|