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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: obj_browser.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/02 20:23:58  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: obj_browser.cpp,v 1000.1 2004/06/02 20:23:58 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 "obj_browser.hpp"
  41. #include "obj_browse_other.hpp"
  42. #include <gui/objutils/obj_clipboard.hpp>
  43. #include <gui/core/plugin_utils.hpp>
  44. #include <gui/core/doc_manager.hpp>
  45. BEGIN_NCBI_SCOPE
  46. SBrowserObject::SBrowserObject()
  47. {
  48. }
  49. SBrowserObject::SBrowserObject(const IDocument& doc, const CObject& obj)
  50.     : document(&doc),
  51.       object(&obj)
  52. {
  53. }
  54. CObjBrowser::CObjBrowser(int x, int y, int w, int h,
  55.                          const string& type_info, const string& col_header,
  56.                          const char* label)
  57.     : CTablePanel<SBrowserObject>(x, y, w, h, label)
  58.     , m_TypeInfo(type_info)
  59. {
  60.     SetColumn(eObjLabel, col_header, eString, FL_ALIGN_LEFT, 1.0f);
  61.     labelsize(12);
  62.     m_EventHandler.StandardConfig();
  63. }
  64. void CObjBrowser::Add(const IDocument& doc, const CObject& obj)
  65. {
  66.     CObjectConverter::TObjList objs;
  67.     CObjectConverter::Convert(doc.GetScope(), obj, m_TypeInfo, objs);
  68.     size_t idx = GetRows();
  69.     SetRows(GetRows() + objs.size());
  70.     ITERATE (CObjectConverter::TObjList, iter, objs) {
  71.         SetData(idx) = SBrowserObject(doc, **iter);
  72.         string& label = SetCell(idx, eObjLabel);
  73.         label = CPluginUtils::GetLabel(**iter, &doc.GetScope());
  74.         ++idx;
  75.     }
  76. }
  77. int CObjBrowser::handle(int event)
  78. {
  79.     m_EventHandler.OnFLTKEvent(event);
  80.     switch (m_EventHandler.GetGUIState()) {
  81.     case CGUIEvent::eCutState:
  82.         {{
  83.             CObjClipboard::Clear();
  84.             for (int i = GetRows() - 1;  i >= 0;  --i) {
  85.                 if (row_selected(i)) {
  86.                     const SBrowserObject& obj = GetData(i);
  87.                     CObjClipboard::Add(obj.document->GetScope(), *obj.object);
  88.                     RemoveRow(i);
  89.                 }
  90.             }
  91.             CObjClipboard::Copy();
  92.             if (parent()) {
  93.                 parent()->redraw();
  94.             } else {
  95.                 redraw();
  96.             }
  97.         }}
  98.         return 1;
  99.     case CGUIEvent::eCopyState:
  100.         {{
  101.             CObjClipboard::Clear();
  102.             for (size_t i = 0;  i < GetRows();  ++i) {
  103.                 if ( !row_selected(i) ) {
  104.                     continue;
  105.                 }
  106.                 const SBrowserObject& obj = GetData(i);
  107.                 CObjClipboard::Add(obj.document->GetScope(), *obj.object);
  108.             }
  109.             CObjClipboard::Copy();
  110.         }}
  111.         return 1;
  112.     case CGUIEvent::ePasteState:
  113.         {{
  114.             TConstScopedObjects objs;
  115.             CObjClipboard::Paste(&objs, NULL);
  116.             ITERATE (TConstScopedObjects, iter, objs) {
  117.                 const IDocument* doc = NULL;
  118.                 ITERATE(CDocManager::TDocList, doc_iter,
  119.                         CDocManager::GetDocuments()) {
  120.                     const objects::CScope* docscope = &(*doc_iter)->GetScope();
  121.                     if (docscope == iter->scope) {
  122.                         doc = *doc_iter;
  123.                         break;
  124.                     }
  125.                 }
  126.                 if ( !doc ) {
  127.                     continue;
  128.                 }
  129.                 Add(*doc, *iter->object);
  130.             }
  131.             if (parent()) {
  132.                 parent()->redraw();
  133.             } else {
  134.                 redraw();
  135.             }
  136.         }}
  137.         return 1;
  138.     case CGUIEvent::eDeleteState:
  139.         {{
  140.             for (int i = GetRows() - 1;  i >= 0;  --i) {
  141.                 if (row_selected(i)) {
  142.                     RemoveRow(i);
  143.                 }
  144.             }
  145.             // clear all selections
  146.             select_all_rows(0);
  147.             if (parent()) {
  148.                 parent()->redraw();
  149.             } else {
  150.                 redraw();
  151.             }
  152.         }}
  153.         return 1;
  154.     default:
  155.         break;
  156.     }
  157.     return CTablePanel<SBrowserObject>::handle(event);
  158. }
  159. void CObjBrowser::ShowBrowseDlg()
  160. {
  161.     if ( !m_BrowseDlg.get() ) {
  162.         m_BrowseDlg.reset(new CBrowseOtherDlg(this));
  163.     }
  164.     m_BrowseDlg->Show();
  165. }
  166. END_NCBI_SCOPE
  167. /*
  168.  * ===========================================================================
  169.  * $Log: obj_browser.cpp,v $
  170.  * Revision 1000.1  2004/06/02 20:23:58  gouriano
  171.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  172.  *
  173.  * Revision 1.2  2004/06/01 21:43:52  ucko
  174.  * Tweak to fix compilation on WorkShop.
  175.  *
  176.  * Revision 1.1  2004/06/01 18:04:44  dicuccio
  177.  * Initial revision.  Lots of changes: added gui_project ASN.1 project, added new
  178.  * plugin arg form (separate widget), added plugin selector dialog
  179.  *
  180.  * ===========================================================================
  181.  */