From e7ff7858eb79a452b65b77f8bf5ee108503f432a Mon Sep 17 00:00:00 2001 From: zautrix Date: Fri, 10 Jun 2005 22:09:05 +0000 Subject: fff --- diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index 1479208..f0d17b5 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp @@ -25,6 +25,7 @@ #include #include + #include #include "kofilterview.h" @@ -93,3 +94,23 @@ void KOFilterView::setSelectedFilter( int fil ) } + +KOCalEditView::KOCalEditView(QWidget* parent, + const char* name,WFlags fl ) + : QWidget(parent,name,fl) +{ + /* + connect(mSelectionCombo,SIGNAL(activated(int)),SIGNAL(filterChanged())); + connect(mEnabledCheck,SIGNAL(clicked()),SIGNAL(filterChanged())); + connect(mEditButton,SIGNAL(clicked()),SIGNAL(editCalEdits())); + */ +} + +KOCalEditView::~KOCalEditView() +{ + // no need to delete child widgets, Qt does it all for us +} +void KOCalEditView::readConfig( KConfig *) +{ + +} diff --git a/korganizer/kofilterview.h b/korganizer/kofilterview.h index 9ba2673..2ac4da1 100644 --- a/korganizer/kofilterview.h +++ b/korganizer/kofilterview.h @@ -24,7 +24,7 @@ #define KOFILTERVIEW_H #include - +#include #include "kofilterview_base.h" #include @@ -54,4 +54,25 @@ class KOFilterView : public KOFilterView_base QPtrList *mFilters; }; +class KOCalEditView : public QWidget +{ + Q_OBJECT + public: + KOCalEditView( QWidget* parent=0,const char* name=0, WFlags fl=0); + ~KOCalEditView(); + + void readConfig( KConfig *); + + signals: + void alarmEnabled ( int cal, bool enable ); + void calendarEnabled ( int cal, bool enable ); + void calendarReadonly ( int cal, bool readonly ); + void setCalendarDefault ( int cal ); + void removeCalendar ( int cal ); + + private: +}; + + + #endif // KOFILTERVIEW_H -- cgit v0.9.0.2