summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmfiledialog.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit47d455dd55be855e4cc691c32f687f723d9247ee (patch)
tree52e236aaa2576bdb3840ebede26619692fed6d7d /kpovmodeler/pmfiledialog.h
downloadtdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz
tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmfiledialog.h')
-rw-r--r--kpovmodeler/pmfiledialog.h60
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