You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
667 B
C
29 lines
667 B
C
15 years ago
|
#ifndef PROGRESSDIALOGIFACE_H
|
||
|
#define PROGRESSDIALOGIFACE_H
|
||
|
|
||
|
#include <dcopobject.h>
|
||
|
|
||
|
class ProgressDialogIface : virtual public DCOPObject
|
||
|
{
|
||
|
K_DCOP
|
||
|
k_dcop:
|
||
|
|
||
|
virtual void setTotalSteps( int ) =0;
|
||
|
virtual int totalSteps() const =0;
|
||
|
|
||
|
virtual void setProgress( int ) =0;
|
||
|
virtual int progress() const =0;
|
||
|
|
||
|
virtual void setLabel( const QString& ) =0;
|
||
|
|
||
|
virtual void showCancelButton ( bool ) =0;
|
||
|
virtual bool wasCancelled() const =0;
|
||
|
virtual void ignoreCancel() =0;
|
||
|
|
||
|
virtual void setAutoClose( bool ) =0;
|
||
|
virtual bool autoClose() const =0;
|
||
|
virtual void close() =0;
|
||
|
};
|
||
|
|
||
|
#endif // PROGRESSDIALOGIFACE_H
|