summaryrefslogtreecommitdiffstats
path: root/src/part/progressBox.cpp
blob: ba8fef59794d9e95ef4b0929c827326a1fc81db9 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//Author:    Max Howell <max.howell@methylblue.com>, (C) 2003-4
//Copyright: See COPYING file that comes with this distribution

#include <tdeglobal.h>
#include <tdeglobalsettings.h>
#include <tdeio/job.h>
#include <tdelocale.h>

#include "scan.h"
#include "progressBox.h"


ProgressBox::ProgressBox( TQWidget *parent, TQObject *part )
   : TQLabel( parent, "ProgressBox" )
{
   hide();

   setAlignment( TQt::AlignCenter );
   setFont( TDEGlobalSettings::fixedFont() );
   setSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Fixed );

   setText( 999999 );
   setMinimumWidth( sizeHint().width() );

   connect( &m_timer, TQ_SIGNAL(timeout()), TQ_SLOT(report()) );
   connect( part, TQ_SIGNAL(started( TDEIO::Job* )), TQ_SLOT(start()) );
   connect( part, TQ_SIGNAL(completed()), TQ_SLOT(stop()) );
   connect( part, TQ_SIGNAL(canceled( const TQString& )), TQ_SLOT(halt()) );
}

void
ProgressBox::start() //slot
{
   m_timer.start( 50 ); //20 times per second - very smooth
   report();
   show();
}

void
ProgressBox::report() //slot
{
   setText( Filelight::ScanManager::files() );
}

void
ProgressBox::stop()
{
   m_timer.stop();
}

void
ProgressBox::halt()
{
   // canceled by stop button
   m_timer.stop();
   TQTimer::singleShot( 2000, this, TQ_SLOT(hide()) );
}

void
ProgressBox::setText( int files )
{
   TQLabel::setText( i18n("%n File", "%n Files", files) );
}

#include "progressBox.moc"