/* This file is part of the KDE libraries
Copyright (C) 2000 Matej Koss
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef __progressbase_h__
#define __progressbase_h__
#include
class KURL;
namespace KIO {
class Job;
class CopyJob;
class DeleteJob;
}
namespace KIO
{
enum Progress {
DEFAULT = 1,
STATUSBAR = 2,
LIST = 3
};
};
/**
* Base class for IO progress dialogs.
*
* This class does all initialization stuff for progress,
* like connecting signals to slots.
* All slots are implemented as pure virtual methods.
*
* All custom IO progress dialog should inherit this class.
* Add your GUI code to the constructor and implemement those virtual
* methods which you need in order to display progress.
*
* E.g. @ref #StatusbarProgress only implements @ref #slotTotalSize(),
* @ref #slotPercent() and @ref #slotSpeed().
*
* Custom progress dialog will be used like this :
*
* // create job
* CopyJob* job = KIO::copy(...);
* // create a dialog
* MyCustomProgress *customProgress;
* customProgress = new MyCustomProgress();
* // connect progress with job
* customProgress->setJob( job );
* ...
*
*
* There is a special method @ref #setStopOnClose() that controls the behavior of
* the dialog.
* @short Base class for IO progress dialogs.
* @author Matej Koss
*/
class ProgressBase : public QWidget {
Q_OBJECT
public:
ProgressBase( QWidget *parent );
~ProgressBase() {}
// assign job to this progress dialog
void setJob( KIO::Job *job );
void setJob( KIO::CopyJob *job );
void setJob( KIO::DeleteJob *job );
// should we stop the job when the dialog is closed ?
void setStopOnClose( bool stopOnClose ) { m_bStopOnClose = stopOnClose; }
// should we delete the dialog or just clean it when the job is finished ?
void setOnlyClean( bool onlyClean ) { m_bOnlyClean = onlyClean; }
public slots:
// this method should be called for correct cancelation of IO operation
// connect this to the progress widgets buttons etc.
void slotStop();
// this method is called when the widget should be cleaned ( after job is finished )
// redefine this for custom behaviour
virtual void slotClean();
// progress slots
virtual void slotTotalSize( KIO::Job*, unsigned long ) {}
virtual void slotTotalFiles( KIO::Job*, unsigned long ) {}
virtual void slotTotalDirs( KIO::Job*, unsigned long ) {}
virtual void slotProcessedSize( KIO::Job*, unsigned long ) {}
virtual void slotProcessedFiles( KIO::Job*, unsigned long ) {}
virtual void slotProcessedDirs( KIO::Job*, unsigned long ) {}
virtual void slotSpeed( KIO::Job*, unsigned long ) {}
virtual void slotPercent( KIO::Job*, unsigned long ) {}
virtual void slotCopying( KIO::Job*, const KURL&, const KURL& ) {}
virtual void slotMoving( KIO::Job*, const KURL&, const KURL& ) {}
virtual void slotDeleting( KIO::Job*, const KURL& ) {}
virtual void slotCreatingDir( KIO::Job*, const KURL& ) {}
// TODO: make the arg an unsigned long or remove (BIC)
virtual void slotCanResume( KIO::Job*, bool ) {}
signals:
void stopped();
protected slots:
void slotFinished( KIO::Job* );
protected:
virtual void closeEvent( QCloseEvent * );
KIO::Job* m_pJob;
/**
* This variable controls whether the dialog should be deleted or only cleaned when
* the KIO::Job is finished ( or canceled ).
*
* If your dialog is embedded widget and not a separate window, you should set this
* variable to true in the constructor of your custom dialog.
*
* If true - Dialog will only call method @ref slotClean.
* If false - Dialog will be deleted.
*/
bool m_bOnlyClean;
bool m_bStopOnClose;
};
#endif // __progressbase_h__
Generated by: dfaure on kde.faure.org on Thu Jan 17 22:16:53 2002, using kdoc 2.0a53. |