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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ialign_row.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/04/12 18:16:09  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.12
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef __GUI_WIDGETS_ALNMULTI___IALIGN_ROW__HPP
  10. #define __GUI_WIDGETS_ALNMULTI___IALIGN_ROW__HPP
  11. /*  $Id: ialign_row.hpp,v 1000.3 2004/04/12 18:16:09 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:  Andrey Yazhuk
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <gui/opengl/glpane.hpp>
  43. #include <gui/utils/gui_event.hpp>
  44. #include <gui/opengl/glbitmapfont.hpp>
  45. #include <gui/widgets/gl/html_active_area.hpp>
  46. #include <gui/widgets/aln_multiple/row_display_style.hpp>
  47. BEGIN_NCBI_SCOPE
  48. class IAlignRowHost;
  49. ////////////////////////////////////////////////////////////////////////////////
  50. /// Interface  IAlignRow - abstracts row rendering in Multiple Alignment
  51. /// Widget.
  52. ///
  53. /// IAlignRow represents an object that can render alignment row as a set
  54. /// of cells corresponding to enumerated columns. No asumptions are made about
  55. /// data-structure used for alignment representation, concrete classes implementing
  56. /// the interface are responsible for providing means for accessing data. 
  57. class IAlignRow
  58. {
  59. public:
  60.     typedef vector<CHTMLActiveArea>    TAreaVector;
  61.     ///  Column identifier
  62.     enum EColumnType    {
  63.         eInvalid = -1,
  64.         eDescr,
  65.         eIcons,
  66.         eStart,
  67.         eAlignment,
  68.         eEnd,
  69.         eSeqEnd
  70.     };
  71.     /// Row state.
  72.     enum EState {
  73.         fNone           = 0,    
  74.         fItemSelected   = 0x01, 
  75.         fItemFocused    = 0x02,         
  76.         fItemHidden     = 0x08,
  77.         
  78.         fWidgetFocused  = 0x40000000, /// it isn'e exactly a row state;
  79.         // this flag is added dynamicaly to control row rendering
  80.          
  81.         fFocused = fItemFocused | fWidgetFocused,
  82.         fSelectedActive = fItemSelected | fWidgetFocused,
  83.         fSelectedFocused = fFocused | fItemSelected
  84.     };
  85.     enum    EGraphCacheCmd  {
  86.         eInvalidate,
  87.         eDelete
  88.     };
  89.     virtual ~IAlignRow()    {};
  90.     
  91.     virtual void    SetHost(IAlignRowHost* pHost) = 0;
  92.     virtual void    SetDisplayStyle(const CRowDisplayStyle* style) = 0;
  93.     virtual const CRowDisplayStyle*    GetDisplayStyle() = 0;
  94.     /// Returns index of row in IAlnMultiDataSource.
  95.     virtual int GetRowNum() const = 0;  
  96.     /// Returns height of the row in pixels.
  97.     virtual int GetHeightPixels() const = 0; 
  98.        
  99.     /// Renders a row cell corresponding to column specified by "col_type". "Pane"
  100.     /// represents port corresponding to the cell; model space is Elems x Pixels.
  101.     virtual void    RenderColumn(EColumnType  col_type, CGlPane& pane, int state) = 0; 
  102.     virtual int     handle(CGUIEvent& event, EColumnType  col_type, CGlPane& pane) = 0;
  103.     virtual string  GetTooltip(EColumnType col_type, CGlPane& pane) = 0;
  104.     virtual void    GraphicsCacheCmd(EGraphCacheCmd cmd)    {};
  105.     virtual void    GetHTMLActiveAreas(EColumnType col_type, CGlPane& pane, TAreaVector& areas) = 0;
  106. };
  107. /// IAlignRowHost represents a context in which IAlignRow lives. 
  108. ///
  109. class IAlignRowHost
  110. {
  111. public:
  112.     /// provides mouse coords in OpenGL viewport coord system
  113.     virtual TVPPoint    ARH_GetVPMousePos() = 0;
  114.     
  115.     /// notifies a host about changes the row
  116.     virtual void        ARH_OnRowChanged(IAlignRow* p_row) = 0;    
  117. };
  118. END_NCBI_SCOPE
  119. /*
  120.  * ===========================================================================
  121.  * $Log: ialign_row.hpp,v $
  122.  * Revision 1000.3  2004/04/12 18:16:09  gouriano
  123.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.12
  124.  *
  125.  * Revision 1.12  2004/04/06 19:06:38  yazhuk
  126.  * Added "EColumnType col_type" argument to GetHTMLActiveAreas()
  127.  *
  128.  * Revision 1.11  2004/04/06 15:33:14  yazhuk
  129.  * Added eInvalid to EColumnType
  130.  *
  131.  * Revision 1.10  2004/04/06 13:29:59  dicuccio
  132.  * CHanged TAreaVector to use CHTMLActiveArea directly
  133.  *
  134.  * Revision 1.9  2004/03/29 19:01:26  yazhuk
  135.  * Added GetHTMLActiveAreas()
  136.  *
  137.  * Revision 1.8  2004/03/17 20:08:46  yazhuk
  138.  * Replaced #include <..fltk_utils.hpp> with <..gui_event.hpp>
  139.  *
  140.  * Revision 1.7  2004/02/17 15:20:15  yazhuk
  141.  * Added GraphicsCacheCmd()
  142.  *
  143.  * Revision 1.6  2003/12/29 23:19:56  yazhuk
  144.  * Added GetTooltip()
  145.  *
  146.  * Revision 1.5  2003/12/22 16:28:37  yazhuk
  147.  * Rearranged state flags
  148.  *
  149.  * Revision 1.4  2003/12/18 21:08:46  yazhuk
  150.  * Added display styles support, row state flags
  151.  *
  152.  * Revision 1.3  2003/12/01 16:42:23  yazhuk
  153.  * Refactored event handling - introduced CGUIEvent
  154.  *
  155.  * Revision 1.2  2003/11/03 16:48:26  yazhuk
  156.  * Added IAlignRowHost class
  157.  *
  158.  * Revision 1.1  2003/10/29 23:29:38  yazhuk
  159.  * Initial revision
  160.  *
  161.  * ===========================================================================
  162.  */
  163. #endif  // __GUI_WIDGETS_ALNMULTI___IALIGN_ROW__HPP