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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: document_dlg.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 20:47:54  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: document_dlg.cpp,v 1000.3 2004/06/01 20:47:54 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.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "document_dlg.hpp"
  41. #include "records_table.hpp"
  42. #include <gui/core/selection_buffer.hpp>
  43. #include <gui/core/algo_menu.hpp>
  44. BEGIN_NCBI_SCOPE
  45. #include "document_dlg_.cpp"
  46. CDocumentDlg::CDocumentDlg()
  47. {
  48.     m_Window.reset(x_CreateWindow());
  49.     m_Records->SetCellBox(FL_NO_BOX);
  50. }
  51. void CDocumentDlg::Show()
  52. {
  53.     m_Window->show();
  54. }
  55. bool CDocumentDlg::Shown() const
  56. {
  57.     return m_Window->shown() ? true : false;
  58. }
  59. void CDocumentDlg::Hide()
  60. {
  61.     m_Window->hide();
  62. }
  63. string CDocumentDlg::GetTitle() const
  64. {
  65.     return "Records View";
  66. }
  67. void CDocumentDlg::Update(TUpdateFlags flags)
  68. {
  69.     GetSelBuffer().Clear();
  70.     // update the various menus
  71.     x_UpdateDynMenus();
  72.     // ... and update our records list
  73.     if (m_Records) {
  74.         m_Records->Update(flags);
  75.         m_Records->redraw();
  76.     }
  77. }
  78. void CDocumentDlg::x_OnUnload()
  79. {
  80. }
  81. void CDocumentDlg::x_OnOK()
  82. {
  83.     m_Window->hide();
  84. }
  85. void CDocumentDlg::GetSelections(TConstScopedObjects& objs) const
  86. {
  87.     objs = GetSelBuffer().DecomposeToPairs();
  88. }
  89. void CDocumentDlg::SetSelections(const TConstScopedObjects& objs)
  90. {
  91.     // FIXME: stub only
  92. }
  93. void CDocumentDlg::x_OnSelChanged()
  94. {
  95.     // first, collect our selected documents
  96.     GetSelBuffer().Clear();
  97.     for (size_t i = 0;  i < m_Records->GetRows();  ++i) {
  98.         if ( !m_Records->IsRowSelected(i) ) {
  99.             continue;
  100.         }
  101.         IDocument* doc = m_Records->GetData(i);
  102.         GetSelBuffer().AddSelection(doc);
  103.     }
  104.     // now, refresh the menus
  105.     x_UpdateDynMenus();
  106. }
  107. void CDocumentDlg::x_UpdateDynMenus()
  108. {
  109.     if ( !m_ToolsMgr.get() ) {
  110.         m_ToolsMgr.reset(new CAlgoMenuMgr(m_ToolsButton, "", this));
  111.     }
  112.     //
  113.     // fill the algorithm plugins menus
  114.     //
  115.     m_ToolsMgr->Clear();
  116.     m_ToolsMgr->AddAlgoMenu();//GetSelBuffer());
  117. }
  118. END_NCBI_SCOPE
  119. /*
  120.  * ===========================================================================
  121.  * $Log: document_dlg.cpp,v $
  122.  * Revision 1000.3  2004/06/01 20:47:54  gouriano
  123.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  124.  *
  125.  * Revision 1.6  2004/05/21 22:27:42  gorelenk
  126.  * Added PCH ncbi_pch.hpp
  127.  *
  128.  * Revision 1.5  2004/05/07 15:34:21  dicuccio
  129.  * Fixed unsigned/signed comparison
  130.  *
  131.  * Revision 1.4  2004/04/16 14:39:42  dicuccio
  132.  * Inherit from ISelection for selection marshalling
  133.  *
  134.  * Revision 1.3  2004/01/20 18:15:52  dicuccio
  135.  * Changed to match new API in CTablePanel
  136.  *
  137.  * Revision 1.2  2003/09/04 14:02:36  dicuccio
  138.  * Introduce IDocument as abstract base class for CDocument; replace use of
  139.  * CDocument with IDocument
  140.  *
  141.  * Revision 1.1  2003/08/06 13:53:27  dicuccio
  142.  * Added document dialog files
  143.  *
  144.  * ===========================================================================
  145.  */