00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef THMLVARIANTS_H
00022 #define THMLVARIANTS_H
00023
00024 #include <swfilter.h>
00025 #include <swmodule.h>
00026
00027 SWORD_NAMESPACE_START
00028
00031 class SWDLLEXPORT ThMLVariants : public SWFilter {
00032 char option;
00033
00034 static const char primary[];
00035 static const char secondary[];
00036 static const char all[];
00037
00038 static const char optName[];
00039 static const char optTip[];
00040 OptionsList options;
00041
00042 public:
00043 ThMLVariants();
00044 virtual ~ThMLVariants();
00045 virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
00046 virtual const char *getOptionName() { return optName; }
00047 virtual const char *getOptionTip() { return optTip; }
00048 virtual void setOptionValue(const char *ival);
00049 virtual const char *getOptionValue();
00050 virtual OptionsList getOptionValues() { return options; }
00051 };
00052
00053 SWORD_NAMESPACE_END
00054 #endif