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 /qmidiplayer-desktop/qmppresetselect.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 'qmidiplayer-desktop/qmppresetselect.hpp')
-rw-r--r-- | qmidiplayer-desktop/qmppresetselect.hpp | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/qmidiplayer-desktop/qmppresetselect.hpp b/qmidiplayer-desktop/qmppresetselect.hpp index 0186578..6eaf2bf 100644 --- a/qmidiplayer-desktop/qmppresetselect.hpp +++ b/qmidiplayer-desktop/qmppresetselect.hpp @@ -4,36 +4,37 @@ #include <QDialog> #include <QShowEvent> -namespace Ui { - class qmpPresetSelector; +namespace Ui +{ +class qmpPresetSelector; } -class qmpPresetSelector:public QDialog +class qmpPresetSelector: public QDialog { - Q_OBJECT + Q_OBJECT - public: - explicit qmpPresetSelector(QWidget *parent = 0); - ~qmpPresetSelector(); - void showEvent(QShowEvent* e); - void setupWindow(int chid); +public: + explicit qmpPresetSelector(QWidget *parent = 0); + ~qmpPresetSelector(); + void showEvent(QShowEvent *e); + void setupWindow(int chid); - private slots: +private slots: - void on_lwBankSelect_currentRowChanged(); + void on_lwBankSelect_currentRowChanged(); - void on_lwPresetSelect_itemDoubleClicked(); + void on_lwPresetSelect_itemDoubleClicked(); - void on_buttonBox_accepted(); + void on_buttonBox_accepted(); - void on_buttonBox_rejected(); + void on_buttonBox_rejected(); - private: - Ui::qmpPresetSelector *ui; - char presets[129][128][24]; - void on_pbCancel_clicked(); - void on_pbOk_clicked(); - int ch; +private: + Ui::qmpPresetSelector *ui; + char presets[129][128][24]; + void on_pbCancel_clicked(); + void on_pbOk_clicked(); + int ch; }; #endif // QMPPRESETSELECT_H |