/* ============================================================ * * This file is a part of kipi-plugins project * http://www.kipi-plugins.org * * Date : 2004-02-25 * Description : a kipi plugin to e-mailing images * * Copyright (C) 2004-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 ACTIONS_H #define ACTIONS_H namespace KIPISendimagesPlugin { enum Action { Initialize = 0, Progress, Error, ResizeImages }; class EventData { public: EventData() { starting = false; success = false; } bool starting; bool success; int total; TQString fileName; TQString albumName; TQString errString; Action action; }; } // NameSpace KIPISendimagesPlugin #endif // ACTIONS_H