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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: valview.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:03:22  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: valview.cpp,v 1000.1 2004/06/01 21:03:22 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: Mati Shomrat  
  35.  *
  36.  * File Description:
  37.  *    Main graphical view class for the validator
  38.  *    
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <corelib/ncbistd.hpp>
  42. #include <objtools/validator/validator.hpp>
  43. #include <FL/Fl_Double_Window.H>
  44. #include <FL/Fl_Menu_Item.H>
  45. #include <FL/Fl_Menu_Bar.H>
  46. #include <FL/Fl_Button.H>
  47. #include <FL/Fl_Return_Button.H>
  48. #include <FL/Fl_Box.H>
  49. #include <FL/Fl_Widget.H>
  50. #include <set>
  51. #include "valview.hpp"
  52. #include "filter.hpp"
  53. #include "valerror_display.hpp"
  54. BEGIN_NCBI_SCOPE
  55. USING_SCOPE(objects::validator);
  56. Fl_Menu_Item CValidatorView::sm_Menutable[] = {
  57.     {"&File", 0, 0, 0, FL_SUBMENU},     
  58.         {"&Revalidate", FL_CTRL+'r', 0, 0, FL_MENU_DIVIDER},
  59.         {"&Close", 0, (Fl_Callback*)CValidatorView::cb_OnClose},
  60.         {0},
  61.     {"&Edit", 0, 0, 0, FL_SUBMENU},     
  62.         {"Cu&t", FL_CTRL+'x'},
  63.         {"&Copy", FL_CTRL+'c'},
  64.         {"&Paste", FL_CTRL+'v', 0, 0, FL_MENU_DIVIDER},
  65.         {"&Options...", 0, 0, 0},
  66.         {0},
  67.     {0}
  68. };
  69. const int CValidatorView::sm_MinW = 400;
  70. const int CValidatorView::sm_MinH = 500;
  71. CValidatorView::CValidatorView(int w, int h)
  72.     : Fl_Window(0, 0, w, h, "Validator View"),
  73.       m_Filter(0),
  74.       m_Display(0),
  75.       m_CloseButton(0),
  76.       m_RevalidateButton(0),
  77.       m_Menubar(0),
  78.       m_Errors(0)
  79. {
  80.     box(FL_ENGRAVED_BOX);
  81.     resizable(0);
  82.     AddMenuBar();
  83.     AddFilter();
  84.     AddDisplay();
  85.     //resizable(m_Display);
  86.     AddButtons();
  87.     m_Filter->SetDisplay(m_Display);
  88.     end();
  89. }
  90. CValidatorView::~CValidatorView(void)
  91. {
  92. }
  93. void CValidatorView::SetValidError(const CValidError& errors)
  94. {
  95.     m_Errors.Reset(&errors);
  96.     PopulateFilter(errors);
  97.     m_Display->SetValidError(errors);
  98. }
  99. void CValidatorView::resize(int X, int Y, int W, int H)
  100. {
  101.     if ( W < sm_MinW ) {
  102.         W = sm_MinW;
  103.     }
  104.     if ( H < sm_MinH ) {
  105.         H = sm_MinH;
  106.     }
  107.     Fl_Window::resize(X, Y, W, H);
  108. }
  109. void CValidatorView::cb_OnClose(Fl_Widget* w, void *user_data)
  110. {
  111.     CValidatorView* _this = 0;
  112.     if ( dynamic_cast<Fl_Button*>(w) ) {
  113.         _this = static_cast<CValidatorView*>(user_data);
  114.     } else if ( dynamic_cast<Fl_Menu_*>(w) ) {
  115.         _this = static_cast<CValidatorView*>(w->user_data());
  116.     }
  117.     if ( _this != 0 ) {
  118.         _this->x_OnClose();
  119.     }
  120. }
  121. void CValidatorView::x_OnClose(void)
  122. {
  123.     hide();
  124. }
  125. // Private:
  126. void CValidatorView::AddMenuBar(void)
  127. {
  128.     m_Menubar = new Fl_Menu_Bar(1, 1, w()-2, 25, 0);
  129.     m_Menubar->copy(sm_Menutable);    
  130.     m_Menubar->box(FL_ENGRAVED_BOX);
  131.     m_Menubar->user_data(this);
  132. }
  133. void CValidatorView::AddFilter(void)
  134. {
  135.     m_Filter = new CValidatorFilter(w() / 60, 5 * (h() / 70));
  136. }
  137. void CValidatorView::AddDisplay(void)
  138. {
  139.     int fh = m_Filter->y() + m_Filter->h();
  140.     m_Display = new CValidErrorDisplay(10, fh + 20, w() - 20, h() - fh - 80);
  141. }
  142. void CValidatorView::AddButtons(void)
  143. {
  144.     int H = 25;
  145.     int X = x();
  146.     int Y = y() + h() - H - 5;
  147.     int W = w();
  148.     
  149.     Fl_Group* g = new Fl_Group(X, Y, W, H);
  150.     new Fl_Box(X, Y, 10, H);
  151.     AddRevalidateButton(X + 10, Y, 100, H);
  152.     g->resizable(new Fl_Box(X + 110, Y, W - 110, H));
  153.     
  154.     g->end();
  155.     //AddCloseButton(X, Y);
  156. }
  157. void CValidatorView::AddRevalidateButton(int X, int Y, int W, int H)
  158. {
  159.     m_RevalidateButton = new Fl_Button(X, Y, W, H, "Revalidate");
  160. }
  161. void CValidatorView::AddCloseButton(int X, int Y, int W, int H)
  162. {
  163.     m_CloseButton = new Fl_Return_Button(X, Y, W, H, "Close");
  164.     m_CloseButton->callback((Fl_Callback*)CValidatorView::cb_OnClose, this);
  165. }
  166. void CValidatorView::PopulateFilter(const CValidError& errors)
  167. {
  168.     set<string> err_codes;
  169.     err_codes.insert("All");
  170.     for ( CValidError_CI iter(errors); iter; ++iter ) {
  171.         err_codes.insert(iter->GetErrCode());
  172.     }
  173.     m_Filter->SetErrCodes(err_codes);
  174. }
  175. END_NCBI_SCOPE
  176. /*
  177.  * ===========================================================================
  178.  *
  179.  * $Log: valview.cpp,v $
  180.  * Revision 1000.1  2004/06/01 21:03:22  gouriano
  181.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  182.  *
  183.  * Revision 1.6  2004/05/21 22:27:50  gorelenk
  184.  * Added PCH ncbi_pch.hpp
  185.  *
  186.  * Revision 1.5  2004/05/20 12:40:07  dicuccio
  187.  * Use Fl_Window instead of CChild; include Fl_Window where necessary
  188.  *
  189.  * Revision 1.4  2003/10/10 17:20:29  dicuccio
  190.  * Implemented OnExit() as callback for all views when closed from system icon
  191.  *
  192.  * Revision 1.3  2003/06/02 16:06:25  dicuccio
  193.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  194.  *     - src/objects/asn2asn --> arc/app/asn2asn
  195.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  196.  *     - src/objects/objmgr --> src/objmgr
  197.  *     - src/objects/util --> src/objmgr/util
  198.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  199.  *     - src/objects/flat --> src/objtools/flat
  200.  *     - src/objects/validator --> src/objtools/validator
  201.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  202.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  203.  * replaces the three libmmdb? libs.
  204.  *
  205.  * Revision 1.2  2003/04/22 16:24:25  shomrat
  206.  * Fl -> FL
  207.  *
  208.  * Revision 1.1  2003/04/18 19:57:31  shomrat
  209.  * Initial revision
  210.  *
  211.  *
  212.  * ===========================================================================
  213.  */