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 = -1, const SWKey * key =
00046 0);
00047 virtual const char *getOptionName ()
00048 {
00049 return optName;
00050 }
00051 virtual const char *getOptionTip ()
00052 {
00053 return optTip;
00054 }
00055 virtual void setOptionValue (const char *ival);
00056 virtual const char *getOptionValue ();
00057 virtual OptionsList getOptionValues ()
00058 {
00059 return options;
00060 }
00061 };
00062
00063 #endif