XMLParser.h
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:4k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2001,2002,2003 Mike Matsnev.  All Rights Reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice immediately at the beginning of the file, without modification,
  10.  *    this list of conditions, and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. Absolutely no warranty of function or purpose is made by the author
  15.  *    Mike Matsnev.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  * 
  28.  * $Id: XMLParser.h,v 1.39.2.2 2004/01/08 11:06:06 mike Exp $
  29.  * 
  30.  */
  31. #if !defined(AFX_XMLPARSER_H__582B90AF_6795_4F8F_849D_100EFF8AC338__INCLUDED_)
  32. #define AFX_XMLPARSER_H__582B90AF_6795_4F8F_849D_100EFF8AC338__INCLUDED_
  33. #if _MSC_VER > 1000
  34. #pragma once
  35. #endif // _MSC_VER > 1000
  36. #include "TextParser.h"
  37. class XMLParser : public TextParser  
  38. {
  39. protected:
  40.   friend class TextParser;
  41.   XMLParser(Meter *m,CBufFile *fp,HANDLE heap,Bookmarks *bmk) : TextParser(m,fp,heap,bmk) { }
  42.   static XMLParser *MakeParser(Meter *m,CBufFile *fp,Bookmarks *bmk,HANDLE heap);
  43.   virtual bool ParseFile(int encoding) = 0;
  44. public:
  45.   // formatting details
  46.   struct ElemFmt {
  47.     char fsz; //signed
  48.     BYTE bold;
  49.     BYTE italic;
  50.     BYTE color;
  51.     BYTE align;
  52.     BYTE underline;
  53.     DWORD flags;
  54.     int lindent;
  55.     int rindent;
  56.     int findent;
  57.     CString name;
  58.     enum { NOCHG=127,
  59.       SECTION=0x01,  /* a new section */
  60.       PARA=0x02,    /* text container */
  61.       DOCUMENT=0x04,    /* subdocument */
  62.       FMT=0x08,     /* apply this style */
  63.       ELINE=0x10,   /* add an empty line before this element */
  64.       SPACE=0x20,   /* insert spaces between such elements */
  65.       TITLE=0x40,   /* collect text contents and add a chapter */
  66.       ENABLE=0x80,  /* enable P-type tags */
  67.       LINKDEST=0x100,/* can have an id attribute */
  68.       LINK=0x200,   /* link */
  69.       AELINE=0x400, /* an empty line *after* the element */
  70.       STYLE=0x800,  /* apply style from @name */
  71.       DESCCAT=0x1000, /* description category */
  72.       DESCITEM=0x2000, /* description item */
  73.       STYLESHEET=0x4000, /* this is a stylesheet */
  74.       BINARY=0x8000,  /* binary */
  75.       IMAGE=0x10000, /* image element */
  76.       HEADER=0x20000, /* header */
  77.     };
  78.     static const TCHAR *flag_names;
  79.     void  Clear();
  80.   };
  81.   typedef CArray<ElemFmt,ElemFmt&>  FmtArray; 
  82.   static FmtArray&  GetXMLStyles();
  83.   static void     SaveStyles();
  84.   static void     LoadStyles();
  85. };
  86. #endif // !defined(AFX_XMLPARSER_H__582B90AF_6795_4F8F_849D_100EFF8AC338__INCLUDED_)