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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: progress_dlg_ex_.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:47:51  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_ex__hpp
  11. #define progress_dlg_ex__hpp
  12. #include <FL/Fl.H>
  13. /* $Id: progress_dlg_ex_.hpp,v 1000.3 2004/06/01 19:47:51 gouriano Exp $ */
  14. #include <FL/Fl_Double_Window.H>
  15. #include <FL/Fl_Text_Display.H>
  16. #include <FL/Fl_Group.H>
  17. #include <FL/Fl_Progress.H>
  18. #include <FL/Fl_Button.H>
  19. class NCBI_GUIDIALOGS_EXPORT CProgressDlgEx : public CDialog, public IReporter {
  20. public:
  21.   CProgressDlgEx();
  22.   ~CProgressDlgEx();
  23.   void SetTitle(const string& title);
  24.   void SetMessage(const string& label);
  25.   void SetPctCompleted(int pct);
  26.   void Clear(void);
  27.   bool HasBeenCanceled(void) const;
  28. private:
  29.   Fl_Double_Window* x_CreateWindow();
  30.   Fl_Text_Display *m_Text;
  31.   Fl_Progress *m_Progress;
  32.   inline void cb_Cancel_i(Fl_Button*, void*);
  33.   static void cb_Cancel(Fl_Button*, void*);
  34.   string m_TitleStr;
  35.   auto_ptr<Fl_Text_Buffer> m_Buffer;
  36.   CFastMutex m_Mutex;
  37. };
  38. #endif