-rw-r--r-- | korganizer/kofilterview.cpp | 21 | ||||
-rw-r--r-- | korganizer/kofilterview.h | 23 |
2 files changed, 43 insertions, 1 deletions
diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index 1479208..f0d17b5 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp | |||
@@ -26,4 +26,5 @@ | |||
26 | #include <qpushbutton.h> | 26 | #include <qpushbutton.h> |
27 | 27 | ||
28 | |||
28 | #include <libkcal/calfilter.h> | 29 | #include <libkcal/calfilter.h> |
29 | 30 | ||
@@ -94,2 +95,22 @@ void KOFilterView::setSelectedFilter( int fil ) | |||
94 | 95 | ||
95 | 96 | ||
97 | |||
98 | KOCalEditView::KOCalEditView(QWidget* parent, | ||
99 | const char* name,WFlags fl ) | ||
100 | : QWidget(parent,name,fl) | ||
101 | { | ||
102 | /* | ||
103 | connect(mSelectionCombo,SIGNAL(activated(int)),SIGNAL(filterChanged())); | ||
104 | connect(mEnabledCheck,SIGNAL(clicked()),SIGNAL(filterChanged())); | ||
105 | connect(mEditButton,SIGNAL(clicked()),SIGNAL(editCalEdits())); | ||
106 | */ | ||
107 | } | ||
108 | |||
109 | KOCalEditView::~KOCalEditView() | ||
110 | { | ||
111 | // no need to delete child widgets, Qt does it all for us | ||
112 | } | ||
113 | void KOCalEditView::readConfig( KConfig *) | ||
114 | { | ||
115 | |||
116 | } | ||
diff --git a/korganizer/kofilterview.h b/korganizer/kofilterview.h index 9ba2673..2ac4da1 100644 --- a/korganizer/kofilterview.h +++ b/korganizer/kofilterview.h | |||
@@ -25,5 +25,5 @@ | |||
25 | 25 | ||
26 | #include <qstring.h> | 26 | #include <qstring.h> |
27 | 27 | #include <kconfig.h> | |
28 | #include "kofilterview_base.h" | 28 | #include "kofilterview_base.h" |
29 | 29 | ||
@@ -55,3 +55,24 @@ class KOFilterView : public KOFilterView_base | |||
55 | }; | 55 | }; |
56 | 56 | ||
57 | class KOCalEditView : public QWidget | ||
58 | { | ||
59 | Q_OBJECT | ||
60 | public: | ||
61 | KOCalEditView( QWidget* parent=0,const char* name=0, WFlags fl=0); | ||
62 | ~KOCalEditView(); | ||
63 | |||
64 | void readConfig( KConfig *); | ||
65 | |||
66 | signals: | ||
67 | void alarmEnabled ( int cal, bool enable ); | ||
68 | void calendarEnabled ( int cal, bool enable ); | ||
69 | void calendarReadonly ( int cal, bool readonly ); | ||
70 | void setCalendarDefault ( int cal ); | ||
71 | void removeCalendar ( int cal ); | ||
72 | |||
73 | private: | ||
74 | }; | ||
75 | |||
76 | |||
77 | |||
57 | #endif // KOFILTERVIEW_H | 78 | #endif // KOFILTERVIEW_H |