-rw-r--r-- | core/pim/today/TODO | 5 | ||||
-rw-r--r-- | core/pim/today/today.cpp | 10 | ||||
-rw-r--r-- | core/pim/today/today.h | 1 | ||||
-rw-r--r-- | core/pim/today/todaybase.cpp | 3 | ||||
-rw-r--r-- | core/pim/today/todaybase.h | 11 |
5 files changed, 22 insertions, 8 deletions
diff --git a/core/pim/today/TODO b/core/pim/today/TODO index 6acbf5a..30a8bab 100644 --- a/core/pim/today/TODO +++ b/core/pim/today/TODO | |||
@@ -1,4 +1,6 @@ | |||
1 | TODO for today: | 1 | TODO for today: |
2 | 2 | ||
3 | * show "upcoming appointents the next days .. one or too" | ||
4 | |||
3 | * show alarm icons on alarm events (partly done) | 5 | * show alarm icons on alarm events (partly done) |
4 | 6 | ||
@@ -6,3 +8,4 @@ TODO for today: | |||
6 | 8 | ||
7 | * make Opiezilla a clickable label wich is allway on the far right side of | 9 | * make Opiezilla a clickable label wich is allway on the far right side of |
8 | the screen , klick will open credits ,) \ No newline at end of file | 10 | the screen , klick will open credits ,) |
11 | |||
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 4368201..69a0f75 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp | |||
@@ -69,4 +69,5 @@ Today::Today( QWidget* parent, const char* name, WFlags fl ) | |||
69 | QObject::connect( (QObject*)DatesButton, SIGNAL( clicked() ), this, SLOT(startDatebook() ) ); | 69 | QObject::connect( (QObject*)DatesButton, SIGNAL( clicked() ), this, SLOT(startDatebook() ) ); |
70 | QObject::connect( (QObject*)MailButton, SIGNAL( clicked() ), this, SLOT(startMail() ) ); | 70 | QObject::connect( (QObject*)MailButton, SIGNAL( clicked() ), this, SLOT(startMail() ) ); |
71 | QObject::connect( (QObject*)OwnerField, SIGNAL( clicked() ), this, SLOT(editCard() ) ); | ||
71 | 72 | ||
72 | #if defined(Q_WS_QWS) | 73 | #if defined(Q_WS_QWS) |
@@ -420,4 +421,13 @@ void Today::getTodo() { | |||
420 | } | 421 | } |
421 | 422 | ||
423 | |||
424 | /* | ||
425 | * launch addressbook | ||
426 | */ | ||
427 | void Today::editCard() { | ||
428 | QCopEnvelope e("QPE/System", "execute(QString)"); | ||
429 | e << QString("addressbook"); | ||
430 | } | ||
431 | |||
422 | /* | 432 | /* |
423 | * launches datebook | 433 | * launches datebook |
diff --git a/core/pim/today/today.h b/core/pim/today/today.h index 32bb4a3..54f31cc 100644 --- a/core/pim/today/today.h +++ b/core/pim/today/today.h | |||
@@ -48,4 +48,5 @@ class Today : public TodayBase { | |||
48 | void startDatebook(); | 48 | void startDatebook(); |
49 | void startMail(); | 49 | void startMail(); |
50 | void editCard(); | ||
50 | void draw(); | 51 | void draw(); |
51 | void editEvent(const Event &e); | 52 | void editEvent(const Event &e); |
diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp index 3d0bfb3..bc1651d 100644 --- a/core/pim/today/todaybase.cpp +++ b/core/pim/today/todaybase.cpp | |||
@@ -58,5 +58,4 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl ) | |||
58 | QVBoxLayout * layout = new QVBoxLayout(this); | 58 | QVBoxLayout * layout = new QVBoxLayout(this); |
59 | 59 | ||
60 | |||
61 | QPalette pal = this->palette(); | 60 | QPalette pal = this->palette(); |
62 | QColor col = pal.color(QPalette::Active, QColorGroup::Background); | 61 | QColor col = pal.color(QPalette::Active, QColorGroup::Background); |
@@ -107,5 +106,5 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl ) | |||
107 | TextLabel1->setTextFormat( RichText ); | 106 | TextLabel1->setTextFormat( RichText ); |
108 | 107 | ||
109 | OwnerField = new QLabel(this , "Owner" ); | 108 | OwnerField = new OClickableLabel(this , "Owner" ); |
110 | OwnerField->setGeometry(QRect(0,0, this->width(), 12 )); | 109 | OwnerField->setGeometry(QRect(0,0, this->width(), 12 )); |
111 | OwnerField->setAlignment(int (QLabel::AlignTop | QLabel::AlignLeft ) ); | 110 | OwnerField->setAlignment(int (QLabel::AlignTop | QLabel::AlignLeft ) ); |
diff --git a/core/pim/today/todaybase.h b/core/pim/today/todaybase.h index 0118faa..ec06281 100644 --- a/core/pim/today/todaybase.h +++ b/core/pim/today/todaybase.h | |||
@@ -14,8 +14,9 @@ | |||
14 | #include <qscrollview.h> | 14 | #include <qscrollview.h> |
15 | #include <qsplitter.h> | 15 | #include <qsplitter.h> |
16 | #include <opie/oclickablelabel.h> | ||
16 | 17 | ||
17 | class QVBox; | 18 | class QVBox; |
18 | class QHBoxLayout; | 19 | class QHBoxLayout; |
19 | class QGridLayout; | 20 | class QGridLayout; |
20 | class QFrame; | 21 | class QFrame; |
21 | class QLabel; | 22 | class QLabel; |
@@ -23,5 +24,5 @@ class QPushButton; | |||
23 | 24 | ||
24 | class TodayBase : public QWidget | 25 | class TodayBase : public QWidget |
25 | { | 26 | { |
26 | Q_OBJECT | 27 | Q_OBJECT |
27 | 28 | ||
@@ -33,5 +34,5 @@ public: | |||
33 | QFrame* Frame4; | 34 | QFrame* Frame4; |
34 | QPushButton* DatesButton; | 35 | QPushButton* DatesButton; |
35 | QLabel* OwnerField; | 36 | OClickableLabel* OwnerField; |
36 | QLabel* Frame; | 37 | QLabel* Frame; |
37 | QFrame* MailFrame; | 38 | QFrame* MailFrame; |