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

« back to all changes in this revision

Viewing changes to filters/kword/ascii/asciiexport.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:
20
20
#ifndef ASCIIEXPORT_H
21
21
#define ASCIIEXPORT_H
22
22
 
23
 
#include <qstring.h>
24
 
#include <qcstring.h>
25
 
#include <qfile.h>
26
 
#include <qobject.h>
27
 
 
28
23
#include <koFilter.h>
29
 
#include <koStore.h>
30
 
 
31
 
 
32
 
class ASCIIExport : public KoFilter {
33
 
 
 
24
 
 
25
class ASCIIExport : public KoFilter
 
26
{
34
27
    Q_OBJECT
35
28
 
36
29
public:
37
 
    ASCIIExport(KoFilter *parent, const char *name);
 
30
    ASCIIExport(KoFilter* parent, const char* name, const QStringList&);
38
31
    virtual ~ASCIIExport() {}
39
 
    /** filtering :) */
40
 
    virtual bool filter(const QString &fileIn, const QString &fileOut,
41
 
                        const QString &from, const QString &to,
42
 
                        const QString &config=QString::null);
 
32
 
 
33
    virtual KoFilter::ConversionStatus convert(const QCString& from, const QCString& to);
43
34
};
 
35
 
44
36
#endif // ASCIIEXPORT_H