////////////////////////////////////////////////////////////////////////////// // // BATCHPROGRESSDIALOG.H // // Copyright (C) 2004 Gilles Caulier // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU Library 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 Library General Public License for more details. // // You should have received a copy of the GNU Library General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Steet, Fifth Floor, Boston, MA 02110-1301, USA. // ////////////////////////////////////////////////////////////////////////////// /** @file batchprogressdialog.h */ #ifndef BATCHPROGRESSDIALOG_H #define BATCHPROGRESSDIALOG_H // Include files for KDE #include #include "libkipi/libkipi_export.h" class TDEListView; class KProgress; /** @namespace KIPI This is the namespace */ namespace KIPI { class BatchProgressItem; enum ActionMessageType { StartingMessage = 0, SuccessMessage, WarningMessage, ErrorMessage, ProgressMessage }; class LIBKIPI_EXPORT BatchProgressDialog : public KDialogBase { Q_OBJECT public: BatchProgressDialog( TQWidget *parent=0, const TQString &caption=TQString() ); ~BatchProgressDialog(); void addedAction(const TQString &text, int type); void reset(); void setProgress(int current, int total); protected: KIPI::BatchProgressItem *m_item; TDEListView *m_actionsList; KProgress *m_progress; private: struct Private; Private* d; }; } // NameSpace KIPI #endif // BATCHPROGRESSDIALOG_H