summaryrefslogtreecommitdiffstats
path: root/libkipi/libkipi/batchprogressdialog.h
blob: 21e7afb7dbad9f11711dd385f374fd232080b2d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
//////////////////////////////////////////////////////////////////////////////
//
//    BATCHPROGRESSDIALOG.H
//
//    Copyright (C) 2004 Gilles Caulier <caulier dot gilles at free.fr>
//
//    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 <kdialogbase.h>
#include "libkipi/libkipi_export.h"
class KListView;
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;
   KListView               *m_actionsList;
   KProgress               *m_progress;

 private:
 
   struct Private;
   Private* d;
};

}  // NameSpace KIPI

#endif  // BATCHPROGRESSDIALOG_H