summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/changelog8
-rw-r--r--core/pim/today/opie-today.control4
-rw-r--r--core/pim/today/today.cpp46
-rw-r--r--core/pim/today/today.h4
-rw-r--r--core/pim/today/todaybase.cpp40
-rw-r--r--core/pim/today/todaybase.h4
6 files changed, 87 insertions, 19 deletions
diff --git a/core/pim/today/changelog b/core/pim/today/changelog
index 96a4163..dd4cfc1 100644
--- a/core/pim/today/changelog
+++ b/core/pim/today/changelog
@@ -1 +1,9 @@
+0.2.4
+
+* added support for email
+* autoupdates after 1 min
+* QCopEnvelope instead of system()
+* starting to use qvbox in gui
+
+
0.2.3
diff --git a/core/pim/today/opie-today.control b/core/pim/today/opie-today.control
index 515632b..3362a54 100644
--- a/core/pim/today/opie-today.control
+++ b/core/pim/today/opie-today.control
@@ -1,2 +1,2 @@
-Files: bin/today apps/Applications/today.desktop pics/today_icon.png pics/today/today_logo.png pics/today/config.png
+Files: bin/today apps/Applications/today.desktop pics/today_icon.png pics/today/today_logo.png pics/today/config.png pics/today/mail.png
Priority: optional
@@ -5,3 +5,3 @@ Maintainer: Maximilian Reiß <max.reiss@gmx.de>
Architecture: arm
-Version: 0.2.3
+Version: 0.2.4
Depends: opie-base ($QPE_VERSION)
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index 00a8842..eb8b50c 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -37,2 +37,3 @@
#include <qlabel.h>
+#include <qtimer.h>
@@ -59,2 +60,3 @@ Today::Today( QWidget* parent, const char* name, WFlags fl )
QObject::connect( (QObject*)DatesButton, SIGNAL( clicked() ), this, SLOT(startDatebook() ) );
+ QObject::connect( (QObject*)DatesButton, SIGNAL( clicked() ), this, SLOT(startMail() ) );
@@ -65,7 +67,15 @@ Today::Today( QWidget* parent, const char* name, WFlags fl )
+ draw();
+}
+
+
+void Today::draw()
+{
init();
getDates();
+ getMail();
getTodo();
-}
+ QTimer::singleShot( 60*1000, this, SLOT(draw()) );
+}
@@ -128,6 +138,3 @@ void Today::startConfig()
- init();
- getDates();
- getTodo();
- //cout << location << endl;
+ draw();
}
@@ -264,2 +271,18 @@ QList<TodoItem> Today::loadTodo(const char *filename)
+void Today::getMail()
+{
+ Config cfg("opiemail");
+ cfg.setGroup("today");
+
+ // how many lines should be showed in the task section
+ int NEW_MAILS = cfg.readNumEntry("newmails",0);
+ int OUTGOING = cfg.readNumEntry("outgoing",0);
+
+ QString output = tr("<b>%1</b> new mails, <b>%2</b> outgoing").arg(NEW_MAILS).arg(OUTGOING);
+
+
+ MailField->setText(output);
+}
+
+
/*
@@ -310,3 +333,3 @@ void Today::getTodo()
/*
- * lanches datebook
+ * launches datebook
*/
@@ -319,3 +342,3 @@ void Today::startDatebook()
/*
- * lanches todolist
+ * launches todolist
*/
@@ -328,2 +351,11 @@ void Today::startTodo()
/*
+ * launch opiemail
+ */
+void Today::startMail()
+{
+ QCopEnvelope e("QPE/System", "execute(QString)");
+ e << QString("opiemail");
+}
+
+/*
* Destroys the object and frees any allocated resources
diff --git a/core/pim/today/today.h b/core/pim/today/today.h
index 50a10f1..6b8c0bf 100644
--- a/core/pim/today/today.h
+++ b/core/pim/today/today.h
@@ -43,3 +43,4 @@ class Today : public TodayBase
void startDatebook();
-
+ void startMail();
+ void draw();
private:
@@ -48,2 +49,3 @@ class Today : public TodayBase
void getTodo();
+ void getMail();
QList<TodoItem> loadTodo(const char *filename);
diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp
index b60c915..9331ee3 100644
--- a/core/pim/today/todaybase.cpp
+++ b/core/pim/today/todaybase.cpp
@@ -48,6 +48,9 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl )
QPixmap config = Resource::loadPixmap( "today/config" );
+ // mail icon
+ QPixmap mail = Resource::loadPixmap( "today/mail" );
- if ( !name )
- setName( "TodayBase" );
- resize( 223, 307 );
+
+ //if ( !name )
+ // setName( "TodayBase" );
+ //resize( 223, 307 );
@@ -65,3 +68,3 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl )
DatesButton = new QPushButton (Frame4, "DatesButton" );
- DatesButton->setGeometry( QRect( 2, 10, 36, 32 ) );
+ DatesButton->setGeometry( QRect( 2, 4, 36, 32 ) );
DatesButton->setBackgroundOrigin( QPushButton::WidgetOrigin );
@@ -71,3 +74,3 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl )
DatesField = new QLabel( Frame4, "DatesField" );
- DatesField->setGeometry( QRect( 40, 10, 203, 120 ) );
+ DatesField->setGeometry( QRect( 40, 4, 203, 120 ) );
DatesField->setText( tr( "No appointments today" ) );
@@ -111,3 +114,3 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl )
TodoField = new QLabel( Frame15, "TodoField" );
- TodoField->setGeometry( QRect( 40, 10, 196, 120 ) );
+ TodoField->setGeometry( QRect( 40, 4, 196, 120 ) );
TodoField->setFrameShadow( QLabel::Plain );
@@ -123,8 +126,29 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl )
+ // mail
+ MailFrame = new QFrame( this, "MailFrame" );
+ MailFrame->setFrameShape( QScrollView::StyledPanel );
+ MailFrame->setFrameShadow( QScrollView::Sunken );
+ MailFrame->setBackgroundOrigin( QScrollView::ParentOrigin );
+
+ MailButton = new QPushButton (MailFrame, "MailButton" );
+ MailButton->setGeometry( QRect( 2, 10, 36, 19 ) );
+ MailButton->setBackgroundOrigin( QPushButton::WidgetOrigin );
+ MailButton->setPixmap( mail );
+ MailButton->setFlat( TRUE );
+
+ MailField = new QLabel( MailFrame, "DatesField" );
+ MailField->setGeometry( QRect( 40, 10, 203, 120 ) );
+ MailField->setText( tr( "Opiemail not installed" ) );
+ MailField->setAlignment( int( QLabel::AlignTop | QLabel::AlignLeft ) );
+ MailField->setMaximumHeight(15);
+ MailField->setMinimumHeight(10);
+
layout->addWidget(Frame);
layout->addWidget(Frame4);
+ layout->addWidget(MailFrame);
layout->addWidget(Frame15);
- layout->setStretchFactor(Frame4,3);
- layout->setStretchFactor(Frame15,2);
+ layout->setStretchFactor(Frame4,4);
+ layout->setStretchFactor(MailFrame,1);
+ layout->setStretchFactor(Frame15,3);
}
diff --git a/core/pim/today/todaybase.h b/core/pim/today/todaybase.h
index 69c6363..15f021a 100644
--- a/core/pim/today/todaybase.h
+++ b/core/pim/today/todaybase.h
@@ -34,3 +34,3 @@ public:
QLabel* Frame;
- //QFrame* Frame;
+ QFrame* MailFrame;
QLabel* TextLabel1;
@@ -38,4 +38,6 @@ public:
QLabel* TodoField;
+ QLabel* MailField;
QPushButton* PushButton1;
QPushButton* TodoButton;
+ QPushButton* MailButton;
QPushButton* getridoffuckingstrippeldlinesbutton;