00001 /****************************************************************************** 00002 * swmarkupmgr.h - definition of class SWMarkupMgr, subclass of 00003 * used to transcode all module text to a requested 00004 * markup. 00005 * 00006 * Copyright 1998 CrossWire Bible Society (http://www.crosswire.org) 00007 * CrossWire Bible Society 00008 * P. O. Box 2528 00009 * Tempe, AZ 85280-2528 00010 * 00011 * This program is free software; you can redistribute it and/or modify it 00012 * under the terms of the GNU General Public License as published by the 00013 * Free Software Foundation version 2. 00014 * 00015 * This program is distributed in the hope that it will be useful, but 00016 * WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 * General Public License for more details. 00019 * 00020 */ 00021 00022 #ifndef MARKUPFILTMGR_H 00023 #define MARKUPFILTMGR_H 00024 00025 #include <encfiltmgr.h> 00026 00031 class SWDLLEXPORT MarkupFilterMgr : public EncodingFilterMgr { 00032 protected: 00033 SWFilter* fromthml; 00034 SWFilter* fromgbf; 00035 SWFilter* fromplain; 00036 SWFilter* fromosis; 00037 00038 /* 00039 * current markup value 00040 */ 00041 char markup; 00042 00043 void CreateFilters(char markup); 00044 public: 00053 MarkupFilterMgr(char markup = FMT_THML, char encoding = ENC_UTF8); 00054 00058 ~MarkupFilterMgr(); 00059 00065 char Markup(char m = FMT_UNKNOWN); 00066 00072 virtual void AddRenderFilters(SWModule *module, ConfigEntMap §ion); 00073 }; 00074 00075 #endif