• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • kio/kio
 

kio/kio

  • KIO
  • DeleteJob
Signals | Public Member Functions | Protected Slots | Protected Member Functions | List of all members
KIO::DeleteJob Class Reference

#include <jobclasses.h>

Inheritance diagram for KIO::DeleteJob:
KIO::Job

Signals

void totalFiles (KIO::Job *job, unsigned long files)
 
void totalDirs (KIO::Job *job, unsigned long dirs)
 
void processedFiles (KIO::Job *job, unsigned long files)
 
void processedDirs (KIO::Job *job, unsigned long dirs)
 
void deleting (KIO::Job *job, const KURL &file)
 
- Signals inherited from KIO::Job
void result (KIO::Job *job)
 
void canceled (KIO::Job *job)
 
void infoMessage (KIO::Job *job, const TQString &msg)
 
void warning (KIO::Job *job, const TQString &msg)
 
void connected (KIO::Job *job)
 
void percent (KIO::Job *job, unsigned long percent)
 
void totalSize (KIO::Job *job, KIO::filesize_t size)
 
void processedSize (KIO::Job *job, KIO::filesize_t size)
 
void speed (KIO::Job *job, unsigned long speed)
 

Public Member Functions

 DeleteJob (const KURL::List &src, bool shred, bool showProgressInfo)
 
KURL::List urls () const
 
- Public Member Functions inherited from KIO::Job
virtual void kill (bool quietly=true)
 
int error () const
 
int progressId () const
 
const TQString & errorText () const
 
TQString errorString () const
 
TQStringList detailedErrorStrings (const KURL *reqUrl=0L, int method=-1) const
 
void showErrorDialog (TQWidget *parent=0L)
 
void setAutoErrorHandlingEnabled (bool enable, TQWidget *parentWidget=0)
 
bool isAutoErrorHandlingEnabled () const
 
void setAutoWarningHandlingEnabled (bool enable)
 
bool isAutoWarningHandlingEnabled () const
 
void setInteractive (bool enable)
 
bool isInteractive () const
 
void setWindow (TQWidget *window)
 
TQWidget * window () const
 
void updateUserTimestamp (unsigned long time)
 
void setParentJob (Job *parentJob)
 
Job * parentJob () const
 
void setMetaData (const KIO::MetaData &metaData)
 
void addMetaData (const TQString &key, const TQString &value)
 
void addMetaData (const TQMap< TQString, TQString > &values)
 
void mergeMetaData (const TQMap< TQString, TQString > &values)
 
MetaData outgoingMetaData () const
 
MetaData metaData () const
 
TQString queryMetaData (const TQString &key)
 
KIO::filesize_t getProcessedSize ()
 

Protected Slots

void slotStart ()
 
void slotEntries (KIO::Job *, const KIO::UDSEntryList &list)
 
virtual void slotResult (KIO::Job *job)
 
void slotProcessedSize (KIO::Job *, KIO::filesize_t data_size)
 
void slotReport ()
 
- Protected Slots inherited from KIO::Job
virtual void slotResult (KIO::Job *job)
 
void slotSpeed (KIO::Job *job, unsigned long speed)
 
void slotInfoMessage (KIO::Job *job, const TQString &msg)
 
void slotSpeedTimeout ()
 

Protected Member Functions

virtual void virtual_hook (int id, void *data)
 
- Protected Member Functions inherited from KIO::Job
 Job (bool showProgressInfo)
 
virtual void addSubjob (Job *job, bool inheritMetaData=true)
 
virtual void removeSubjob (Job *job)
 
void removeSubjob (Job *job, bool mergeMetaData, bool emitResultIfLast)
 
void emitPercent (KIO::filesize_t processedSize, KIO::filesize_t totalSize)
 
void emitSpeed (unsigned long speed)
 
void emitResult ()
 
void setProcessedSize (KIO::filesize_t size)
 
unsigned long userTimestamp () const
 
int & extraFlags ()
 

Additional Inherited Members

