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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: docmgr_view.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 18:12:18  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___DOC_MGR_VIEW__HPP
  10. #define GUI_CORE___DOC_MGR_VIEW__HPP
  11. /*  $Id: docmgr_view.hpp,v 1000.1 2004/04/12 18:12:18 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.  *    Base class for specialized views of the document manager (arbiter)
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <gui/gui.hpp>
  43. BEGIN_NCBI_SCOPE
  44. class CSelectionBuffer;
  45. //
  46. //  Base class for all views
  47. //
  48. class NCBI_GUICORE_EXPORT CDocMgrView : public CObject
  49. {
  50. public:
  51.     CDocMgrView();
  52.     virtual ~CDocMgrView(void);
  53.     virtual void Show  (void) = 0;
  54.     virtual bool Shown (void) const = 0;
  55.     virtual void Hide  (void) = 0;
  56.     virtual void Update(TUpdateFlags flags) = 0;
  57.     virtual string GetTitle(void) const = 0;
  58.     void         SetEventMask(TUpdateFlags flags)   { m_EventMask = flags; }
  59.     TUpdateFlags GetEventMask(void) const           { return m_EventMask; }
  60.     // Access the selection buffer.  The selection buffer is a hierarchical
  61.     // data structure holding lists of items for a number of documents.
  62.     const CSelectionBuffer& GetSelBuffer(void) const  { return *m_SelBuffer; }
  63.     CSelectionBuffer&       GetSelBuffer(void)        { return *m_SelBuffer; }
  64. protected:
  65.     CRef<CSelectionBuffer>  m_SelBuffer;
  66.     TUpdateFlags            m_EventMask;
  67.     // Prohibit copying!
  68.     CDocMgrView(const CDocMgrView&);
  69.     CDocMgrView& operator= (const CDocMgrView&);
  70. };
  71. END_NCBI_SCOPE
  72. #endif  // GUI_CORE___DOC_MGR_VIEW__HPP
  73. /*
  74.  * ===========================================================================
  75.  * $Log: docmgr_view.hpp,v $
  76.  * Revision 1000.1  2004/04/12 18:12:18  gouriano
  77.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.9
  78.  *
  79.  * Revision 1.9  2004/03/11 17:15:22  dicuccio
  80.  * Changed gui/types to gui/gui
  81.  *
  82.  * Revision 1.8  2003/09/29 15:20:06  dicuccio
  83.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  84.  *
  85.  * Revision 1.7  2003/06/25 16:59:41  dicuccio
  86.  * Changed CPluginHandle into a pointer-to-implementation (the previous
  87.  * implementation is now the pointer held).  Lots of #include file clean-ups.
  88.  *
  89.  * Revision 1.6  2003/04/07 17:30:49  dicuccio
  90.  * Added pure virtual function: Shown()
  91.  *
  92.  * Revision 1.5  2003/01/13 13:11:41  dicuccio
  93.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  94.  * Moved all FLUID-generated code into namespace ncbi.
  95.  *
  96.  * Revision 1.4  2002/12/19 18:13:02  dicuccio
  97.  * Added export specifiers for Win32.
  98.  *
  99.  * Revision 1.3  2002/12/12 15:18:02  dicuccio
  100.  * Provide non-const access to the selection buffer of a given view
  101.  *
  102.  * Revision 1.2  2002/11/07 18:20:12  dicuccio
  103.  * Moved #ifdef to top of file.
  104.  *
  105.  * Revision 1.1  2002/11/04 21:09:05  dicuccio
  106.  * Initial revision
  107.  *
  108.  * ===========================================================================
  109.  */