exportoofiledialog.h
author insilmaril
Mon, 31 Jul 2006 12:13:53 +0000
changeset 361 a784c102bbed
parent 357 64819498efbf
child 366 e95081c21da2
permissions -rw-r--r--
added vym2kdebookmarks.xsl
     1 #ifndef EXPORTOOFILEDIALOG
     2 #define EXPORTOOFILEDIALOG
     3 
     4 #include <qfiledialog.h>
     5 #include <qstringlist.h>
     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 char * name = 0, bool
    16 	modal = false);
    17 	bool foundConfig();
    18 	QString selectedConfig();
    19 	QString selectedFile();
    20 	void addFilter(const QString &);
    21 	 
    22 private slots:
    23 	void  newConfigPath (const QString&f);
    24 
    25 private:
    26 	void init();
    27 	void scanExportConfigs(QDir );
    28 	QStringList configPaths;
    29 	QStringList filters;
    30 	QString lastFilter;
    31 	
    32 };
    33 #endif