This commit is contained in:
Tobias Rundstrom 2006-08-17 16:40:26 -04:00
parent 84d0c3b3b5
commit 33616aaa06
2 changed files with 58 additions and 0 deletions

19
FileDialog.h Normal file
View file

@ -0,0 +1,19 @@
#ifndef __FILEDIALOG_H__
#define __FILEDIALOG_H__
#include <QFileDialog>
class FileDialog : public QFileDialog
{
Q_OBJECT
public:
FileDialog (QWidget *parent, const QString &name);
QString getDirectory ();
QStringList getFiles ();
private:
QString m_name;
};
#endif