summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebookweeklst.h
Side-by-side diff
Diffstat (limited to 'core/pim/datebook/datebookweeklst.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/datebook/datebookweeklst.h24
1 files changed, 22 insertions, 2 deletions
diff --git a/core/pim/datebook/datebookweeklst.h b/core/pim/datebook/datebookweeklst.h
index 39c956d..b0b0417 100644
--- a/core/pim/datebook/datebookweeklst.h
+++ b/core/pim/datebook/datebookweeklst.h
@@ -33,2 +33,3 @@ signals:
void dateChanged(int y, int w);
+ void setDbl(bool on);
private:
@@ -75,3 +76,3 @@ class DateBookWeekLstView: public QWidget
public:
- DateBookWeekLstView(QValueList<EffectiveEvent> &ev, QDate &d, bool onM,
+ DateBookWeekLstView(QValueList<EffectiveEvent> &ev, const QDate &d, bool onM,
QWidget* parent = 0, const char* name = 0,
@@ -90,2 +91,17 @@ protected slots:
+class DateBookWeekLstDblView: public QWidget {
+ Q_OBJECT
+public:
+ DateBookWeekLstDblView(QValueList<EffectiveEvent> &ev1,
+ QValueList<EffectiveEvent> &ev2,
+ QDate &d, bool onM,
+ QWidget* parent = 0, const char* name = 0,
+ WFlags fl = 0 );
+signals:
+ void editEvent(const Event &e);
+ void showDate(int y, int m, int d);
+ void addEvent(const QDateTime &start, const QDateTime &stop,
+ const QString &str);
+};
+
class DateBookWeekLst : public QWidget
@@ -98,2 +114,3 @@ public:
const char *name = 0 );
+ ~DateBookWeekLst();
void setDate( int y, int w );
@@ -106,4 +123,6 @@ public slots:
void dateChanged(int y, int w);
+
protected slots:
void keyPressEvent(QKeyEvent *);
+ void setDbl(bool on);
@@ -120,5 +139,6 @@ private:
bool onMonday;
+ bool dbl;
int year, _week;
DateBookWeekLstHeader *header;
- DateBookWeekLstView *view;
+ QWidget *view;
QVBoxLayout *layout;