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