]> Shamusworld >> Repos - architektonas/blob - src/widgets/filedialog.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / widgets / filedialog.h
1 #ifndef __FILEDIALOG_H__
2 #define __FILEDIALOG_H__
3
4 #include <QtGui>
5 #include "enums.h"
6
7 /**
8  * File Open / Save dialogs.
9  */
10 class FileDialog
11 {
12         public:
13                 //FileDialog(QWidget* parent=0, const char* name=0, WFlags f=0);
14                 //virtual ~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__