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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ipolicy.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:52:46  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_GL___IPOLICY__HPP
  10. #define GUI_WIDGETS_GL___IPOLICY__HPP
  11. /*  $Id: ipolicy.hpp,v 1000.2 2004/06/01 19:52:46 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:  Vlad Lebedev
  37.  *
  38.  * File Description:
  39.  *    IPolicy -- the basic interface for rendering policies in Feature Panel
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <objmgr/bioseq_handle.hpp>
  43. #include <gui/opengl/glpane.hpp>
  44. #include <gui/objutils/utils.hpp>
  45. #include <gui/objutils/label.hpp>
  46. #include <gui/widgets/seq_graphic/seqgraphic_conf.hpp>
  47. #include <gui/widgets/gl/html_active_area.hpp>
  48. BEGIN_NCBI_SCOPE
  49. //
  50. // class IPolicy defines the abstract interface required of rendering 
  51. // LayoutObjects constructed in the FeaturePanel
  52. //
  53. class IPolicy : public CObject
  54. {
  55. public:
  56.     typedef vector<CHTMLActiveArea> TAreaVector;
  57.     
  58.     enum EObj_IterMode {
  59.         eDrawObjectLines,
  60.         eDrawObjectQuads,
  61.         eDrawObjectLabel,
  62.         eDrawObjectGrid,
  63.         eCalcObjectRows,
  64.         eGetHTMLAreas,
  65.         eObjectHitTest
  66.     };
  67.     // virtual destructor
  68.     virtual ~IPolicy(void) { }
  69.     
  70.     // returns height for the given CLayoutObject (for layout)
  71.     virtual TModelUnit GetRowHeight(CGlPane& pane, const CLayoutObject* obj,
  72.             bool selected) const = 0;
  73.     
  74.     // process the CLayoutObject
  75.     virtual bool ProcessObject(CGlPane& pane, const CLayoutObject* obj, 
  76.             TModelUnit row, EObj_IterMode mode, bool selected) const = 0;
  77.     // get title (tooltip) for CLayoutObject
  78.     virtual void GetTitle(const CLayoutObject* obj, 
  79.         string* title, CLabel::ELabelType type) const = 0;
  80.     // initialization methods
  81.     virtual void SetHandle(const objects::CBioseq_Handle& handle) = 0;
  82.     virtual void SetConfig(CSeqGraphicConfig* config) = 0;
  83.     
  84.     // this is called before doing any hit testing
  85.     virtual void SetHitPoint(TModelPoint click) = 0;
  86.     
  87.     // this is called before querying for HTML active areas
  88.     virtual void SetActiveArea(TAreaVector* p_area) = 0;
  89. };
  90. END_NCBI_SCOPE
  91. /*
  92.  * ===========================================================================
  93.  * $Log: ipolicy.hpp,v $
  94.  * Revision 1000.2  2004/06/01 19:52:46  gouriano
  95.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  96.  *
  97.  * Revision 1.8  2004/05/14 15:57:09  lebedev
  98.  * Optional argument to specify the type of title/tooltip added
  99.  *
  100.  * Revision 1.7  2004/05/03 12:47:08  dicuccio
  101.  * Added #include for gui/gui.hpp.  gui/utils ->gui/objutils where needed.
  102.  *
  103.  * Revision 1.6  2004/04/16 14:33:22  dicuccio
  104.  * Pass config as raw pointer, not CRef<>
  105.  *
  106.  * Revision 1.5  2004/04/06 13:29:30  dicuccio
  107.  * Changed type of TAreaVector to use CHMTLActiveArea directly
  108.  *
  109.  * Revision 1.4  2004/03/31 16:07:51  lebedev
  110.  * eGetHTMLAreas added
  111.  *
  112.  * Revision 1.3  2004/03/23 12:35:49  lebedev
  113.  * Get rid of fixed size rows in IRenderable panels
  114.  *
  115.  * Revision 1.2  2004/01/16 13:53:17  lebedev
  116.  * Method for retrieving tooltips added
  117.  *
  118.  * Revision 1.1  2003/12/16 18:53:05  lebedev
  119.  * Initial revision
  120.  *
  121.  * ===========================================================================
  122.  */
  123. #endif  // GUI_WIDGETS_GL___IPOLICY__HPP