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

« back to all changes in this revision

Viewing changes to filters/kspread/gnumeric/gnumericexport.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 GNUMERICEXPORT_TEST_H
21
21
#define GNUMERICEXPORT_TEST_H
22
22
 
23
 
#include <koStore.h>
24
23
#include <koFilter.h>
25
24
#include <qdom.h>
26
25
 
27
 
#include <kspread_map.h>
28
 
#include <kspread_table.h>
29
 
#include <kspread_doc.h>
30
 
 
31
 
 
32
 
class QCString;
33
 
class QString;
34
 
class KoDocument;
 
26
class KSpreadCell;
35
27
 
36
28
class GNUMERICExport : public KoFilter {
37
29
 
38
30
    Q_OBJECT
39
31
 
40
32
public:
41
 
    GNUMERICExport(KoFilter *parent, const char*name);
 
33
    GNUMERICExport(KoFilter *parent, const char*name, const QStringList&);
42
34
    virtual ~GNUMERICExport() {}
43
 
    /** do the filtering :) */
44
 
 
45
 
    virtual bool filterExport(const QString &file, KoDocument * document,
46
 
                                const QString &from, const QString &to,
47
 
                                const QString &config=QString::null);
48
 
 
 
35
 
 
36
    virtual KoFilter::ConversionStatus convert( const QCString& from, const QCString& to );
49
37
 
50
38
private:
51
 
    
52
 
    QDomElement GetCellStyle(QDomDocument gnumeric_doc,KSpreadCell * cell, 
53
 
                             int currentcolumn, 
 
39
 
 
40
    QDomElement GetCellStyle(QDomDocument gnumeric_doc,KSpreadCell * cell,
 
41
                             int currentcolumn,
54
42
                             int currentrow);
55
43
};
56
44
#endif