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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: alninfo_table.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 19:33:03  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE_VIEW_ALIGN___ALNINFO_TABLE__HPP
  10. #define GUI_CORE_VIEW_ALIGN___ALNINFO_TABLE__HPP
  11. /*  $Id: alninfo_table.hpp,v 1000.1 2004/04/12 19:33:03 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.  *    CAlnInfoTable -- text (tabular) view of alignment, intended for internal
  40.  *                     NCBI use
  41.  */
  42. #include <gui/widgets/fl/table_panel.hpp>
  43. #include <objtools/alnmgr/alnvec.hpp>
  44. BEGIN_NCBI_SCOPE
  45. USING_SCOPE(objects);
  46. class CAlnInfoTable : public CTablePanelBase
  47. {
  48. public:
  49.     // enumerated list of our viewing modes
  50.     enum EMode {
  51.         eSegments,
  52.         eSequence,
  53.         eScores
  54.     };
  55.     CAlnInfoTable(int x, int y, int w, int h, const char* label = NULL);
  56.     // update the table to reflect the contents of a given alignment manager
  57.     void Update(CAlnVec& aln_mgr);
  58.     // handle resize nicely
  59.     void resize(int x, int y, int w, int h);
  60.     // set the viewing mode
  61.     void SetMode(EMode mode);
  62. protected:
  63.     // our current viewing mode
  64.     EMode m_Mode;
  65.     // a reference to our alignment manager
  66.     CRef<CAlnVec>   m_AlnMgr;
  67.     // Flek overloads
  68.     virtual int  handle(int event);
  69.     //virtual void get_style(Flv_Style& s, int row, int col);
  70.     virtual void draw_cell(TableContext ctx, int row, int col,
  71.                            int x, int y, int w, int h);
  72.     // internal function to adjust our column widths
  73.     void x_SetColWidths();
  74. };
  75. END_NCBI_SCOPE
  76. #endif  // GUI_CORE_VIEW_ALIGN___ALNINFO_TABLE__HPP
  77. /*
  78.  * ===========================================================================
  79.  * $Log: alninfo_table.hpp,v $
  80.  * Revision 1000.1  2004/04/12 19:33:03  gouriano
  81.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.7
  82.  *
  83.  * Revision 1.7  2003/12/09 15:51:24  dicuccio
  84.  * Deprecated Fl_Toggle_Tree - replaced with Flu_Tree_Browser.  Added CTreeBrowser
  85.  * as a standard tree interface
  86.  *
  87.  * Revision 1.6  2003/09/29 15:41:07  dicuccio
  88.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp.  Made
  89.  * all menu bars flat (used FL_FLAT_BOX)
  90.  *
  91.  * Revision 1.5  2003/09/24 18:25:36  dicuccio
  92.  * Inherit from CTablePanelBase.  Cleaned up rendering code.
  93.  *
  94.  * Revision 1.4  2003/09/04 14:53:09  dicuccio
  95.  * Inherit from FL_Table_Row, not Fl_Table
  96.  *
  97.  * Revision 1.3  2003/07/25 13:44:48  dicuccio
  98.  * Replaced Flv_Table with Fl_Table
  99.  *
  100.  * Revision 1.2  2003/06/02 16:06:22  dicuccio
  101.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  102.  *     - src/objects/asn2asn --> arc/app/asn2asn
  103.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  104.  *     - src/objects/objmgr --> src/objmgr
  105.  *     - src/objects/util --> src/objmgr/util
  106.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  107.  *     - src/objects/flat --> src/objtools/flat
  108.  *     - src/objects/validator --> src/objtools/validator
  109.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  110.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  111.  * replaces the three libmmdb? libs.
  112.  *
  113.  * Revision 1.1  2003/03/03 18:29:55  dicuccio
  114.  * Initial revision
  115.  *
  116.  * ===========================================================================
  117.  */