kformulainputfilter.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KFORMULAINPUTFILTER_H
00022 #define KFORMULAINPUTFILTER_H
00023
00024 #include <qobject.h>
00025 #include <qdom.h>
00026
00027 #include "kformuladefs.h"
00028
00029 KFORMULA_NAMESPACE_BEGIN
00030
00031 class KFInputFilter : public QObject
00032 {
00033 Q_OBJECT
00034 public:
00035
00036
00037
00038 virtual QDomDocument getKFormulaDom() =0;
00039
00040 bool isDone() {return done; }
00041
00042
00043 public slots:
00044 virtual void startConversion() =0;
00045
00046 signals:
00047 void conversionFinished();
00048
00049 protected:
00050
00051 bool done;
00052 bool conversion;
00053 };
00054
00055 KFORMULA_NAMESPACE_END
00056
00057 #endif //
This file is part of the documentation for lib Library Version 1.3.5.