/*************************************************************************** pictureplugin.h - description ------------------- begin : Son Apr 14 2002 copyright : (C) 2002 by Dominik Seichter email : domseichter@web.de ***************************************************************************/ /*************************************************************************** * * * 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. * * * ***************************************************************************/ #ifndef PICTUREPLUGIN_H #define PICTUREPLUGIN_H #include "batchrenamer.h" #include "pluginloader.h" #include "fileplugin.h" class QVBoxLayout; class QHBoxLayout; class QString; class QWidget; class PicturePlugin : public FilePlugin { Q_OBJECT public: PicturePlugin(); const QString getName() const; const QString getAccelName() const; const QString getPattern() const; QString processFile( BatchRenamer* b, int i, QString token, int ); }; #endif