diff options
Diffstat (limited to 'kpovmodeler/pmfiledialog.h')
-rw-r--r-- | kpovmodeler/pmfiledialog.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/kpovmodeler/pmfiledialog.h b/kpovmodeler/pmfiledialog.h new file mode 100644 index 00000000..e98a84ab --- /dev/null +++ b/kpovmodeler/pmfiledialog.h @@ -0,0 +1,60 @@ +/* +************************************************************************** + description + -------------------- + copyright : (C) 2003 by Andreas Zehender + email : zehender@kde.org +************************************************************************** + +************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +**************************************************************************/ + + +#ifndef PMFILEDIALOG_H +#define PMFILEDIALOG_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include "pmiomanager.h" +#include <kfiledialog.h> + +class PMPart; + +/** + * File dialog used for the import and export action. + * + * The filters will be set automatically dependent on the + * supported file formats + * @see PMIOManager + */ +class PMFileDialog : public KFileDialog +{ + Q_OBJECT +public: + /** + * Default constructor, use the static methods + * @ref getImportFileName or @ref getExportFileName instead + */ + PMFileDialog( const QString& startDir, const QString& filter, QWidget* parent, const char* name, bool modal ); + /** + * Opens a modal file dialog and returns a selected file and the chosen + * file format. + */ + static QString getImportFileName( QWidget* parent, PMPart* part, PMIOFormat*& format ); + /** + * Opens a modal file dialog and returns a selected file and the chosen + * file format and filter. + */ + static QString getExportFileName( QWidget* parent, PMPart* part, + PMIOFormat*& format, QString& filter ); +}; + +#endif |