summaryrefslogblamecommitdiffstats
path: root/src/gui/profileDialog.h
blob: 58a3de610258325f188926a4d29895908efc6a41 (plain) (tree)
1
2
3
4
5
6
7
8
9



                        

                             
 
                                                                   
 
        

       

                                            
 




                      

        

                             
 


                             
#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_ */