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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: idocument.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/04/12 18:12:24  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___IDOCUMENT__HPP
  10. #define GUI_CORE___IDOCUMENT__HPP
  11. /*  $Id: idocument.hpp,v 1000.3 2004/04/12 18:12:24 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.  *    IDocument -- the basic data unit for GBENCH
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <objmgr/scope.hpp>
  43. #include <gui/types.hpp>
  44. #include <list>
  45. BEGIN_NCBI_SCOPE
  46. class IView;
  47. class CSelectionBuffer;
  48. class IEventTransmitter;
  49. class IEventReceiver;
  50. //
  51. // class IDocument defines the abstract interface required of document objects.
  52. //
  53. // This class defines the properties that any code that works with documents
  54. // can reasonably expect a document to offer.  It is not quite a pure interface
  55. // class, as it inherits from CObject and gains the data members of CObject as a result.
  56. // The interface includes hooks for view atachment and retrieval, document
  57. // identification, and retrieval of the core components of the document
  58. // itself.  In essence, all documents must provide a CScope object that
  59. // can be used to retrieve the contents of the document.  The base object in
  60. // the document is also expose for const manipulation.
  61. //
  62. class IDocument : public CObject
  63. {
  64. public:
  65.     // Typedef for our views and lists of views
  66.     typedef list< CRef<IView> >    TViews;
  67.     // virtual destructor
  68.     virtual ~IDocument(void) { }
  69.     // Get a description of our contents.
  70.     // This is suitable for display in a GUI component such as a list view.
  71.     virtual const string& GetTitle(void) const = 0;
  72.     virtual const string& GetShortTitle(void) const = 0;
  73.     // Retrieve the unique ID associated with this document
  74.     virtual size_t GetDocID(void) const = 0;
  75.     // Attach a view to the current document
  76.     virtual void AttachView(IView* view, const string& pool = "") = 0;
  77.     // detach a view from the current document
  78.     virtual void DetachView(IView* view) = 0;
  79.     // Retrieve the existing views for this class
  80.     virtual const TViews& GetViews(void) const = 0;
  81.     virtual TViews&       SetViews(void)       = 0;
  82.     // Clear this document.  This is called at application shut-down
  83.     // to make sure all data is properly destroyed.
  84.     virtual void Clear(void) = 0;
  85.     // Hide/Show the workspace associated with this document
  86.     virtual void ShowWorkspace(void) = 0;
  87.     virtual void HideWorkspace(void) = 0;
  88.     // Add an annotation to this document.  This will throw an exception if the
  89.     // action is unsupported.
  90.     virtual void AttachAnnot(objects::CSeq_annot& annot) = 0;
  91.     // access the scope associated with this document
  92.     virtual objects::CScope& GetScope(void) const = 0;
  93.     virtual void             SetScope(objects::CScope& scope) = 0;
  94.     // access the core object associated with this document
  95.     // this is pure virtual to allow derived documents to define what their
  96.     // central object is and how to return it to the system
  97.     virtual const CObject*  GetObject(void) const = 0;
  98.     virtual CObject*        GetObject(void) = 0;
  99.     //
  100.     // Messaging APIs
  101.     //
  102.     // Force all views to update themselves relative to this document
  103.     // This is equivalent to calling PostDocumentChanged()
  104.     virtual void UpdateAllViews(void) = 0;
  105.     // Inform the members of a named pool that the document has changed
  106.     virtual void PostDocumentChanged(const string& msg_pool = kEmptyStr) = 0;
  107.     // Inform the members of a pool that the visible range has changed
  108.     virtual void PostVisibleRangeChanged(const objects::CSeq_loc& loc,
  109.                                          const string& msg_pool = kEmptyStr) = 0;
  110.     // Inform the members of a pool that the selections have changed.
  111.     virtual void PostSelectionChanged(const CSelectionBuffer& buf,
  112.                                       const string& msg_pool = kEmptyStr) = 0;
  113.     // Inform our views that there is a new view.
  114.     virtual void PostViewCreated(IView& view) = 0;
  115.     // Inform our views that a view has been deleted
  116.     virtual void PostViewReleased(IView& view) = 0;
  117.     // Send event to a view's message pool
  118.     virtual void PostGroupMessage(IView* view, TUpdateFlags flags, 
  119.                                   const void* user_data) = 0;
  120.      // Transmitter/reciever QI
  121.     virtual IEventTransmitter * QueryInterfaceTransmitter(void) = 0;
  122.     virtual IEventReceiver    * QueryInterfaceReceiver(void)    = 0;  
  123. };
  124. END_NCBI_SCOPE
  125. /*
  126.  * ===========================================================================
  127.  * $Log: idocument.hpp,v $
  128.  * Revision 1000.3  2004/04/12 18:12:24  gouriano
  129.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.10
  130.  *
  131.  * Revision 1.10  2004/03/30 17:09:56  tereshko
  132.  * Added support for events broadcasting
  133.  *
  134.  * Revision 1.9  2004/03/22 14:17:14  dicuccio
  135.  * Replace gui/gui with gui/types - relieves FLTK dependency
  136.  *
  137.  * Revision 1.8  2004/03/11 17:16:04  dicuccio
  138.  * Use gui/gui instead of gui/types
  139.  *
  140.  * Revision 1.7  2003/12/22 19:12:10  dicuccio
  141.  * Modified mechanism for view-view messaging: provide more explicit function
  142.  * signatures; added helper functions to make posting messages easier.
  143.  *
  144.  * Revision 1.6  2003/11/19 20:41:07  friedman
  145.  * Added grouping views into group message pools
  146.  *
  147.  * Revision 1.5  2003/11/14 17:42:46  dicuccio
  148.  * Added Clear()
  149.  *
  150.  * Revision 1.4  2003/11/06 19:51:40  dicuccio
  151.  * Changed API for ATtachView() to take an optional message pool name
  152.  *
  153.  * Revision 1.3  2003/10/10 17:10:30  dicuccio
  154.  * Added interface functions to detach a view from a document
  155.  *
  156.  * Revision 1.2  2003/09/29 15:20:06  dicuccio
  157.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  158.  *
  159.  * Revision 1.1  2003/09/04 13:56:53  dicuccio
  160.  * Initial revision
  161.  *
  162.  * ===========================================================================
  163.  */
  164. #endif  // GUI_CORE___IDOCUMENT__HPP