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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: progress_dlg_.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:47:48  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. // generated by Fast Light User Interface Designer (fluid) version 1.0105
  10. #ifndef progress_dlg__hpp
  11. #define progress_dlg__hpp
  12. #include <FL/Fl.H>
  13. /* $Id: progress_dlg_.hpp,v 1000.3 2004/06/01 19:47:48 gouriano Exp $ */
  14. #include <FL/Fl_Double_Window.H>
  15. #include <FL/Fl_Progress.H>
  16. #include <FL/Fl_Box.H>
  17. #include <FL/Fl_Button.H>
  18. class NCBI_GUIDIALOGS_EXPORT CProgressDlg : public CDialog, public IReporter {
  19. public:
  20.   CProgressDlg();
  21.   void SetTitle(const string& title);
  22.   void SetMessage(const string& title);
  23.   void SetPctCompleted(int pct);
  24.   void Clear(void);
  25.   bool HasBeenCanceled(void) const;
  26. private:
  27.   Fl_Double_Window* x_CreateWindow();
  28.   Fl_Progress *m_Progress;
  29.   Fl_Box *m_Label;
  30.   inline void cb_Cancel_i(Fl_Button*, void*);
  31.   static void cb_Cancel(Fl_Button*, void*);
  32.   string m_TitleStr;
  33.   string m_LabelStr;
  34.   CFastMutex m_Mutex;
  35. };
  36. #endif