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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gbmanage.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:57:56  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_PLUGINS_DOC_BASIC___GBMANAGE__HPP
  10. #define GUI_PLUGINS_DOC_BASIC___GBMANAGE__HPP
  11. /*  $Id: gbmanage.hpp,v 1000.1 2004/06/01 20:57:56 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:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    CDataPlugin_GBManage - load sequence information form Genbank.
  40.  */
  41. #include <gui/core/doc_loader.hpp>
  42. #include <objmgr/scope.hpp>
  43. #include <gui/plugin/PluginInfo.hpp>
  44. #include <memory>
  45. BEGIN_NCBI_SCOPE
  46. class CGBManageDlg;
  47. class CDataPlugin_GBManage : public CDocLoader<CDataPlugin_GBManage>
  48. {
  49. public:
  50.     CDataPlugin_GBManage();
  51.     ~CDataPlugin_GBManage();
  52.     // manage our GenBank connection
  53.     void Manage(objects::CPluginMessage& msg);
  54.     static void GetInfo(objects::CPluginInfo& info);
  55. private:
  56.     auto_ptr<CGBManageDlg> m_Dialog;
  57. };
  58. END_NCBI_SCOPE
  59. #endif  // GUI_PLUGINS_DOC_BASIC___GBMANAGE__HPP
  60. /*
  61.  * ===========================================================================
  62.  * $Log: gbmanage.hpp,v $
  63.  * Revision 1000.1  2004/06/01 20:57:56  gouriano
  64.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  65.  *
  66.  * Revision 1.2  2004/05/25 17:21:59  dicuccio
  67.  * Modified class names.  Fonts to 12 point
  68.  *
  69.  * Revision 1.1  2003/12/05 13:07:53  dicuccio
  70.  * Split management interface into a separate plugin.  Fixed linker error
  71.  * introduced with status bar
  72.  *
  73.  * Revision 1.4  2003/11/04 17:49:24  dicuccio
  74.  * Changed calling parameters for plugins - pass CPluginMessage instead of paired
  75.  * CPluginCommand/CPluginReply
  76.  *
  77.  * Revision 1.3  2003/09/29 15:39:10  dicuccio
  78.  * Header file clean-up.  Deprecated gui/scope.hpp and gui/core/types.hpp.  Added
  79.  * GenBank data loader management dialog
  80.  *
  81.  * Revision 1.2  2003/08/01 14:37:20  dicuccio
  82.  * Solved issue with plugin communication - make sure that sequences are loaded
  83.  * when the load button is clicked, not when the dialog closes
  84.  *
  85.  * Revision 1.1  2003/07/31 17:04:00  dicuccio
  86.  * Added GenBank search
  87.  *
  88.  * Revision 1.9  2003/07/14 11:16:49  shomrat
  89.  * Plugin messageing system related changes
  90.  *
  91.  * Revision 1.8  2003/06/20 14:52:57  dicuccio
  92.  * Revised plugin registration - moved GetInfo() into the plugin handler
  93.  *
  94.  * Revision 1.7  2003/06/02 16:06:22  dicuccio
  95.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  96.  *     - src/objects/asn2asn --> arc/app/asn2asn
  97.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  98.  *     - src/objects/objmgr --> src/objmgr
  99.  *     - src/objects/util --> src/objmgr/util
  100.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  101.  *     - src/objects/flat --> src/objtools/flat
  102.  *     - src/objects/validator --> src/objtools/validator
  103.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  104.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  105.  * replaces the three libmmdb? libs.
  106.  *
  107.  * Revision 1.6  2003/05/19 13:40:44  dicuccio
  108.  * Moved gui/core/plugin/ -> gui/plugin/.  Merged core libraries into libgui_core.
  109.  * Removed old, unused dialog box.
  110.  *
  111.  * Revision 1.5  2003/02/24 13:03:16  dicuccio
  112.  * Renamed classes in plugin spec:
  113.  *     CArgSeg --> CPluginArgSet
  114.  *     CArgument --> CPluginArg
  115.  *     CPluginArgs --> CPluginCommand
  116.  *     CPluginCommands --> CPluginCommandSet
  117.  *
  118.  * Revision 1.4  2003/02/20 19:49:56  dicuccio
  119.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH frameowrk
  120.  * over to use new plugin architecture.
  121.  *
  122.  * Revision 1.3  2003/01/13 13:10:07  dicuccio
  123.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  124.  * Moved all FLUID-generated code into namespace ncbi.
  125.  *
  126.  * Revision 1.2  2002/12/30 17:55:42  dicuccio
  127.  * Added new virtual requirement: Save() (not handled by some plugins; return
  128.  * values should be obeyed)
  129.  *
  130.  * Revision 1.1  2002/11/25 20:51:01  dicuccio
  131.  * Initial revision.
  132.  *
  133.  * ===========================================================================
  134.  */