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
|
#include <QVBoxLayout>
#include <QGridLayout>
#include <QCloseEvent>
#include <QLabel>
#include <QFontDatabase>
#include "qmppianowidget.hpp"
#include "qmpkeyboardwindow.hpp"
qmpKeyboardWindow::qmpKeyboardWindow(qmpPluginAPI *_api, QWidget *parent):
QWidget(parent, Qt::Dialog), api(_api)
{
setWindowTitle("Keyboard");
QGridLayout *grid;
setLayout(grid = new QGridLayout());
for (int ch = 0; ch < 16; ++ch)
{
grid->addWidget(lb[ch] = new QLabel, ch, 0);
grid->addWidget(pw[ch] = new qmpPianoWidget(this), ch, 1);
lb[ch]->setFont(QFontDatabase::systemFont(QFontDatabase::SystemFont::FixedFont));
pw[ch]->setSizePolicy(QSizePolicy::Policy::Expanding, QSizePolicy::Policy::Preferred);
QPalette p = palette();
p.setColor(QPalette::ColorRole::Highlight, api->getOptionUint("Keyboard/acolor" + std::to_string(ch)));
p.setColor(QPalette::ColorRole::Base, api->getOptionUint("Keyboard/bcolor" + std::to_string(ch)));
pw[ch]->setPalette(p);
}
hide();
eh = api->registerEventHandler(
[this](const void *ee, void *)
{
const SEvent *e = (const SEvent *)ee;
int ch = e->type & 0xF;
if (!this->isVisible()) return;
if ((e->type & 0xF0) == 0x80 || ((e->type & 0xF0) == 0x90 && e->p2 == 0))
emit keystateupdated(ch, e->p1, false);
if ((e->type & 0xF0) == 0x90 && e->p2 > 0)
emit keystateupdated(ch, e->p1, e->p2 > 0);
if ((e->type & 0xF0) == 0xB0 || (e->type & 0xF0) == 0xC0)
lb[ch]->setText(
QString::fromStdString(api->getChannelPresetString(ch)) +
QString("\nch:%1 v:0x%2 p:0x%3 e:0x%4")
.arg(ch + 1, 2, 10, QChar('0'))
.arg(api->getChannelCC(ch, 0x7), 2, 16, QChar('0'))
.arg(api->getChannelCC(ch, 0xa), 2, 16, QChar('0'))
.arg(api->getChannelCC(ch, 0xb), 2, 16, QChar('0')));
}
, nullptr, true);
connect(this, &qmpKeyboardWindow::keystateupdated, this, &qmpKeyboardWindow::onkeystatesupdate);
}
qmpKeyboardWindow::~qmpKeyboardWindow()
{
api->unregisterEventHandler(eh);
}
void qmpKeyboardWindow::closeEvent(QCloseEvent *event)
{
api->setFuncState("Keyboard", false);
event->accept();
}
void qmpKeyboardWindow::onkeystatesupdate(int ch, int key, bool state)
{
pw[ch]->setKeyState(key, state);
}
void qmpKeyboardWindow::resetAll()
{
for (int ch = 0; ch < 16; ++ch)
{
pw[ch]->reset();
lb[ch]->setText(
QString::fromStdString(api->getChannelPresetString(ch)) +
QString("\nch:%1 v:0x%2 p:0x%3 e:0x%4")
.arg(ch + 1, 2, 10, QChar('0'))
.arg(api->getChannelCC(ch, 0x7), 2, 16, QChar('0'))
.arg(api->getChannelCC(ch, 0xa), 2, 16, QChar('0'))
.arg(api->getChannelCC(ch, 0xb), 2, 16, QChar('0')));
}
}
|