diff options
author | Chris Xiong <chirs241097@gmail.com> | 2020-05-12 00:58:40 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2020-05-12 00:58:40 +0800 |
commit | a7407edaf81c685d4a389785a405a53a5de4b148 (patch) | |
tree | e6e4f2d85f2172c94ac83a6e8f01e1e90a78ede9 /simple-visualization/qmppianowidget.hpp | |
parent | 437b7b16c322a8e53ac55a5f831098494d9a7073 (diff) | |
download | QMidiPlayer-a7407edaf81c685d4a389785a405a53a5de4b148.tar.xz |
Format EVERYTHING.
Hopefully this will make the source code less horrendous and actually
readable.
The command used was:
```
astyle --suffix=none --style=allman --attach-extern-c --attach-closing-while --indent-switches --indent-after-parens --pad-oper --pad-header --unpad-paren --align-pointer=name --recursive './*.cpp,*.hpp'
```
Diffstat (limited to 'simple-visualization/qmppianowidget.hpp')
-rw-r--r-- | simple-visualization/qmppianowidget.hpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/simple-visualization/qmppianowidget.hpp b/simple-visualization/qmppianowidget.hpp index cca643c..aec034d 100644 --- a/simple-visualization/qmppianowidget.hpp +++ b/simple-visualization/qmppianowidget.hpp @@ -6,22 +6,22 @@ class qmpPianoWidget : public QWidget { - Q_OBJECT - public: - explicit qmpPianoWidget(QWidget *parent = nullptr); - void setKeyState(int key,bool state); - void reset(); - QSize minimumSizeHint()const override; - bool hasHeightForWidth()const override; - int heightForWidth(int w)const override; + Q_OBJECT +public: + explicit qmpPianoWidget(QWidget *parent = nullptr); + void setKeyState(int key, bool state); + void reset(); + QSize minimumSizeHint()const override; + bool hasHeightForWidth()const override; + int heightForWidth(int w)const override; - protected: - void paintEvent(QPaintEvent *event)override; +protected: + void paintEvent(QPaintEvent *event)override; - private: - bool keystates[128]; - QRectF getKeyRect(int key); - void paintKey(QRectF keyrect,QColor keycolor); +private: + bool keystates[128]; + QRectF getKeyRect(int key); + void paintKey(QRectF keyrect, QColor keycolor); }; #endif // QMPPIANOWIDGET_HPP |