1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
TThreadProgressBar* TThreadProgressBar::_threadProgressBar = NULL;
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
__fastcall TThreadProgressBar::TThreadProgressBar(bool CreateSuspended)
: TThread(CreateSuspended)
{
}
//---------------------------------------------------------------------------
void __fastcall TThreadProgressBar::CreerForm()
{
if ( !_s_fiche )
{
_s_fiche = new TfrmProgressBar( NULL );
_s_fiche->Show();
_s_fiche->FormStyle = fsStayOnTop;
}
}
//---------------------------------------------------------------------------
void __fastcall TThreadProgressBar::DetruireForm()
{
delete _s_fiche;
}
//---------------------------------------------------------------------------
void __fastcall TThreadProgressBar::Execute()
{
Synchronize( CreerForm );
while (! Terminated)
{
Forms::Application->ProcessMessages();
}
Synchronize( DetruireForm );
}
//---------------------------------------------------------------------------
void TThreadProgressBar::s_startAnimation()
{
if ( !_threadProgressBar )
{
_threadProgressBar = new TThreadProgressBar(false);
}
}
//---------------------------------------------------------------------------
void TThreadProgressBar::s_stopAnimation()
{
if ( _threadProgressBar )
{
delete _threadProgressBar;
_threadProgressBar = NULL;
}
} |
Partager