You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
628 B
C++
29 lines
628 B
C++
#ifndef FILEDIALOG_HPP
|
|
#define FILEDIALOG_HPP
|
|
|
|
#include <QFileDialog>
|
|
|
|
class QPushButton;
|
|
|
|
class FileDialog : public QFileDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FileDialog(QWidget *parent = 0);
|
|
|
|
static QString getExistingDirectory(QWidget *parent = 0,
|
|
const QString &caption = QString(),
|
|
const QString &dir = QString(),
|
|
Options options = ShowDirsOnly);
|
|
|
|
private slots:
|
|
void updateChooseButton(const QString &directory);
|
|
|
|
private:
|
|
QPushButton *mChooseButton;
|
|
};
|
|
|
|
|
|
#endif // FILEDIALOG_HPP
|