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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: valview.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:03:24  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE_PLUGINS_VIEW_VALIDATOR___VALVIEW__HPP
  10. #define GUI_CORE_PLUGINS_VIEW_VALIDATOR___VALVIEW__HPP
  11. /*  $Id: valview.hpp,v 1000.1 2004/06/01 21:03:24 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: Mati Shomrat  
  37.  *
  38.  * File Description:
  39.  *    Main graphical view class for the validator
  40.  *    
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. #include <objmgr/object_manager.hpp>
  44. #include <objmgr/scope.hpp>
  45. #include <objtools/validator/validator.hpp>
  46. #include <FL/Fl_Window.H>
  47. #include "filter.hpp"
  48. class Fl_Button;
  49. class Fl_Menu_Bar;
  50. class Fl_Widget;
  51. struct Fl_Menu_Item;
  52. BEGIN_NCBI_SCOPE
  53. USING_SCOPE(objects);
  54. USING_SCOPE(validator);
  55. class CValidErrorDisplay;
  56. class CValidatorFilter;
  57. class CValidatorView :  public Fl_Window
  58. {
  59. public:
  60.     CValidatorView(int w = 600, int h = 700);
  61.     ~CValidatorView(void);
  62.     void SetValidError(const CValidError& errors);
  63.     void SetRevalidate(const CObject& obj, CScope* scope, 
  64.         CObjectManager& objmgr, Uint4 options = 0);
  65.     virtual void resize(int X, int Y, int W, int H);
  66. private:
  67.     static Fl_Menu_Item sm_Menutable[];
  68.     static const int sm_MinW;
  69.     static const int sm_MinH;
  70.     void AddMenuBar(void);
  71.     void AddFilter(void);
  72.     void AddDisplay(void);
  73.     void AddButtons(void);
  74.     void AddRevalidateButton(int X, int Y, int W, int H);
  75.     void AddCloseButton(int X, int Y, int W, int H);
  76.     void PopulateFilter(const CValidError& errors);
  77.     static void cb_OnClose(Fl_Widget*, void *);
  78.     void x_OnClose(void);
  79.     CValidatorFilter*       m_Filter;
  80.     CValidErrorDisplay*     m_Display;
  81.     Fl_Button*              m_CloseButton;
  82.     Fl_Button*              m_RevalidateButton;
  83.     Fl_Menu_Bar*            m_Menubar;
  84.     CConstRef<CValidError>  m_Errors; 
  85.     // For re-validation
  86.     CRef<CObjectManager>    m_Objmgr;
  87.     CRef<CScope>            m_Scope;
  88.     CConstRef<CObject>      m_Obj;
  89.     Uint4                   m_Options;
  90. };
  91. END_NCBI_SCOPE
  92. #endif   // GUI_CORE_PLUGINS_VIEW_VALIDATOR___VALVIEW__HPP
  93. /*
  94.  * ===========================================================================
  95.  *
  96.  * $Log: valview.hpp,v $
  97.  * Revision 1000.1  2004/06/01 21:03:24  gouriano
  98.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  99.  *
  100.  * Revision 1.3  2004/05/20 12:40:07  dicuccio
  101.  * Use Fl_Window instead of CChild; include Fl_Window where necessary
  102.  *
  103.  * Revision 1.2  2003/06/02 16:06:25  dicuccio
  104.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  105.  *     - src/objects/asn2asn --> arc/app/asn2asn
  106.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  107.  *     - src/objects/objmgr --> src/objmgr
  108.  *     - src/objects/util --> src/objmgr/util
  109.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  110.  *     - src/objects/flat --> src/objtools/flat
  111.  *     - src/objects/validator --> src/objtools/validator
  112.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  113.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  114.  * replaces the three libmmdb? libs.
  115.  *
  116.  * Revision 1.1  2003/04/18 19:57:34  shomrat
  117.  * Initial revision
  118.  *
  119.  *
  120.  * ===========================================================================
  121.  */