forked from hselasky/midipp
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmidipp_show.h
219 lines (192 loc) · 4.92 KB
/
midipp_show.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
/*-
* Copyright (c) 2013 Hans Petter Selasky. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifndef _MIDIPP_SHOW_H_
#define _MIDIPP_SHOW_H_
#include "midipp.h"
#include "midipp_element.h"
#define MPP_TRAN_MAX 5
enum {
MPP_SHOW_ST_BLANK,
MPP_SHOW_ST_BACKGROUND,
MPP_SHOW_ST_LYRICS,
MPP_SHOW_ST_MAX,
};
class MppShowWidget : public QWidget
{
public:
MppShowWidget(MppShowControl *);
~MppShowWidget();
MppShowControl *parent;
void paintEvent(QPaintEvent *);
void keyPressEvent(QKeyEvent *);
void mouseDoubleClickEvent(QMouseEvent *e);
};
class MppShowAnimObject {
public:
QString str;
uint8_t zero_start[0];
qreal opacity_curr;
qreal opacity_step;
qreal xpos_curr;
qreal xpos_step;
qreal ypos_curr;
qreal ypos_step;
qreal width;
qreal height;
MppObjectProps props;
uint8_t currStep;
uint8_t zero_end[0];
void reset()
{
memset(zero_start, 0, zero_end - zero_start);
str = QString();
}
MppShowAnimObject()
{
reset();
currStep = MPP_TRAN_MAX;
}
int step()
{
if (currStep >= MPP_TRAN_MAX) {
/* animation finished */
opacity_step = 0;
xpos_step = 0;
ypos_step = 0;
currStep++;
return (0);
}
/* animation in progress */
opacity_curr += opacity_step;
xpos_curr += xpos_step;
ypos_curr += ypos_step;
currStep++;
return (1);
};
void fadeOut()
{
opacity_step = -(opacity_curr / MPP_TRAN_MAX);
currStep = 0;
}
void fadeIn()
{
opacity_step = ((1.0 - opacity_curr) / MPP_TRAN_MAX);
currStep = 0;
}
void moveUp(qreal pix)
{
ypos_step = -(pix / MPP_TRAN_MAX);
currStep = 0;
}
bool isVisible()
{
return (opacity_curr >= (1.0 / 1024.0));
}
bool isAnimating()
{
return (currStep <= MPP_TRAN_MAX);
}
};
class MppShowControl : public QObject
{
Q_OBJECT;
public:
MppShowControl(MppMainWindow *);
~MppShowControl();
void handle_text_watchdog();
void handle_pict_watchdog();
void handle_text_change();
void handle_pict_change();
MppMainWindow *mw;
MppGridLayout *gl_main;
MppGroupBox *gb_font;
MppGroupBox *gb_image;
enum {
MPP_SHOW_AOBJ_TEXT_0,
MPP_SHOW_AOBJ_TEXT_1,
MPP_SHOW_AOBJ_PICTURE,
MPP_SHOW_AOBJ_MAX,
};
MppShowAnimObject aobj[MPP_SHOW_AOBJ_MAX];
QPixmap background;
QStringList files;
QFont showFont;
/* for the whole window */
int8_t current_mode;
int8_t trackview;
int8_t toggle;
MppShowWidget *wg_show;
MppButtonMap *butMode;
MppButtonMap *butTrack;
QPushButton *butShowWindow;
QPushButton *butFullScreen;
QPushButton *butFontSelect;
QPushButton *butFontFgColor;
QPushButton *butFontBgColor;
QPushButton *butFontCenter;
QPushButton *butFontRight;
QPushButton *butFontLeft;
QPushButton *butFontMoreSpace;
QPushButton *butFontLessSpace;
QPushButton *butImageSelect;
QPushButton *butImageFgColor;
QPushButton *butImageBgColor;
QPushButton *butImageZoom;
QPushButton *butImageFit;
QPushButton *butImageFirst;
QPushButton *butImageNext;
QPushButton *butImagePrev;
QPushButton *butImageCenter;
QPushButton *butImageRight;
QPushButton *butImageLeft;
QPushButton *butCopySettings;
QTimer *watchdog;
public slots:
void handle_watchdog();
void handle_mode_change(int);
void handle_track_change(int);
void handle_show_window();
void handle_fullscreen();
void handle_fontselect();
void handle_fontfgcolor();
void handle_fontbgcolor();
void handle_fontcenter();
void handle_fontright();
void handle_fontleft();
void handle_fontmorespace();
void handle_fontlessspace();
void handle_imageselect();
void handle_imagebgcolor();
void handle_imagezoom();
void handle_imagefit();
void handle_imagefirst();
void handle_imagenext();
void handle_imageprev();
void handle_imagecenter();
void handle_imageright();
void handle_imageleft();
void handle_copysettings();
};
#endif /* _MIDIPP_SHOW_H_ */