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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: statistics.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:03:18  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: statistics.cpp,v 1000.1 2004/06/01 21:03:18 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.  *    
  38.  *    
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <corelib/ncbistd.hpp>
  42. #include <corelib/ncbistr.hpp>
  43. #include <objtools/validator/validator.hpp>
  44. #include <FL/Fl_Output.H>
  45. #include <FL/Fl_Group.H>
  46. #include "statistics.hpp"
  47. BEGIN_NCBI_SCOPE
  48. USING_SCOPE(objects::validator);
  49. const string CValidErrorStats::sm_Labels[] = { "Info:", "Warning:", 
  50.                                                 "Error:", "Critical:" };
  51. CValidErrorStats::CValidErrorStats
  52. (int x,
  53.  int y,
  54.  int w,
  55.  int h) :
  56.     Fl_Group(x, y, w, h, 0)
  57. {
  58.     resizable(0);
  59.     int o_w = w / 4;
  60.     for ( SIZE_TYPE i = 0; i < (eDiag_Critical - eDiag_Info) + 1; ++i ) {
  61.         AddOutput(x + (o_w * i) + 50, y, o_w / 3, h, i);
  62.     }
  63. }
  64. CValidErrorStats::~CValidErrorStats(void)
  65. {
  66. }
  67. void CValidErrorStats::SetValidError(const CValidError& errors)
  68. {
  69.     m_Stats[eDiag_Info]->value(NStr::IntToString(errors.InfoSize()).c_str());
  70.     m_Stats[eDiag_Warning]->value(NStr::IntToString(errors.WarningSize()).c_str());
  71.     m_Stats[eDiag_Error]->value(NStr::IntToString(errors.ErrorSize()).c_str());
  72.     m_Stats[eDiag_Critical]->value(NStr::IntToString(errors.CriticalSize()).c_str());
  73. }
  74. // private:
  75. void CValidErrorStats::AddOutput(int x, int y, int w, int h, int i)
  76. {
  77.     EDiagSev sev = static_cast<EDiagSev>(i);
  78.     Fl_Output* o = new Fl_Output(x, y, w, h, sm_Labels[i].c_str());
  79.     o->labelfont(FL_COURIER);
  80.     o->align(FL_ALIGN_LEFT);
  81.     o->textfont(FL_COURIER);
  82.     m_Stats[sev] = o;
  83. }
  84. void CValidErrorStats::resize(int X, int Y, int W, int H)
  85. {
  86.     Fl_Group::resize(X, Y, W, H);
  87. }
  88. END_NCBI_SCOPE
  89. /*
  90.  * ===========================================================================
  91.  *
  92.  * $Log: statistics.cpp,v $
  93.  * Revision 1000.1  2004/06/01 21:03:18  gouriano
  94.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  95.  *
  96.  * Revision 1.4  2004/05/21 22:27:50  gorelenk
  97.  * Added PCH ncbi_pch.hpp
  98.  *
  99.  * Revision 1.3  2003/06/02 16:06:25  dicuccio
  100.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  101.  *     - src/objects/asn2asn --> arc/app/asn2asn
  102.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  103.  *     - src/objects/objmgr --> src/objmgr
  104.  *     - src/objects/util --> src/objmgr/util
  105.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  106.  *     - src/objects/flat --> src/objtools/flat
  107.  *     - src/objects/validator --> src/objtools/validator
  108.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  109.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  110.  * replaces the three libmmdb? libs.
  111.  *
  112.  * Revision 1.2  2003/04/22 16:25:20  shomrat
  113.  * Fl -> FL
  114.  *
  115.  * Revision 1.1  2003/04/18 19:56:57  shomrat
  116.  * Initial revision
  117.  *
  118.  *
  119.  * ===========================================================================
  120.  */