form_Progress.h
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:1k
源码类别:

MTK

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef _FORM_PROGRESS_H_
  3. #define _FORM_PROGRESS_H_
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ComCtrls.hpp>
  10. #include <ExtCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class Tm_frmProgress : public TForm
  13. {
  14. __published: // IDE-managed Components
  15.         TProgressBar *m_pbStatus;
  16.         TTimer *m_Timer;
  17.         void __fastcall m_TimerTimer(TObject *Sender);
  18.         void __fastcall FormShow(TObject *Sender);
  19.         void __fastcall FormHide(TObject *Sender);
  20. private: // User declarations
  21. public: // User declarations
  22.         __fastcall Tm_frmProgress(TComponent* Owner);
  23.         bool Get_FormShow(void);
  24. };
  25. //---------------------------------------------------------------------------
  26. extern PACKAGE Tm_frmProgress *m_frmProgress;
  27. //---------------------------------------------------------------------------
  28. #endif