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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: status_bar_ex.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:09:14  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: status_bar_ex.cpp,v 1000.1 2004/06/01 21:09: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:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/widgets/fl/status_bar_ex.hpp>
  41. #include <FL/Fl.H>
  42. BEGIN_NCBI_SCOPE
  43. CStatusBarEx::CStatusBarEx(int x, int y, int w, int h, const char* label)
  44.     : CStatusBar(x, y, w, h, label)
  45. {
  46.     m_ProgressBar = new Fl_Progress(x + w * 3 / 4, y + 2,
  47.                                     w / 4 - 2, h - 4);
  48.     m_ProgressBar->box(FL_THIN_DOWN_BOX);
  49.     // bright blue
  50.     m_ProgressBar->selection_color((Fl_Color)4);
  51.     m_ProgressBar->minimum(  0);
  52.     m_ProgressBar->maximum(100);
  53.     //m_ProgressBar->hide();
  54. }
  55. void CStatusBarEx::ShowProgress(bool visible)
  56. {
  57.     if (visible) {
  58.         m_ProgressBar->show();
  59.     } else {
  60.         m_ProgressBar->hide();
  61.     }
  62. }
  63. void CStatusBarEx::resize(int x, int y, int w, int h)
  64. {
  65.     Fl_Group::resize(x, y, w, h);
  66. }
  67. void CStatusBarEx::SetPctCompleted(int pct)
  68. {
  69.     CFastMutexGuard LOCK(m_Mutex);
  70.     if ( !m_ProgressBar->visible() ) {
  71.         m_ProgressBar->show();
  72.     }
  73.     m_ProgressBar->value(pct);
  74.     Fl::check();
  75. }
  76. CStatusBarExGuard::CStatusBarExGuard(CStatusBarEx& bar, const string& msg)
  77.     : m_Bar(bar)
  78. {
  79.     m_Bar.PushMessage(msg);
  80.     m_Bar.ShowProgress(true);
  81. }
  82. CStatusBarExGuard::~CStatusBarExGuard()
  83. {
  84.     m_Bar.PopMessage();
  85.     m_Bar.ShowProgress(false);
  86. }
  87. END_NCBI_SCOPE
  88. /*
  89.  * ===========================================================================
  90.  * $Log: status_bar_ex.cpp,v $
  91.  * Revision 1000.1  2004/06/01 21:09:14  gouriano
  92.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  93.  *
  94.  * Revision 1.3  2004/05/21 22:27:53  gorelenk
  95.  * Added PCH ncbi_pch.hpp
  96.  *
  97.  * Revision 1.2  2004/04/07 13:08:22  dicuccio
  98.  * Added calls to Fl::check() to keep status bar alive
  99.  *
  100.  * Revision 1.1  2003/12/04 18:15:29  dicuccio
  101.  * Added status bar classes
  102.  *
  103.  * ===========================================================================
  104.  */