/* ============================================================ * * This file is a part of kipi-plugins project * http://www.kipi-plugins.org * * Date : 2003-12-03 * Description : misc utils to used in batch process * * Copyright (C) 2003-2005 by Renchi Raju * Copyright (C) 2004-2007 by Marcel Wiesweg * Copyright (C) 2006-2007 by Gilles Caulier * * 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, 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. * * ============================================================ */ #ifndef UTILS_H #define UTILS_H // TQt includes. #include #include class TDEProcess; namespace KIPIJPEGLossLessPlugin { class Utils : public TQObject { Q_OBJECT public: Utils(TQObject *parent); ~Utils(); bool updateMetadataImageMagick(const TQString& src, TQString& err); public: // Static methods. /** Test if a file is a JPEG file. */ static bool isJPEG(const TQString& file); /** Test if a file is a RAW file supported by dcraw. */ static bool isRAW(const TQString& file); /** POSIX Compliant File Copy and Move - Can't use KIO based operations as we need to use these in a thread */ static bool CopyFile(const TQString& src, const TQString& dst); static bool MoveFile(const TQString& src, const TQString& dst); /** Thread-safe recursive dir deletion. */ static bool deleteDir(const TQString& dirPath); private slots: void slotReadStderr(TDEProcess*, char*, int); private: TQString m_stdErr; }; } // NameSpace KIPIJPEGLossLessPlugin #endif /* UTILS_H */