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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: plugin_factory.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:44:21  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: plugin_factory.cpp,v 1000.1 2004/06/01 20:44:21 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.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/core/doc_manager.hpp>
  41. #include <gui/core/plugin_exception.hpp>
  42. #include <gui/core/plugin_factory.hpp>
  43. #include <gui/core/plugin_registry.hpp>
  44. #include <gui/plugin/PluginArgSet.hpp>
  45. #include <gui/plugin/PluginInfo.hpp>
  46. #include <gui/utils/message_box.hpp>
  47. #include <gui/core/idocument.hpp>
  48. BEGIN_NCBI_SCOPE
  49. // virtual destructor
  50. CPluginFactoryBase::~CPluginFactoryBase()
  51. {
  52. }
  53. END_NCBI_SCOPE
  54. /*
  55.  * ===========================================================================
  56.  * $Log: plugin_factory.cpp,v $
  57.  * Revision 1000.1  2004/06/01 20:44:21  gouriano
  58.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  59.  *
  60.  * Revision 1.18  2004/05/21 22:27:40  gorelenk
  61.  * Added PCH ncbi_pch.hpp
  62.  *
  63.  * Revision 1.17  2003/10/27 17:37:23  dicuccio
  64.  * Removed dead #includes
  65.  *
  66.  * Revision 1.16  2003/09/04 14:01:51  dicuccio
  67.  * Introduce IDocument and IView as abstract base classes for CDocument and CView
  68.  *
  69.  * Revision 1.15  2003/07/14 11:00:44  shomrat
  70.  * Plugin messageing system related changes
  71.  *
  72.  * Revision 1.14  2003/06/25 17:02:54  dicuccio
  73.  * Split CPluginHandle into a handle (pointer-to-implementation) and
  74.  * implementation file.  Lots of #include file clean-ups.
  75.  *
  76.  * Revision 1.13  2003/06/20 14:47:41  dicuccio
  77.  * Revised handling of plugin registration (moved GetInfo() out of plugin factory
  78.  * and into each handler as a static function)
  79.  *
  80.  * Revision 1.12  2003/05/30 14:15:41  dicuccio
  81.  * Renamed MessageBox to NcbiMessageBox because brain-dead MSVC thinks this is
  82.  * ::MessageBox and rewrites the symbol as MessageBoxA, which results in an
  83.  * unresolved external and conflict with the Win32 API :(.
  84.  *
  85.  * Revision 1.11  2003/05/30 12:56:50  dicuccio
  86.  * Converted code to use MessageBox() instead of fl_ask()/fl_message()/fl_alert()
  87.  *
  88.  * Revision 1.10  2003/05/19 13:35:59  dicuccio
  89.  * Moved gui/core/plugin/ -> gui/plugin/.  Merged gui/core/algo, gui/core/doc/,
  90.  * and gui/core/view/ into one library (gui/core/)
  91.  *
  92.  * Revision 1.9  2003/05/12 15:59:20  dicuccio
  93.  * Cleaned up specification and launching of plugins - use a unified plugin launch
  94.  * specifier
  95.  *
  96.  * Revision 1.8  2003/05/07 17:27:20  dicuccio
  97.  * Implemented launching of algorithm plugin with data specified in plugin reply
  98.  *
  99.  * Revision 1.7  2003/04/29 14:40:47  dicuccio
  100.  * Sorted include statements
  101.  *
  102.  * Revision 1.6  2003/04/24 16:29:13  dicuccio
  103.  * Remember to update all doc manager views on creating a view
  104.  *
  105.  * Revision 1.5  2003/04/16 18:20:15  dicuccio
  106.  * Changed plugin command retrieval function
  107.  *
  108.  * Revision 1.4  2003/03/13 18:15:13  dicuccio
  109.  * Added standard handler for plugin reply actions (view action is currently the
  110.  * only action handled)
  111.  *
  112.  * Revision 1.3  2003/02/28 15:06:22  dicuccio
  113.  * Made help file an optional component of the info class
  114.  *
  115.  * Revision 1.2  2003/02/24 13:03:15  dicuccio
  116.  * Renamed classes in plugin spec:
  117.  *     CArgSeg --> CPluginArgSet
  118.  *     CArgument --> CPluginArg
  119.  *     CPluginArgs --> CPluginCommand
  120.  *     CPluginCommands --> CPluginCommandSet
  121.  *
  122.  * Revision 1.1  2003/02/20 19:49:56  dicuccio
  123.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH frameowrk
  124.  * over to use new plugin architecture.
  125.  *
  126.  * ===========================================================================
  127.  */