~ubuntu-branches/ubuntu/breezy/koffice/breezy

« back to all changes in this revision

Viewing changes to filters/kspread/html/htmlexport.h

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <koFilter.h>
25
25
 
26
 
class QCString;
27
 
class QString;
28
 
class KoDocument;
29
 
 
30
26
class HTMLExport : public KoFilter {
31
27
 
32
28
    Q_OBJECT
33
29
 
34
30
public:
35
 
    HTMLExport(KoFilter *parent, const char*name);
 
31
    HTMLExport(KoFilter *parent, const char*name, const QStringList&);
36
32
    virtual ~HTMLExport() {}
37
 
    /** do the filtering :) */
38
 
    virtual bool filterExport(const QString &file, KoDocument * document,
39
 
                          const QString &from, const QString &to,
40
 
                          const QString &config=QString::null);
 
33
 
 
34
    virtual KoFilter::ConversionStatus convert( const QCString& from, const QCString& to );
41
35
};
42
36
#endif
43
37