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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dlg_blastpoll.hpp,v $
  4.  * PRODUCTION Revision 1000.4  2004/06/01 20:54:25  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef __dlg_blastpoll__hpp
  10. #define __dlg_blastpoll__hpp
  11. /*  $Id: dlg_blastpoll.hpp,v 1000.4 2004/06/01 20:54:25 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.  * Authors:  Clifford Clausen, Michael DiCuccio
  37.  *
  38.  * File Description:
  39.  *    CNetBlastReq -- passes Blast requests to Blast server
  40.  */
  41. #include <gui/utils/dialog.hpp>
  42. #include <gui/core/doc_loader.hpp>
  43. #include <gui/core/idocument.hpp>
  44. #include <gui/plugin/PluginCommand.hpp>
  45. #include <gui/plugin/PluginReply.hpp>
  46. #include <FL/Fl.H>
  47. #include <FL/Fl_Box.H>
  48. #include <FL/Fl_Browser.H>
  49. #include <FL/Fl_Button.H>
  50. #include <FL/Fl_Double_Window.H>
  51. #include <FL/Fl_Group.H>
  52. #include <FL/Fl_Input.H>
  53. #include <memory>
  54. #include "blast_rid_cache.hpp"
  55. BEGIN_NCBI_SCOPE
  56. class CBlastPollTable;
  57. class CBlastPollItem;
  58. #include "dlg_blastpoll_.hpp"
  59. END_NCBI_SCOPE
  60. /*
  61.  * ===========================================================================
  62.  * $Log: dlg_blastpoll.hpp,v $
  63.  * Revision 1000.4  2004/06/01 20:54:25  gouriano
  64.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  65.  *
  66.  * Revision 1.8  2004/04/23 16:31:54  dicuccio
  67.  * Added #include for RID cache instead of predeclaration
  68.  *
  69.  * Revision 1.7  2004/04/22 12:22:08  dicuccio
  70.  * Added BLAST RID caching.  Added better formatting for BLAST results
  71.  *
  72.  * Revision 1.6  2004/03/05 17:32:14  dicuccio
  73.  * Large-scale clean-up to blast code.  Reorganized blast polling dialog to be
  74.  * multi-column; standardized options for BLAST network submissions; changed
  75.  * plugin to accept multiple locations for submission and create a submission for
  76.  * each
  77.  *
  78.  * Revision 1.5  2004/02/18 19:02:36  jcherry
  79.  * Query is now a Seq-loc, to which alignments get remapped
  80.  *
  81.  * Revision 1.4  2003/11/17 16:25:16  clausen
  82.  * Added m_Descr
  83.  *
  84.  * Revision 1.3  2003/10/31 22:56:36  ucko
  85.  * Move include of idocument.hpp to header to precede use in CConstRef<>
  86.  *
  87.  * Revision 1.2  2003/10/31 17:32:08  clausen
  88.  * Switched from passing scope to passing document
  89.  *
  90.  * Revision 1.1  2003/10/24 12:49:21  dicuccio
  91.  * Moved files from algo/net_blast
  92.  *
  93.  * Revision 1.6  2003/10/22 12:53:37  dicuccio
  94.  * Fixed missing headers
  95.  *
  96.  * Revision 1.5  2003/07/11 11:45:48  dicuccio
  97.  * #include <memory> for auto_ptr<>
  98.  *
  99.  * Revision 1.4  2003/07/10 13:06:20  dicuccio
  100.  * Fixed compilation issues for gcc-3.3: restructured callback mechanism, replaced
  101.  * multiple parallel arrays with an array of classes.
  102.  *
  103.  * Revision 1.3  2003/06/20 19:45:19  dicuccio
  104.  * Fixed bizarre compile error related to namespaces on MSVC
  105.  *
  106.  * ===========================================================================
  107.  */
  108. #endif