exportoofiledialog.h
author insilmaril
Tue, 14 Mar 2006 14:27:08 +0000
changeset 243 fad762341d2d
parent 182 2747c4145c71
child 357 64819498efbf
permissions -rw-r--r--
hideLinkInExport for Branches (Floats still missing). Floats are now OrnamentedObj.
     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 	QString selectedConfig();
    18 	QString selectedFile();
    19 	void addFilter(const QString &);
    20 	 
    21 private slots:
    22 	void  newConfigPath (const QString&f);
    23 
    24 private:
    25 	void init();
    26 	void scanExportConfigs(QDir );
    27 	QStringList configPaths;
    28 	QStringList filters;
    29 	QString lastFilter;
    30 	
    31 };
    32 #endif