// vim: set tabstop=4 shiftwidth=4 noexpandtab /* Gwenview - A simple image viewer for KDE Copyright 2000-2004 Aurélien Gâteau This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef FILEOPOBJECT_H #define FILEOPOBJECT_H // TQt includes #include #include // KDE includes #include #include class TQWidget; namespace Gwenview { /** * This class is a base class for wrappers to KIO slaves asynchronous * file operations. These classes handle all steps of a file operation : * - asking the user what to do with a file * - performing the operation * - showing result dialogs * * All these classes are used by the @FileOperation namespace-like class */ class FileOpObject : public TQObject { Q_OBJECT TQ_OBJECT public: FileOpObject(const KURL&,TQWidget* tqparent=0L); FileOpObject(const KURL::List&,TQWidget* tqparent=0L); virtual void operator()()=0; signals: void success(); protected slots: virtual void slotResult(KIO::Job*); protected: TQWidget* mParent; KURL::List mURLList; void polishJob(KIO::Job*); }; class FileOpCopyToObject : public FileOpObject { Q_OBJECT TQ_OBJECT public: FileOpCopyToObject(const KURL& url,TQWidget* tqparent=0L) : FileOpObject(url,tqparent) {} FileOpCopyToObject(const KURL::List& urlList,TQWidget* tqparent=0L) : FileOpObject(urlList,tqparent) {} void operator()(); }; class FileOpLinkToObject : public FileOpObject { Q_OBJECT TQ_OBJECT public: FileOpLinkToObject(const KURL& url,TQWidget* tqparent=0L) : FileOpObject(url,tqparent) {} FileOpLinkToObject(const KURL::List& urlList,TQWidget* tqparent=0L) : FileOpObject(urlList,tqparent) {} void operator()(); }; class FileOpMoveToObject : public FileOpObject { Q_OBJECT TQ_OBJECT public: FileOpMoveToObject(const KURL& url,TQWidget* tqparent=0L) : FileOpObject(url,tqparent) {} FileOpMoveToObject(const KURL::List& urlList,TQWidget* tqparent=0L) : FileOpObject(urlList,tqparent) {} void operator()(); }; class FileOpMakeDirObject : public FileOpObject { Q_OBJECT TQ_OBJECT public: FileOpMakeDirObject(const KURL& url, TQWidget* tqparent=0L) : FileOpObject(url, tqparent) {} void operator()(); }; class FileOpDelObject : public FileOpObject { Q_OBJECT TQ_OBJECT public: FileOpDelObject(const KURL& url,TQWidget* tqparent=0L) : FileOpObject(url,tqparent) {} FileOpDelObject(const KURL::List& urlList,TQWidget* tqparent=0L) : FileOpObject(urlList,tqparent) {} void operator()(); }; class FileOpTrashObject : public FileOpObject { Q_OBJECT TQ_OBJECT public: FileOpTrashObject(const KURL& url,TQWidget* tqparent=0L) : FileOpObject(url,tqparent) {} FileOpTrashObject(const KURL::List& urlList,TQWidget* tqparent=0L) : FileOpObject(urlList,tqparent) {} void operator()(); }; class FileOpRealDeleteObject : public FileOpObject { Q_OBJECT TQ_OBJECT public: FileOpRealDeleteObject(const KURL& url,TQWidget* tqparent=0L) : FileOpObject(url,tqparent) {} FileOpRealDeleteObject(const KURL::List& urlList,TQWidget* tqparent=0L) : FileOpObject(urlList,tqparent) {} void operator()(); }; class FileOpRenameObject : public FileOpObject { Q_OBJECT TQ_OBJECT public: FileOpRenameObject(const KURL& url,TQWidget* tqparent=0L) : FileOpObject(url,tqparent) {} void operator()(); signals: void renamed(const TQString& newName); protected slots: virtual void slotResult(KIO::Job*); private: TQString mNewFilename; }; } // namespace #endif