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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: feat_table.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 21:00:34  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.25
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE_VIEW_TABLE___FEAT_TABLE__HPP
  10. #define GUI_CORE_VIEW_TABLE___FEAT_TABLE__HPP
  11. /*  $Id: feat_table.hpp,v 1000.3 2004/06/01 21:00:34 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.  *    CFeatTable -- extends CListPanel to provide feature-specific options.
  40.  */
  41. #include <gui/types.hpp>
  42. #include <gui/widgets/fl/table_panel.hpp>
  43. #include <gui/objutils/filter.hpp>
  44. #include <objmgr/bioseq_handle.hpp>
  45. #include <objmgr/feat_ci.hpp>
  46. #include <vector>
  47. BEGIN_NCBI_SCOPE
  48. USING_SCOPE(objects);
  49. class CFeatTable : public CTablePanel<CMappedFeat>
  50. {
  51. public:
  52.     // a list of the available column types we can show
  53.     enum EColumns {
  54.         eNone = -1,
  55.         eTitle = 0,
  56.         eType,
  57.         eFrom,
  58.         eTo,
  59.         //eIntervals,
  60.         eStrand,
  61.         // this must be last!
  62.         eMaxCols
  63.     };
  64.     enum EVisibleRangeMethod {
  65.         eScrollTo, 
  66.         eEntirelyContained, 
  67.         eIntersection
  68.     };
  69.     CFeatTable(int x, int y, int w, int h, const char* label = NULL);
  70.     virtual ~CFeatTable();
  71.     // Update our data relative to a given bioseq
  72.     void Update(const CBioseq_Handle& handle);
  73.     // Set the item to be shown in a given column.  If the indicated column
  74.     // index is greater than the current number of columns, the index will be
  75.     // expanded to fit.
  76.     void SetColType(int col, EColumns type);
  77.     // Access the filters active for this table
  78.     const CFilterSet&   GetFilters() const  { return m_Filters; }
  79.     CFilterSet&         GetFilters()        { return m_Filters; }
  80.     // access our statistical info
  81.     int         GetTotalFeats(void) const       { return m_TotalFeats; }
  82.     int         GetFilteredFeats(void) const    { return m_FilteredFeats; }
  83.     // set the visible range for the widget.  this is merely a hint; the table
  84.     // is free to ignore this
  85.     void SetVisibleRange(const objects::CSeq_loc& loc);
  86.     // clear all selections
  87.     void ClearSelections(void);
  88.     // select a given feature.  This will not clear other selections.
  89.     void SelectFeature(const CSeq_feat& feat);
  90.     void SetVisibleRangeMethod(EVisibleRangeMethod method);
  91.     EVisibleRangeMethod GetVisibleRangeMethod() const;
  92. private:
  93.     // our set of filters
  94.     CFilterSet m_Filters;
  95.     // visible range
  96.     TSeqRange m_VisibleRange;
  97.     EVisibleRangeMethod m_VisibleRangeMethod;
  98.     bool x_InVisibleRange(TSeqRange range);
  99.     void x_ScrollToVisibleRange();
  100.     void x_ScrollDownToVisibleRange();
  101.     void x_ScrollUpToVisibleRange();
  102.     // some statistics for our parent view
  103.     int m_TotalFeats;
  104.     int m_FilteredFeats;
  105.     // we also maintain an inverse map from feature -> row for easy look-up
  106.     typedef map<CConstRef<CSeq_feat>, int> TInvFeatMap;
  107.     TInvFeatMap m_InvFeats;
  108.     // FLTK overload: event handler
  109.     int handle(int event);
  110. };
  111. inline
  112. void CFeatTable::SetVisibleRangeMethod(EVisibleRangeMethod method)
  113. {
  114.     m_VisibleRangeMethod = method;
  115. }
  116. inline
  117. CFeatTable::EVisibleRangeMethod CFeatTable::GetVisibleRangeMethod() const
  118. {
  119.     return m_VisibleRangeMethod;
  120. }
  121. END_NCBI_SCOPE
  122. #endif  // GUI_CORE_VIEW_TABLE___FEAT_TABLE__HPP
  123. /*
  124.  * ===========================================================================
  125.  * $Log: feat_table.hpp,v $
  126.  * Revision 1000.3  2004/06/01 21:00:34  gouriano
  127.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.25
  128.  *
  129.  * Revision 1.25  2004/05/03 13:31:11  dicuccio
  130.  * gui/utils --> gui/objutils where needed
  131.  *
  132.  * Revision 1.24  2004/03/11 17:47:22  dicuccio
  133.  * Use TSeqRange instead of TRange
  134.  *
  135.  * Revision 1.23  2004/01/06 20:16:19  dicuccio
  136.  * Dropped intervals list (temporarily) - it crowds the view
  137.  *
  138.  * Revision 1.22  2003/12/30 15:03:55  dicuccio
  139.  * Added ability to pass selections into feature table
  140.  *
  141.  * Revision 1.21  2003/12/22 19:32:23  dicuccio
  142.  * Lots of code clean-up.  Changed to match new APIs in IView.  Added first pass
  143.  * at processing selections (not entirely working)
  144.  *
  145.  * Revision 1.20  2003/12/22 18:15:07  friedman
  146.  * Added various visible range methods and the selection of a method
  147.  * through the preference menu selection and dialog.
  148.  *
  149.  * Revision 1.19  2003/12/09 15:51:27  dicuccio
  150.  * Deprecated Fl_Toggle_Tree - replaced with Flu_Tree_Browser.  Added CTreeBrowser
  151.  * as a standard tree interface
  152.  *
  153.  * Revision 1.18  2003/11/19 20:45:28  friedman
  154.  * Added handling a visible range change event
  155.  *
  156.  * Revision 1.17  2003/09/29 15:41:09  dicuccio
  157.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp.  Made
  158.  * all menu bars flat (used FL_FLAT_BOX)
  159.  *
  160.  * Revision 1.16  2003/09/04 14:54:23  dicuccio
  161.  * Use IDocument instead of CDocument.  Changed APIs to match changes in IView
  162.  *
  163.  * Revision 1.15  2003/07/31 17:04:34  dicuccio
  164.  * Changed type stored by feature table view - use CMappedFeat instead of CFeature
  165.  * (less memory consumption)
  166.  *
  167.  * Revision 1.14  2003/07/28 11:51:49  dicuccio
  168.  * Rewrote CTablePanel<> to be more flexible and better contained.  Added standard
  169.  * multicolumn list dialog.  Deprecated use of COutputDlg.
  170.  *
  171.  * Revision 1.13  2003/07/25 13:44:48  dicuccio
  172.  * Replaced Flv_Table with Fl_Table
  173.  *
  174.  * Revision 1.12  2003/07/11 12:38:45  dicuccio
  175.  * Altered feature table to use smarter feature retrieval
  176.  *
  177.  * Revision 1.11  2003/06/02 16:06:24  dicuccio
  178.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  179.  *     - src/objects/asn2asn --> arc/app/asn2asn
  180.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  181.  *     - src/objects/objmgr --> src/objmgr
  182.  *     - src/objects/util --> src/objmgr/util
  183.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  184.  *     - src/objects/flat --> src/objtools/flat
  185.  *     - src/objects/validator --> src/objtools/validator
  186.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  187.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  188.  * replaces the three libmmdb? libs.
  189.  *
  190.  * Revision 1.10  2003/05/16 18:50:34  dicuccio
  191.  * Added smarter retrieval of features
  192.  *
  193.  * Revision 1.9  2003/03/03 14:58:56  dicuccio
  194.  * Changed to use visible range from the base class.  Added an explicit setter for
  195.  * the visible range
  196.  *
  197.  * Revision 1.8  2003/02/20 19:50:00  dicuccio
  198.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH frameowrk
  199.  * over to use new plugin architecture.
  200.  *
  201.  * Revision 1.7  2003/01/13 13:10:09  dicuccio
  202.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  203.  * Moved all FLUID-generated code into namespace ncbi.
  204.  *
  205.  * Revision 1.6  2003/01/09 14:50:42  dicuccio
  206.  * Use 'const CBioseq_Handle&' instead of 'CBioseq_Handle&'
  207.  *
  208.  * Revision 1.5  2003/01/08 15:33:33  dicuccio
  209.  * Fixed compilation error in MSVC
  210.  *
  211.  * Revision 1.4  2003/01/08 14:58:47  dicuccio
  212.  * Major overhaul.  Added column selection dialog to base class - moved out of
  213.  * this class.  Added ability to sort columns based on menu selections.  Added
  214.  * ability to filter features based on a wide range of criteria.
  215.  *
  216.  * Revision 1.3  2003/01/03 17:27:44  dicuccio
  217.  * Added ability to select columns for viewing and sorting
  218.  *
  219.  * Revision 1.2  2002/12/30 20:51:10  dicuccio
  220.  * WTweaks for compiling on Windows
  221.  *
  222.  * Revision 1.1  2002/12/30 18:49:41  dicuccio
  223.  * Initial revision
  224.  *
  225.  * ===========================================================================
  226.  */