htmlhelper.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: htmlhelper.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/04/01 21:01:51  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef HTML___HTMLHELPER__HPP
  10. #define HTML___HTMLHELPER__HPP
  11. /*  $Id: htmlhelper.hpp,v 1000.3 2004/04/01 21:01:51 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author: Eugene Vasilchenko
  37.  *
  38.  */
  39. /// @file htmlhelper.hpp
  40. /// HTML library helper classes and functions.
  41. #include <corelib/ncbistd.hpp>
  42. #include <map>
  43. #include <set>
  44. #include <list>
  45. #include <algorithm>
  46. /** @addtogroup HTMLHelper
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. class CNCBINode;
  52. class CHTML_form;
  53. // Utility functions
  54. class NCBI_XHTML_EXPORT CIDs : public list<int>
  55. {
  56. public:
  57.     CIDs(void);
  58.     ~CIDs(void);
  59.     // If 'id' is not in list, return false.
  60.     // If 'id' in list - return true and remove 'id' from list.
  61.     bool ExtractID(int id);
  62.     // Add 'id' to list.
  63.     void AddID(int id);
  64.     // Return number of ids in list.
  65.     size_t CountIDs(void) const;
  66.     // Decode id list from text representation.
  67.     void Decode(const string& str);
  68.     // Encode id list to text representation.
  69.     string Encode(void) const;
  70. private:
  71.     // Decoder helpers.
  72.     int GetNumber(const string& str);
  73.     int AddID(char cmd, int id, int number);
  74.     
  75. };
  76. class NCBI_XHTML_EXPORT CHTMLHelper
  77. {
  78. public:
  79.     // HTML encodes a string. E.g. &lt;.
  80.     static string HTMLEncode(const string& str);
  81.     // Strip all HTML code from a string.
  82.     static string StripHTML(const string& str);
  83.     // Strip all HTML tags from a string.
  84.     static string StripTags(const string& str);
  85.     // Strip all named and numeric character entities from a string.
  86.     static string StripSpecialChars(const string& str);
  87.     typedef set<int> TIDList;
  88.     typedef multimap<string, string> TCgiEntries;
  89.     // Load ID list from CGI request.
  90.     // Args:
  91.     //   ids            - resulting ID list
  92.     //   values         - CGI values
  93.     //   hiddenPrefix   - prefix for hidden values names
  94.     //   checkboxPrefix - prefix for checkboxes names
  95.     static void LoadIDList(TIDList& ids,
  96.                            const TCgiEntries& values,
  97.                            const string& hiddenPrefix,
  98.                            const string& checkboxPrefix);
  99.     // Store ID list to HTML form.
  100.     // Args:
  101.     //   form           - HTML form to fill
  102.     //   ids            - ID list
  103.     //   hiddenPrefix   - prefix for hidden values names
  104.     //   checkboxPrefix - prefix for checkboxes names
  105.     static void StoreIDList(CHTML_form* form,
  106.                             const TIDList& ids,
  107.                             const string& hiddenPrefix,
  108.                             const string& checkboxPrefix);
  109.     // Platform-dependent newline symbol.
  110.     // Default value is "n" as in UNIX.
  111.     // Application program is to set it as correct.
  112.     static void SetNL( const string& nl )
  113.         { sm_newline = nl; }
  114.     
  115.     static const string& GetNL(void)
  116.         { return sm_newline; }
  117. protected:
  118.     static string sm_newline;
  119. };
  120. #include <html/htmlhelper.inl>
  121. END_NCBI_SCOPE
  122. /* @} */
  123. /*
  124.  * ===========================================================================
  125.  * $Log: htmlhelper.hpp,v $
  126.  * Revision 1000.3  2004/04/01 21:01:51  gouriano
  127.  * PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.13
  128.  *
  129.  * Revision 1.13  2004/02/02 14:18:33  ivanov
  130.  * Added CHTMLHelper::StripHTML(), StripSpecialChars()
  131.  *
  132.  * Revision 1.12  2003/11/05 18:41:06  dicuccio
  133.  * Added export specifiers
  134.  *
  135.  * Revision 1.11  2003/11/03 17:02:53  ivanov
  136.  * Some formal code rearrangement. Move log to end.
  137.  *
  138.  * Revision 1.10  2003/04/25 13:45:28  siyan
  139.  * Added doxygen groupings
  140.  *
  141.  * Revision 1.9  2002/09/25 01:24:29  dicuccio
  142.  * Added CHTMLHelper::StripTags() - strips HTML comments and tags from any
  143.  * string
  144.  *
  145.  * Revision 1.8  2000/10/13 19:54:52  vasilche
  146.  * Fixed warnings on 64 bit compiler.
  147.  *
  148.  * Revision 1.7  2000/01/24 14:21:28  vasilche
  149.  * Fixed missing find() declaration.
  150.  *
  151.  * Revision 1.6  2000/01/21 20:06:53  pubmed
  152.  * Volodya: support of non-existing documents for Sequences
  153.  *
  154.  * Revision 1.5  1999/05/20 16:49:12  pubmed
  155.  * Changes for SaveAsText: all Print() methods get mode parameter that can be HTML or PlainText
  156.  *
  157.  * Revision 1.4  1999/03/15 19:57:55  vasilche
  158.  * CIDs now use set instead of map.
  159.  *
  160.  * Revision 1.3  1999/01/22 17:46:48  vasilche
  161.  * Fixed/cleaned encoding/decoding.
  162.  * Encoded string now shorter.
  163.  *
  164.  * Revision 1.2  1999/01/15 19:46:18  vasilche
  165.  * Added CIDs class to hold sorted list of IDs.
  166.  *
  167.  * Revision 1.1  1999/01/07 16:41:54  vasilche
  168.  * CHTMLHelper moved to separate file.
  169.  * TagNames of CHTML classes ara available via s_GetTagName() static
  170.  * method.
  171.  * Input tag types ara available via s_GetInputType() static method.
  172.  * Initial selected database added to CQueryBox.
  173.  * Background colors added to CPagerBax & CSmallPagerBox.
  174.  *
  175.  * ===========================================================================
  176.  */
  177. #endif  /* HTMLHELPER__HPP */