00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef PLAINFOOTNOTES_H
00022 #define PLAINFOOTNOTES_H
00023
00024 #include <defs.h>
00025
00026 class QObject;
00027 #include <swfilter.h>
00028 class SWKey;
00029
00033 class SWDLLEXPORT PLAINFootnotes:public SWFilter
00034 {
00035 bool option;
00036 static const char on[];
00037 static const char off[];
00038 static const char optName[];
00039 static const char optTip[];
00040 OptionsList options;
00041
00042 public:
00043 PLAINFootnotes ();
00044 virtual ~ PLAINFootnotes ();
00045 virtual char ProcessText (char *text, int maxlen, const SWKey * key, const SWModule * = 0);
00046 virtual const char *getOptionName ()
00047 {
00048 return optName;
00049 }
00050 virtual const char *getOptionTip ()
00051 {
00052 return optTip;
00053 }
00054 virtual void setOptionValue (const char *ival);
00055 virtual const char *getOptionValue ();
00056 virtual OptionsList getOptionValues ()
00057 {
00058 return options;
00059 }
00060 };
00061
00062 #endif