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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sort_menu.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:01:04  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: sort_menu.cpp,v 1000.1 2004/06/01 21:01:04 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    Dynamic menu manager for sorting a table by columns.
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "sort_menu.hpp"
  41. BEGIN_NCBI_SCOPE
  42. //
  43. // default ctor for the view menu manager class
  44. //
  45. CSortMenuMgr::CSortMenuMgr(Fl_Menu_* menu, const string& base)
  46.     : CFltkMenuMgrBase<CSortMenuProxy>(menu)
  47. {
  48.     SetMenuBase(base);
  49. }
  50. //
  51. // Clear()
  52. // this clears the contents of our two submenus
  53. //
  54. void CSortMenuMgr::Clear()
  55. {
  56.     // Do our base class clear
  57.     x_ClearData();
  58.     if ( !m_Menu ) {
  59.         return;
  60.     }
  61.     // we remove two sub-items - one for active views and one for new views
  62.     string base = m_Base;
  63.     if ( !base.empty() ) {
  64.         base += "/";
  65.     }
  66.     x_RemoveSubitems(base + "Sort by...");
  67. }
  68. //
  69. // AddSortMenu()
  70. // This will fill a menu with entries for sorting a tbale.  An entry will be
  71. // added for each column in the table; in addition, a "null" item will be added
  72. // to sort by the underlying data type of the table
  73. //
  74. void CSortMenuMgr::AddSortMenu(CFeatTable* table)
  75. {
  76.     if ( !table ) {
  77.         return;
  78.     }
  79.     string menu_base = m_Base;
  80.     if ( !menu_base.empty() ) {
  81.         menu_base += "/";
  82.     }
  83.     menu_base += "Sort by.../";
  84.     // first, add an item to sort by the underlying data
  85.     x_AddItem(menu_base + "(feature data)", new CSortMenuProxy(table, -1));
  86.     // next, add an item for each column in the table
  87.     int size = table->cols();
  88.     for (int i = 0;  i < size;  ++i) {
  89.         const string& header = table->GetColHeader(i);
  90.         string s = menu_base + header;
  91.         x_AddItem(s, new CSortMenuProxy(table, i));
  92.     }
  93. }
  94. END_NCBI_SCOPE
  95. /*
  96.  * ===========================================================================
  97.  * $Log: sort_menu.cpp,v $
  98.  * Revision 1000.1  2004/06/01 21:01:04  gouriano
  99.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  100.  *
  101.  * Revision 1.4  2004/05/21 22:27:49  gorelenk
  102.  * Added PCH ncbi_pch.hpp
  103.  *
  104.  * Revision 1.3  2003/07/28 11:51:49  dicuccio
  105.  * Rewrote CTablePanel<> to be more flexible and better contained.  Added standard
  106.  * multicolumn list dialog.  Deprecated use of COutputDlg.
  107.  *
  108.  * Revision 1.2  2003/01/13 13:10:09  dicuccio
  109.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  110.  * Moved all FLUID-generated code into namespace ncbi.
  111.  *
  112.  * Revision 1.1  2003/01/08 14:58:47  dicuccio
  113.  * Major overhaul.  Added column selection dialog to base class - moved out of
  114.  * this class.  Added ability to sort columns based on menu selections.  Added
  115.  * ability to filter features based on a wide range of criteria.
  116.  *
  117.  * ===========================================================================
  118.  */