summaryrefslogtreecommitdiff
path: root/qmppresetselect.hpp
blob: 54f576480022613d61411410a9fe7d90dcdab889 (plain) (blame)
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
#ifndef QMPPRESETSELECT_H
#define QMPPRESETSELECT_H

#include <QDialog>
#include <QShowEvent>

namespace Ui {
	class qmpPresetSelector;
}

class qmpPresetSelector:public QDialog
{
	Q_OBJECT

	public:
		explicit qmpPresetSelector(QWidget *parent = 0);
		~qmpPresetSelector();
		void showEvent(QShowEvent* e);
		void setupWindow(int chid);

	private slots:
		void on_pbCancel_clicked();

		void on_pbOk_clicked();

		void on_lwBankSelect_currentRowChanged();

		void on_lwPresetSelect_itemDoubleClicked();

	private:
		Ui::qmpPresetSelector *ui;
		char presets[129][128][24];
		int ch;
};

#endif // QMPPRESETSELECT_H