//Author: Max Howell , (C) 2003-4 //Copyright: See COPYING file that comes with this distribution #ifndef PROGRESSBOX_H #define PROGRESSBOX_H #include #include namespace KIO { class Job; } class ProgressBox : public TQLabel { Q_OBJECT TQ_OBJECT public: ProgressBox( TQWidget*, TQObject* ); void setText( int ); public slots: void start(); void report(); void stop(); void halt(); private: TQTimer m_timer; }; #endif