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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: val_progress.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:57:14  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: val_progress.cpp,v 1000.1 2004/06/01 20:57:14 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.  *    A plugin wrap for the validator
  38.  *    
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <corelib/ncbistd.hpp>
  42. #include <FL/Fl.H>
  43. #include <FL/Fl_Window.H>
  44. #include <FL/Fl_Progress.H>
  45. #include <FL/Fl_Box.H>
  46. #include <FL/Fl_Button.H>
  47. #include "val_progress.hpp"
  48. BEGIN_NCBI_SCOPE
  49. USING_SCOPE(objects);
  50. USING_SCOPE(objects::validator);
  51. CValProgress::CValProgress(void) :
  52.     Fl_Double_Window(280, 130, "Validation Progress"),
  53.     m_TotalText(0),
  54.     m_TotalProgress(0),
  55.     //m_CurrentText(0),
  56.     //m_CurrentProgress(0),
  57.     m_Total(0),
  58.     m_TotalDone(0),
  59.     m_Current(0),
  60.     m_CurrentDone(0),
  61.     m_State(CValidator::CProgressInfo::eState_not_set),
  62.     m_Cancel(false)
  63. {
  64.     set_modal();
  65.     m_TotalText = new Fl_Box(20, 20, 100, 25, "Validating ...");
  66.     m_TotalText->labelfont(FL_COURIER);
  67.     m_TotalText->align(FL_ALIGN_LEFT|FL_ALIGN_INSIDE);
  68.     m_TotalProgress = new Fl_Progress(20, 40, 235, 20, 0);
  69.     /*
  70.     m_CurrentText = new Fl_Box(20, 70, 100, 20, 0);
  71.     m_CurrentText->labelfont(FL_COURIER);
  72.     m_CurrentText->align(FL_ALIGN_LEFT|FL_ALIGN_INSIDE);
  73.     m_CurrentProgress = new Fl_Progress(20, 90, 235, 20, 0);
  74.     */
  75.     Fl_Button* b = new Fl_Button(95, 85, 90, 25, "Cancel");
  76.     b->callback((Fl_Callback*)x_OnCancelPressed, this);
  77.     end();
  78. }
  79. CValProgress::~CValProgress(void)
  80. {
  81. }
  82.  
  83.    
  84. int CValProgress::handle(int event)
  85. {
  86.     return Fl_Double_Window::handle(event);
  87. }
  88. void CValProgress::Update(CValidator::CProgressInfo* info)
  89. {
  90.     if ( m_State != info->GetState() ) {
  91.         if ( m_State == CValidator::CProgressInfo::eState_Initializing ) {
  92.             m_TotalProgress->maximum(info->GetTotal());
  93.         }
  94.         m_State = info->GetState();
  95.     } 
  96.     m_TotalProgress->value(info->GetTotalDone());
  97. }
  98. bool CValProgress::Cancel(void) const
  99. {
  100.     return m_Cancel;
  101. }
  102. // Private:
  103. void CValProgress::x_OnCancelPressed(Fl_Button* b, void* user_data)
  104. {
  105.     CValProgress* _this = reinterpret_cast<CValProgress*>(user_data);
  106.     _this->OnCancelPressed();
  107. }
  108. void CValProgress::OnCancelPressed(void)
  109. {
  110.     m_Cancel = true;
  111. }
  112. END_NCBI_SCOPE
  113. /*
  114.  * ===========================================================================
  115.  *
  116.  * $Log: val_progress.cpp,v $
  117.  * Revision 1000.1  2004/06/01 20:57:14  gouriano
  118.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  119.  *
  120.  * Revision 1.4  2004/05/21 22:27:48  gorelenk
  121.  * Added PCH ncbi_pch.hpp
  122.  *
  123.  * Revision 1.3  2003/04/22 16:17:13  shomrat
  124.  * Fl -> FL
  125.  *
  126.  * Revision 1.2  2003/04/18 19:15:00  shomrat
  127.  * Code cleanup
  128.  *
  129.  *
  130.  * ===========================================================================
  131.  */