- Protected Types inherited from KIO::Job
enum  { EF_TransferJobAsync = (1 << 0), EF_TransferJobNeedData = (1 << 1), EF_TransferJobDataSent = (1 << 2), EF_ListJobUnrestricted = (1 << 3) }
 
- Protected Attributes inherited from KIO::Job
TQPtrList< Job > subjobs
 
int m_error
 
TQString m_errorText
 
unsigned long m_percent
 
int m_progressId
 
TQTimer * m_speedTimer
 
TQGuardedPtr< TQWidget > m_window
 
MetaData m_outgoingMetaData
 
MetaData m_incomingMetaData
 

Detailed Description

A more complex Job to delete files and directories.

Don't create the job directly, but use KIO::del() instead.

See also
KIO::del()

Definition at line 1763 of file jobclasses.h.

Constructor & Destructor Documentation

◆ DeleteJob()

DeleteJob::DeleteJob ( const KURL::List &  src,
bool  shred,
bool  showProgressInfo 
)

Do not create a DeleteJob directly.

Use KIO::del() instead.

Parameters
srcthe list of URLs to delete
shredtrue to shred (make sure that data is not recoverable)a
showProgressInfotrue to show progress information to the user
See also
KIO::del()

Definition at line 3963 of file job.cpp.

Member Function Documentation

◆ deleting

void KIO::DeleteJob::deleting ( KIO::Job *  job,
const KURL &  file 
)
signal

Sends the URL of the file that is currently being deleted.

Parameters
jobthe job that emitted this signal
filethe URL of the file or directory that is being deleted

◆ processedDirs

void KIO::DeleteJob::processedDirs ( KIO::Job *  job,
unsigned long  dirs 
)
signal

Sends the number of processed directories.

Parameters
jobthe job that emitted this signal
dirsthe number of processed dirs

◆ processedFiles

void KIO::DeleteJob::processedFiles ( KIO::Job *  job,
unsigned long  files 
)
signal

Sends the number of processed files.

Parameters
jobthe job that emitted this signal
filesthe number of processed files

◆ slotProcessedSize

void DeleteJob::slotProcessedSize ( KIO::Job *  ,
KIO::filesize_t  data_size 
)
protectedslot

Forward signal from subjob.

Definition at line 4229 of file job.cpp.

◆ totalDirs

void KIO::DeleteJob::totalDirs ( KIO::Job *  job,
unsigned long  dirs 
)
signal

Emitted when the toal number of direcotries is known.

Parameters
jobthe job that emitted this signal
dirsthe total number of directories

◆ totalFiles

void KIO::DeleteJob::totalFiles ( KIO::Job *  job,
unsigned long  files 
)
signal

Emitted when the total number of files is known.

Parameters
jobthe job that emitted this signal
filesthe total number of files

◆ urls()

KURL::List KIO::DeleteJob::urls ( ) const
inline

Returns the list of URLs.

Returns
the list of URLs.

Definition at line 1782 of file jobclasses.h.


The documentation for this class was generated from the following files:
  • jobclasses.h
  • job.cpp

kio/kio

Skip menu "kio/kio"
  • Main Page
  • Modules
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

kio/kio

Skip menu "kio/kio"
  • arts
  • dcop
  • dnssd
  • interfaces
  •     interface
  •     library
  •   kspeech
  •   ktexteditor
  • kabc
  • kate
  • kcmshell
  • kdecore
  • kded
  • kdefx
  • kdeprint
  • kdesu
  • kdeui
  • kdoctools
  • khtml
  • kimgio
  • kinit
  • kio
  •   bookmarks
  •   httpfilter
  •   kfile
  •   kio
  •   kioexec
  •   kpasswdserver
  •   kssl
  • kioslave
  •   http
  • kjs
  • kmdi
  •   kmdi
  • knewstuff
  • kparts
  • krandr
  • kresources
  • kspell2
  • kunittest
  • kutils
  • kwallet
  • libkmid
  • libkscreensaver
Generated for kio/kio by doxygen 1.8.13
This website is maintained by Timothy Pearson.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. |