]> Shamusworld >> Repos - architektonas/blob - src/widgets/filedialog.h
Sanity check step 1: Renaming files...
[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__