summaryrefslogtreecommitdiffabout
path: root/libkdepim/categoryeditdialog.h
authorzautrix <zautrix>2005-02-19 20:30:34 (UTC)
committer zautrix <zautrix>2005-02-19 20:30:34 (UTC)
commit6f4d42c16c87668279db1e0a0d3e4f4aad5b84f6 (patch) (side-by-side diff)
tree89fbb2b107a1681a1fbb19b35c3a9484652dc352 /libkdepim/categoryeditdialog.h
parent11b5b0eb24cfb943df106f7ee97646955bec0fd3 (diff)
downloadkdepimpi-6f4d42c16c87668279db1e0a0d3e4f4aad5b84f6.zip
kdepimpi-6f4d42c16c87668279db1e0a0d3e4f4aad5b84f6.tar.gz
kdepimpi-6f4d42c16c87668279db1e0a0d3e4f4aad5b84f6.tar.bz2
cat select fix
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 @@
#define KPIM_CATEGORYEDITDIALOG_H
#include <categoryeditdialog_base.h>
+#include <qlistview.h>
class KPimPrefs;
namespace KPIM {
+ class CategorySelectItem :public QObject, public QCheckListItem
+{
+
+ Q_OBJECT
+ public:
+
+ CategorySelectItem(QListView * parent, const QString & text, Type tt) :
+ QCheckListItem (parent, text, tt ) , QObject( parent )
+ {;}
+
+ signals:
+ void stateChanged( QListViewItem*);
+
+ protected:
+
+ virtual void stateChange(bool b)
+ {
+ QCheckListItem::stateChange(b);
+ emit stateChanged( this );
+ }
+};
+
+
class CategoryEditDialog : public CategoryEditDialog_base
{
Q_OBJECT