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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: algo_menu.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/16 17:48:59  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.14
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___ALGO_MENU__HPP
  10. #define GUI_CORE___ALGO_MENU__HPP
  11. /*  $Id: algo_menu.hpp,v 1000.1 2004/04/16 17:48:59 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.  *
  40.  *    IAlgoMenuData -- Class to hold callback information necessary to spawn an
  41.  *                     algorithm plugin from an FLTK callback
  42.  *
  43.  *    CAlgoMenuMgr  -- Manager for dynamic FLTK algorithm plugin menu +
  44.  *                     callback data
  45.  */
  46. #include <corelib/ncbistd.hpp>
  47. #include <gui/utils/fltk_utils.hpp>
  48. BEGIN_NCBI_SCOPE
  49. class IDocument;
  50. class ISelection;
  51. //
  52. // data class that we use internally to store data about our algorithm callback
  53. //
  54. class IAlgoMenuData : public CObject
  55. {
  56. public:
  57.     virtual void DoCallback() = 0;
  58. };
  59. //
  60. // class CAlgoMenuMgr manages a dynamic menu for views
  61. //
  62. class NCBI_GUICORE_EXPORT CAlgoMenuMgr : public CFltkMenuMgrBase<IAlgoMenuData>
  63. {
  64. public:
  65.     CAlgoMenuMgr(Fl_Menu_* menu, const string& base,
  66.                  ISelection* sel_source);
  67.     // Clear our managed sub-menus
  68.     void    Clear();
  69.     // add a list of algorithms applicable to a given selection buffer
  70.     void    AddAlgoMenu();
  71.     //void    AddAlgoMenu(IDocument* doc);
  72.     //void    AddAlgoMenu(const CSelectionBuffer& sels);
  73. protected:
  74.     ISelection* m_SelSource;
  75. };
  76. END_NCBI_SCOPE
  77. /*
  78.  * ===========================================================================
  79.  * $Log: algo_menu.hpp,v $
  80.  * Revision 1000.1  2004/04/16 17:48:59  gouriano
  81.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.14
  82.  *
  83.  * Revision 1.14  2004/04/16 14:30:19  dicuccio
  84.  * Use ISelection as selection source instead of passing in selection buffer
  85.  *
  86.  * Revision 1.13  2003/09/16 14:04:24  dicuccio
  87.  * Renamed menu data interface classes
  88.  *
  89.  * Revision 1.12  2003/09/04 14:00:26  dicuccio
  90.  * Introduce IDocument and IView as abstract base classes.  Use IDocument instead
  91.  * of CDocument.
  92.  *
  93.  * Revision 1.11  2003/07/21 19:20:42  dicuccio
  94.  * Changed interface from Run() to DoCallback() -- more descriptive
  95.  *
  96.  * Revision 1.10  2003/06/30 20:04:40  dicuccio
  97.  * Fixed probelm with crashing algorithm menus - menu data class holds a copy of a
  98.  * plugin handle, not a reference.
  99.  *
  100.  * Revision 1.9  2003/06/25 16:59:41  dicuccio
  101.  * Changed CPluginHandle into a pointer-to-implementation (the previous
  102.  * implementation is now the pointer held).  Lots of #include file clean-ups.
  103.  *
  104.  * Revision 1.8  2003/04/29 14:27:40  dicuccio
  105.  * Added interface functions for building algorithm menus from selections and
  106.  * documents.  Changed storage of selection buffer to CConstRef for added safety
  107.  *
  108.  * Revision 1.7  2003/03/31 13:49:22  dicuccio
  109.  * Added additional initialization path for IAlgoMenuData - can create with no
  110.  * selection buffer
  111.  *
  112.  * Revision 1.6  2003/03/21 16:58:03  dicuccio
  113.  * Moved fltk_utils.hpp --> gui/utils
  114.  *
  115.  * Revision 1.5  2003/02/26 17:52:26  dicuccio
  116.  * Cleaned up dynamic menus to make them resistant to refreshing the menu while
  117.  * the menu callback is running
  118.  *
  119.  * Revision 1.4  2003/02/20 19:44:06  dicuccio
  120.  * Created new plugin architecture, mediated via an ASN.1 spec.  Moved GBENCH
  121.  * framework over to use new plugin architecture.
  122.  *
  123.  * Revision 1.3  2003/01/13 13:11:41  dicuccio
  124.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  125.  * Moved all FLUID-generated code into namespace ncbi.
  126.  *
  127.  * Revision 1.2  2002/12/26 14:19:55  dicuccio
  128.  * Added Win32 export specifiers.
  129.  *
  130.  * Revision 1.1  2002/12/20 19:11:11  dicuccio
  131.  * Initial revision.
  132.  *
  133.  * ===========================================================================
  134.  */
  135. #endif  // GUI_CORE___ALGO_MENU__HPP