2018-10-07 03:40:25 +00:00
|
|
|
#pragma once
|
2018-07-09 18:05:31 +00:00
|
|
|
|
2018-07-14 06:06:33 +00:00
|
|
|
#include "EditorWidget.hpp"
|
2018-08-06 04:20:42 +00:00
|
|
|
#include <QFrame>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QStaticText>
|
|
|
|
#include <QSpinBox>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QSvgRenderer>
|
|
|
|
#include <QScrollArea>
|
|
|
|
#include <QCheckBox>
|
|
|
|
#include <bitset>
|
|
|
|
|
|
|
|
class KeymapEditor;
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
class PaintButton : public QPushButton {
|
|
|
|
Q_OBJECT
|
2018-08-06 04:20:42 +00:00
|
|
|
public:
|
2018-12-08 05:20:09 +00:00
|
|
|
explicit PaintButton(QWidget* parent = Q_NULLPTR);
|
2019-08-25 04:37:47 +00:00
|
|
|
void mouseReleaseEvent(QMouseEvent* event) override { event->ignore(); }
|
|
|
|
void mouseMoveEvent(QMouseEvent* event) override { event->ignore(); }
|
|
|
|
void focusOutEvent(QFocusEvent* event) override { event->ignore(); }
|
|
|
|
void keyPressEvent(QKeyEvent* event) override { event->ignore(); }
|
2018-08-06 04:20:42 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
class KeymapView : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
friend class KeymapControls;
|
|
|
|
friend class KeymapEditor;
|
|
|
|
amuse::ObjToken<ProjectModel::KeymapNode> m_node;
|
|
|
|
QSvgRenderer m_octaveRenderer;
|
|
|
|
QSvgRenderer m_lastOctaveRenderer;
|
|
|
|
QRectF m_natural[7];
|
|
|
|
QRectF m_sharp[5];
|
|
|
|
QTransform m_widgetToSvg;
|
|
|
|
QFont m_keyFont;
|
|
|
|
QStaticText m_keyTexts[128];
|
|
|
|
int m_keyPalettes[128];
|
|
|
|
KeymapEditor* getEditor() const;
|
|
|
|
int getKey(const QPoint& localPos) const;
|
|
|
|
void drawKey(QPainter& painter, const QRect& octaveRect, qreal penWidth, const QColor* keyPalette, int o,
|
|
|
|
int k) const;
|
|
|
|
|
2018-08-06 04:20:42 +00:00
|
|
|
public:
|
2018-12-08 05:20:09 +00:00
|
|
|
explicit KeymapView(QWidget* parent = Q_NULLPTR);
|
|
|
|
void loadData(ProjectModel::KeymapNode* node);
|
|
|
|
void unloadData();
|
|
|
|
ProjectModel::INode* currentNode() const;
|
2018-08-06 04:20:42 +00:00
|
|
|
|
2019-08-25 04:37:47 +00:00
|
|
|
void paintEvent(QPaintEvent* ev) override;
|
|
|
|
void mousePressEvent(QMouseEvent* ev) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent* ev) override;
|
|
|
|
void wheelEvent(QWheelEvent* event) override;
|
2018-08-06 04:20:42 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
class KeymapControls : public QFrame {
|
|
|
|
Q_OBJECT
|
|
|
|
friend class KeymapView;
|
|
|
|
friend class KeymapEditor;
|
|
|
|
FieldProjectNode* m_macro;
|
|
|
|
QSpinBox* m_transpose;
|
|
|
|
QSpinBox* m_pan;
|
|
|
|
QCheckBox* m_surround;
|
|
|
|
QSpinBox* m_prioOffset;
|
|
|
|
PaintButton* m_paintButton;
|
|
|
|
bool m_enableUpdate = true;
|
|
|
|
KeymapEditor* getEditor() const;
|
|
|
|
void setPaintIdx(int idx);
|
|
|
|
void setKeymap(const amuse::Keymap& km);
|
|
|
|
|
2018-08-06 04:20:42 +00:00
|
|
|
public:
|
2018-12-08 05:20:09 +00:00
|
|
|
explicit KeymapControls(QWidget* parent = Q_NULLPTR);
|
|
|
|
void loadData(ProjectModel::KeymapNode* node);
|
|
|
|
void unloadData();
|
2018-08-06 04:20:42 +00:00
|
|
|
public slots:
|
2018-12-08 05:20:09 +00:00
|
|
|
void controlChanged();
|
|
|
|
void paintButtonPressed();
|
2018-08-06 04:20:42 +00:00
|
|
|
};
|
2018-07-09 18:05:31 +00:00
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
class KeymapEditor : public EditorWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
friend class KeymapView;
|
|
|
|
friend class KeymapControls;
|
|
|
|
QScrollArea* m_scrollArea;
|
|
|
|
KeymapView* m_kmView;
|
|
|
|
KeymapControls* m_controls;
|
|
|
|
QColor m_paintPalette[129];
|
|
|
|
amuse::Keymap m_controlKeymap;
|
|
|
|
std::unordered_map<uint64_t, std::pair<int, int>> m_configToIdx;
|
|
|
|
std::bitset<129> m_idxBitmap;
|
|
|
|
bool m_inPaint = false;
|
|
|
|
void _touch();
|
|
|
|
void touchKey(int key, bool bulk = false);
|
|
|
|
void touchControl(const amuse::Keymap& km);
|
|
|
|
int allocateConfigIdx(uint64_t key);
|
|
|
|
void deallocateConfigIdx(uint64_t key);
|
|
|
|
int getConfigIdx(uint64_t key) const;
|
|
|
|
|
2018-07-09 18:05:31 +00:00
|
|
|
public:
|
2018-12-08 05:20:09 +00:00
|
|
|
explicit KeymapEditor(QWidget* parent = Q_NULLPTR);
|
|
|
|
bool loadData(ProjectModel::KeymapNode* node);
|
2019-08-25 04:37:47 +00:00
|
|
|
void unloadData() override;
|
|
|
|
ProjectModel::INode* currentNode() const override;
|
|
|
|
void keyPressEvent(QKeyEvent* event) override;
|
2018-07-09 18:05:31 +00:00
|
|
|
};
|