exportoofiledialog.h
author insilmaril
Thu Jul 06 14:47:01 2006 +0000 (2006-07-06)
branchqt4-port
changeset 9 f94317a94db1
parent 2 608f976aa7bb
child 11 b8c547f0fc58
permissions -rw-r--r--
Text Editor now shows states again
     1 #ifndef EXPORTOOFILEDIALOG
     2 #define EXPORTOOFILEDIALOG
     3 
     4 #include <QFileDialog>
     5 #include <QStringList>
     6 
     7 #include "settings.h"
     8 
     9 class ExportOOFileDialog:public QFileDialog
    10 {
    11 	Q_OBJECT
    12 public:
    13 	ExportOOFileDialog();
    14 
    15 	ExportOOFileDialog (QWidget * parent = 0, const  QString &caption=QString());
    16 	QString selectedConfig();
    17 	QString selectedFile();
    18 	void show();
    19 	 
    20 private slots:
    21 	void  newConfigPath (const QString&f);
    22 
    23 private:
    24 	void init();
    25 	void addFilter(const QString &);
    26 	void scanExportConfigs(QDir );
    27 	QStringList configPaths;
    28 	QStringList filters;
    29 	QString lastFilter;
    30 	
    31 };
    32 #endif