exports.h
changeset 825 1ad892c1a709
parent 824 36eb4b8f409e
     1.1 --- a/exports.h	Thu Feb 25 11:03:52 2010 +0000
     1.2 +++ b/exports.h	Tue Mar 02 13:59:19 2010 +0000
     1.3 @@ -93,6 +93,7 @@
     1.4  	virtual void doExport();
     1.5  };	
     1.6  
     1.7 +#include "exporthtmldialog.h"
     1.8  ///////////////////////////////////////////////////////////////////////
     1.9  class ExportHTML:public ExportBase
    1.10  {
    1.11 @@ -101,7 +102,7 @@
    1.12  	ExportHTML(VymModel *m);
    1.13  	virtual void init();
    1.14  	virtual void setCSSPath(const QString &path);
    1.15 -	virtual void doExport();
    1.16 +	virtual void doExport(bool useDialog=true);
    1.17  private:
    1.18  	QString getBranchText(BranchItem *);
    1.19  	QString buildList (BranchItem *);
    1.20 @@ -112,9 +113,10 @@
    1.21  	bool frameURLs;
    1.22  	bool noSingulars;
    1.23  	QString singularDelimiter;
    1.24 -	bool useMapColors;
    1.25  
    1.26  	QPointF offset;
    1.27 +
    1.28 +	ExportHTMLDialog dia;
    1.29  };	
    1.30  
    1.31  ///////////////////////////////////////////////////////////////////////