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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sort_menu.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/31 21:58:18  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE_VIEW_TABLE___SORT_MENU__HPP
  10. #define GUI_CORE_VIEW_TABLE___SORT_MENU__HPP
  11. /*  $Id: sort_menu.hpp,v 1000.0 2003/10/31 21:58: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.  *    Dynamic menu manager for sorting a table by columns.
  40.  */
  41. #include <gui/utils/fltk_utils.hpp>
  42. #include "feat_table.hpp"
  43. BEGIN_NCBI_SCOPE
  44. //
  45. // CSortMenuProxy does the grunt work of calling SortByCols() on a table.
  46. //
  47. class CSortMenuProxy : public CObject
  48. {
  49. public:
  50.     CSortMenuProxy(CFeatTable* table, int col)
  51.         : m_Table(table)
  52.         , m_Col(col) {}
  53.     virtual ~CSortMenuProxy() {}
  54.     void DoCallback()
  55.     {
  56.         if ( !m_Table ) {
  57.             return;
  58.         }
  59.         //FIXME: m_Table->SortByCol(m_Col);
  60.         m_Table->redraw();
  61.     }
  62. private:
  63.     CFeatTable* m_Table;
  64.     int m_Col;
  65. };
  66. //
  67. // class CSortMenuMgr manages a dynamic menu for sorting a table based on the
  68. // contents of its columns.
  69. //
  70. class CSortMenuMgr : public CFltkMenuMgrBase<CSortMenuProxy>
  71. {
  72. public:
  73.     CSortMenuMgr(Fl_Menu_* menu, const string& base);
  74.     // Clear our managed sub-menus
  75.     void    Clear();
  76.     // add a menu to enable users to sort based on a set of columns.  Note that
  77.     // not all columns need be visible!
  78.     void    AddSortMenu(CFeatTable* table);
  79. protected:
  80. };
  81. END_NCBI_SCOPE
  82. #endif  // GUI_CORE_VIEW_TABLE___SORT_MENU__HPP
  83. /*
  84.  * ===========================================================================
  85.  * $Log: sort_menu.hpp,v $
  86.  * Revision 1000.0  2003/10/31 21:58:18  gouriano
  87.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.7
  88.  *
  89.  * Revision 1.7  2003/07/28 11:51:49  dicuccio
  90.  * Rewrote CTablePanel<> to be more flexible and better contained.  Added standard
  91.  * multicolumn list dialog.  Deprecated use of COutputDlg.
  92.  *
  93.  * Revision 1.6  2003/07/21 19:34:22  dicuccio
  94.  * Changed data class interface from Run to DoCallback() - more descriptive
  95.  *
  96.  * Revision 1.5  2003/03/21 17:13:59  dicuccio
  97.  * Moved fltk_utils --> gui/utils
  98.  *
  99.  * Revision 1.4  2003/02/26 17:53:31  dicuccio
  100.  * Cleaned up the dynamic menus to make the dynamic menus resistant to menu
  101.  * refreshes while the menu callback is running
  102.  *
  103.  * Revision 1.3  2003/01/13 13:10:09  dicuccio
  104.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  105.  * Moved all FLUID-generated code into namespace ncbi.
  106.  *
  107.  * Revision 1.2  2003/01/08 15:33:33  dicuccio
  108.  * Fixed compilation error in MSVC
  109.  *
  110.  * Revision 1.1  2003/01/08 14:58:47  dicuccio
  111.  * Major overhaul.  Added column selection dialog to base class - moved out of
  112.  * this class.  Added ability to sort columns based on menu selections.  Added
  113.  * ability to filter features based on a wide range of criteria.
  114.  *
  115.  * ===========================================================================
  116.  */