-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanes.h
226 lines (214 loc) · 5.82 KB
/
panes.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#pragma once
#include <QWidget>
#include <QLabel>
#include <QTextEdit>
#include <QStackedWidget>
#include <QGraphicsScene>
#include <QGraphicsView>
#include <QGraphicsDropShadowEffect>
#include <QGraphicsPixmapItem>
#include <QMediaPlayer>
#include <QVideoWidget>
#include <QTimer>
#include <QEvent>
#include <queue>
#include "settings.h"
#include "widgets.h"
#include "entities.h"
struct Line
{
QString text;
double size;
};
using Lines=std::vector<Line>;
class PersistentPane : public QWidget
{
Q_OBJECT
public:
PersistentPane(QWidget *parent) : QWidget(parent) { }
public slots:
virtual void Print(const QString &text)=0;
};
class StatusPane : public PersistentPane
{
Q_OBJECT
public:
StatusPane(QWidget *parent);
ApplicationSetting& Font();
ApplicationSetting& FontSize();
ApplicationSetting& ForegroundColor();
ApplicationSetting& BackgroundColor();
void EnableScrollBar();
protected:
StaticTextEdit output;
ApplicationSetting settingFont;
ApplicationSetting settingFontSize;
ApplicationSetting settingForegroundColor;
ApplicationSetting settingBackgroundColor;
static const QString SETTINGS_CATEGORY;
signals:
void ContextMenu(QContextMenuEvent *event);
public slots:
void Print(const QString &text) override;
};
class ChatPane : public PersistentPane
{
Q_OBJECT
public:
ChatPane(QWidget *parent);
void SetAgenda(const QString &text);
ApplicationSetting& Font();
ApplicationSetting& FontSize();
ApplicationSetting& ForegroundColor();
ApplicationSetting& BackgroundColor();
ApplicationSetting& StatusInterval();
protected:
QLabel *agenda;
PinnedTextEdit *chat;
QLabel *status;
QTimer statusClock;
std::queue<QString> statuses;
ApplicationSetting settingFont;
ApplicationSetting settingFontSize;
ApplicationSetting settingForegroundColor;
ApplicationSetting settingBackgroundColor;
ApplicationSetting settingStatusInterval;
static const QString SETTINGS_CATEGORY;
void Format();
signals:
void ContextMenu(QContextMenuEvent *event);
public slots:
void Refresh();
void Print(const QString &text) override;
void Message(std::shared_ptr<Chat::Message> message) const;
void DeleteMessage(const QString &id);
protected slots:
void DismissStatus();
};
class EphemeralPane : public QWidget
{
Q_OBJECT
public:
EphemeralPane(QWidget *parent,bool highPriority=true);
void LowerPriority();
bool HighPriority() const;
protected:
bool expired;
bool highPriority;
void Expire();
virtual QString Subsystem()=0;
signals:
void Finished();
void Expired();
void Print(const QString &message,const QString &operation,const QString &subsystem);
};
class VideoPane : public EphemeralPane
{
Q_OBJECT
public:
VideoPane(const QString &path,QWidget *parent) noexcept(false);
protected:
QMediaPlayer *videoPlayer;
QVideoWidget *viewport;
void showEvent(QShowEvent *event) override;
void hideEvent(QHideEvent *event) override;
QString Subsystem() override;
};
class ScrollingPane : public EphemeralPane
{
Q_OBJECT
public:
ScrollingPane(const QString &text,QWidget *parent);
protected:
ScrollingTextEdit *commands;
ApplicationSetting settingFont;
ApplicationSetting settingFontSize;
ApplicationSetting settingForegroundColor;
ApplicationSetting settingBackgroundColor;
static const QString SETTINGS_CATEGORY;
QString Subsystem() override;
};
class AnnouncePane : public EphemeralPane
{
Q_OBJECT
public:
AnnouncePane(const Lines &lines,QWidget *parent);
AnnouncePane(const QString &text,QWidget *parent);
void Duration(const int duration) { clock.setInterval(duration); }
ApplicationSetting& Font();
ApplicationSetting& FontSize();
ApplicationSetting& ForegroundColor();
ApplicationSetting& BackgroundColor();
ApplicationSetting& AccentColor();
ApplicationSetting& Duration();
protected:
Lines lines;
QLabel *output;
QTimer clock;
ApplicationSetting settingDuration;
ApplicationSetting settingFont;
ApplicationSetting settingFontSize;
ApplicationSetting settingForegroundColor;
ApplicationSetting settingBackgroundColor;
ApplicationSetting settingAccentColor;
static const QString SETTINGS_CATEGORY;
virtual void Polish();
QString BuildParagraph(int width);
void SingleLine(const QString &text);
bool event(QEvent *event) override;
void showEvent(QShowEvent *event) override;
void hideEvent(QHideEvent *event) override;
void resizeEvent(QResizeEvent *event) override;
QString Subsystem() override;
signals:
void Resized(int width);
protected slots:
void AdjustText(int width);
};
class AudioAnnouncePane : public AnnouncePane
{
Q_OBJECT
public:
AudioAnnouncePane(const Lines &lines,const QString &path,QWidget *parent);
AudioAnnouncePane(const QString &text,const QString &path,QWidget *parent);
protected:
QMediaPlayer *audioPlayer;
QString path;
void showEvent(QShowEvent *event) override;
void hideEvent(QHideEvent *event) override;
QString Subsystem() override;
signals:
void DurationAvailable(qint64 duration);
};
class ImageAnnouncePane : public AnnouncePane
{
Q_OBJECT
public:
ImageAnnouncePane(const Lines &lines,const QImage &image,QWidget *parent);
ImageAnnouncePane(const QString &text,const QImage &image,QWidget *parent);
protected:
QGraphicsScene *scene;
QGraphicsView *view;
QStackedWidget *stack;
QGraphicsDropShadowEffect *shadow;
QImage image;
QGraphicsPixmapItem *pixmap;
void Polish() override;
void resizeEvent(QResizeEvent *event) override;
QString Subsystem() override;
};
class MultimediaAnnouncePane : public AnnouncePane
{
Q_OBJECT
public:
MultimediaAnnouncePane(const Lines &lines,const QImage &image,const QString &path,QWidget *parent);
MultimediaAnnouncePane(const QString &text,const QImage &image,const QString &path,QWidget *parent);
protected:
MultimediaAnnouncePane(const QString &path,QWidget *parent);
AudioAnnouncePane *audioPane;
ImageAnnouncePane *imagePane;
void Polish() override;
void showEvent(QShowEvent *event) override;
void hideEvent(QHideEvent *event) override;
QString Subsystem() override;
};