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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: selection.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:15:59  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: selection.cpp,v 1000.2 2004/06/01 19:15:59 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Eugene Vasilchenko
  35.  *
  36.  */
  37. #include <ncbi_pch.hpp>
  38. #include <cgi/ncbicgi.hpp>
  39. #include <html/html.hpp>
  40. #include <html/selection.hpp>
  41. BEGIN_NCBI_SCOPE
  42. string CSelection::sm_DefaultCheckboxName = "uid";
  43. string CSelection::sm_DefaultSaveName = "other_uids";
  44. CSelection::CSelection(const CCgiRequest& request, 
  45.                        const string& checkboxName, const string& saveName)
  46.     : m_SaveName(saveName)
  47. {
  48.     const TCgiEntries& values = request.GetEntries();
  49.     // Decode saved ids
  50.     TCgiEntriesCI found = values.find(saveName);
  51.     if ( found != values.end() ) {
  52.         Decode( found->second );
  53.     }
  54.     // Load checkboxes
  55.     found = values.find(checkboxName);
  56.     if ( found != values.end() ) {
  57.         for ( TCgiEntriesCI i = values.lower_bound(checkboxName),
  58.               end = values.upper_bound(checkboxName); i != end; ++i ) {
  59.             AddID(NStr::StringToInt(i->second));
  60.         }
  61.     }
  62. }
  63. void CSelection::CreateSubNodes(void)
  64. {
  65.     // Save other selections
  66.     string selection = Encode();
  67.     if ( !selection.empty() ) {
  68.         AppendChild(new CHTML_hidden(m_SaveName, selection));
  69.     }
  70. }
  71. END_NCBI_SCOPE
  72. /*
  73.  * ===========================================================================
  74.  * $Log: selection.cpp,v $
  75.  * Revision 1000.2  2004/06/01 19:15:59  gouriano
  76.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  77.  *
  78.  * Revision 1.7  2004/05/17 20:59:50  gorelenk
  79.  * Added include of PCH ncbi_pch.hpp
  80.  *
  81.  * Revision 1.6  2003/11/03 17:03:08  ivanov
  82.  * Some formal code rearrangement. Move log to end.
  83.  *
  84.  * Revision 1.5  2001/01/04 16:26:09  golikov
  85.  * fix
  86.  *
  87.  * Revision 1.4  1999/05/11 02:53:57  vakatov
  88.  * Moved CGI API from "corelib/" to "cgi/"
  89.  *
  90.  * Revision 1.3  1999/03/26 22:00:01  sandomir
  91.  * checked option in Radio button fixed; minor fixes in Selection
  92.  *
  93.  * Revision 1.2  1999/01/21 16:18:06  sandomir
  94.  * minor changes due to NStr namespace to contain string utility functions
  95.  *
  96.  * Revision 1.1  1999/01/20 17:39:46  vasilche
  97.  * Selection as separate class CSelection.
  98.  *
  99.  * ===========================================================================
  100.  */