summaryrefslogtreecommitdiffstats
path: root/src/gui/profileDialog.h
blob: 58a3de610258325f188926a4d29895908efc6a41 (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
#ifndef PROFILEDIALOG_H_
#define PROFILEDIALOG_H_

#include <QtGui>
#include "ui_profileDialog.h"
#include "mainWindow.h"

class profileDialog: public QDialog, private Ui::ProfileDialogClass
{
Q_OBJECT

public:
	profileDialog(QWidget * parent = 0);
	~profileDialog();

public Q_SLOTS:
	void add();
	void remove();
	void save();
	void load();

private:
	QSettings *_profiles;
	QString _current;

};

#endif /* PROFILEDIALOG_H_ */