summaryrefslogtreecommitdiffabout
path: root/libkdepim/categoryeditdialog.h
Unidiff
Diffstat (limited to 'libkdepim/categoryeditdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libkdepim/categoryeditdialog.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/libkdepim/categoryeditdialog.h b/libkdepim/categoryeditdialog.h
index 4ebc802..3e8ab45 100644
--- a/libkdepim/categoryeditdialog.h
+++ b/libkdepim/categoryeditdialog.h
@@ -24,11 +24,35 @@
24#define KPIM_CATEGORYEDITDIALOG_H 24#define KPIM_CATEGORYEDITDIALOG_H
25 25
26#include <categoryeditdialog_base.h> 26#include <categoryeditdialog_base.h>
27#include <qlistview.h>
27 28
28class KPimPrefs; 29class KPimPrefs;
29 30
30namespace KPIM { 31namespace KPIM {
31 32
33 class CategorySelectItem :public QObject, public QCheckListItem
34{
35
36 Q_OBJECT
37 public:
38
39 CategorySelectItem(QListView * parent, const QString & text, Type tt) :
40 QCheckListItem (parent, text, tt ) , QObject( parent )
41 {;}
42
43 signals:
44 void stateChanged( QListViewItem*);
45
46 protected:
47
48 virtual void stateChange(bool b)
49 {
50 QCheckListItem::stateChange(b);
51 emit stateChanged( this );
52 }
53};
54
55
32class CategoryEditDialog : public CategoryEditDialog_base 56class CategoryEditDialog : public CategoryEditDialog_base
33{ 57{
34 Q_OBJECT 58 Q_OBJECT