aboutsummaryrefslogtreecommitdiff
path: root/qmidiplayer-desktop/qmpcustomizewindow.hpp
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2020-04-19 23:36:48 +0800
committerGravatar Chris Xiong <chirs241097@gmail.com> 2020-04-19 23:36:48 +0800
commit6d568d07b31ba2ae39703cfd272d3003ea542018 (patch)
tree58dca1ac27ffe9dd6bb045c5a71d04644b7a2e07 /qmidiplayer-desktop/qmpcustomizewindow.hpp
parentc7bf3e37e6eaed6895c797f72ef116b42c6f8a44 (diff)
downloadQMidiPlayer-6d568d07b31ba2ae39703cfd272d3003ea542018.tar.xz
Legacy code massacre!
Complete reconstruction of the settings infrastructure. All options are now registered using a revamped option API. Legacy configuration files are no longer compatible. Please make a backup.
Diffstat (limited to 'qmidiplayer-desktop/qmpcustomizewindow.hpp')
-rw-r--r--qmidiplayer-desktop/qmpcustomizewindow.hpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/qmidiplayer-desktop/qmpcustomizewindow.hpp b/qmidiplayer-desktop/qmpcustomizewindow.hpp
index 0d0f529..321c22e 100644
--- a/qmidiplayer-desktop/qmpcustomizewindow.hpp
+++ b/qmidiplayer-desktop/qmpcustomizewindow.hpp
@@ -7,27 +7,24 @@ namespace Ui {
class qmpCustomizeWindow;
}
-class qmpCustomizeWindow : public QDialog
+class qmpCustomizeWindow:public QDialog
{
Q_OBJECT
public:
- explicit qmpCustomizeWindow(QWidget *parent = 0);
+ explicit qmpCustomizeWindow(QWidget *parent=nullptr);
~qmpCustomizeWindow();
- void launch(int w);
+ void load(void* data);
+ void* save();
private slots:
void on_tbAdd_clicked();
-
void on_tbRemove_clicked();
-
void on_buttonBox_accepted();
-
void on_buttonBox_rejected();
private:
Ui::qmpCustomizeWindow *ui;
- int ow;
};
#endif // QMPCUSTOMIZEWINDOW_HPP