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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: erritem_view.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/31 22:03:15  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE_PLUGINS_VIEW_VALIDATOR___ERRITEMVIEW__HPP
  10. #define GUI_CORE_PLUGINS_VIEW_VALIDATOR___ERRITEMVIEW__HPP
  11. /*  $Id: erritem_view.hpp,v 1000.0 2003/10/31 22:03:15 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.  *  
  40.  *    
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. #include <corelib/ncbiobj.hpp>
  44. #include <objtools/validator/validator.hpp>
  45. #include <FL/Fl_Text_Display.H>
  46. #include <FL/Fl_Text_Buffer.H>
  47. #include <corelib/ncbiobj.hpp>
  48. BEGIN_NCBI_SCOPE
  49. USING_SCOPE(objects::validator);
  50. class CValidErrItemView : public Fl_Text_Display
  51. {
  52. public:
  53.     enum EMessage {
  54.         eMessage_Normal,
  55.         eMessage_Terse,
  56.         eMessage_Verbose
  57.     };
  58.     CValidErrItemView(const CValidErrItem& item, int W, 
  59.         EMessage message = eMessage_Verbose);
  60.     ~CValidErrItemView(void);
  61.     
  62.     void SetMessage(EMessage new_message);
  63.     void Select(void);
  64.     void DeSelect(void);
  65.     void DoubleClick(void);
  66.     virtual int handle(int event);
  67.     virtual void resize(int X, int Y, int W, int H);
  68. private:
  69.     static const string sm_Prefix;
  70.     static const string sm_NewLine;
  71.     string CreateTextString(int W);
  72.     int Height(void);
  73.     
  74.     CConstRef<CValidErrItem>    m_Item;
  75.     EMessage                    m_Message;
  76.     bool                        m_Selected;
  77. };
  78. END_NCBI_SCOPE
  79. #endif   // GUI_CORE_PLUGINS_VIEW_VALIDATOR___ERRITEMVIEW__HPP
  80. /*
  81.  * ===========================================================================
  82.  *
  83.  * $Log: erritem_view.hpp,v $
  84.  * Revision 1000.0  2003/10/31 22:03:15  gouriano
  85.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  86.  *
  87.  * Revision 1.4  2003/06/02 16:06:25  dicuccio
  88.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  89.  *     - src/objects/asn2asn --> arc/app/asn2asn
  90.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  91.  *     - src/objects/objmgr --> src/objmgr
  92.  *     - src/objects/util --> src/objmgr/util
  93.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  94.  *     - src/objects/flat --> src/objtools/flat
  95.  *     - src/objects/validator --> src/objtools/validator
  96.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  97.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  98.  * replaces the three libmmdb? libs.
  99.  *
  100.  * Revision 1.3  2003/04/22 21:05:06  shomrat
  101.  * h -> H
  102.  *
  103.  * Revision 1.2  2003/04/22 16:25:47  shomrat
  104.  * Fl -> FL
  105.  *
  106.  * Revision 1.1  2003/04/18 19:56:42  shomrat
  107.  * Initial revision
  108.  *
  109.  *
  110.  * ===========================================================================
  111.  */