]> Shamusworld >> Repos - architektonas/blob - src/widgets/filedialog.h
33f3b186e7f619ee273819695f6434bcb7011ae1
[architektonas] / src / widgets / filedialog.h
1 #ifndef __FILEDIALOG_H__
2 #define __FILEDIALOG_H__
3
4 #include <QtGui>
5 #include "rs.h"
6
7 /**
8  * File Open / Save dialogs.
9  */
10 class QG_FileDialog
11 {
12         public:
13                 //QG_FileDialog(QWidget* parent=0, const char* name=0, WFlags f=0);
14                 //virtual ~QG_FileDialog();
15
16                 static QString getOpenFileName(QWidget * parent, RS2::FormatType * type = NULL);
17                 static QString getSaveFileName(QWidget * parent, RS2::FormatType * type = NULL);
18 };
19
20 #endif  // __FILEDIALOG_H__