summaryrefslogtreecommitdiff
path: root/core/pim/today/today.cpp
authorharlekin <harlekin>2002-02-16 19:59:21 (UTC)
committer harlekin <harlekin>2002-02-16 19:59:21 (UTC)
commit4e6ec847f469a3669be864db69dee0d8b0e4a93b (patch) (side-by-side diff)
treedb92798a54f2eca93aa71fcf4d9aab3d116f0c5e /core/pim/today/today.cpp
parentbe1704ffdb21c6d304ba36bfd5ef1f5db622baea (diff)
downloadopie-4e6ec847f469a3669be864db69dee0d8b0e4a93b.zip
opie-4e6ec847f469a3669be864db69dee0d8b0e4a93b.tar.gz
opie-4e6ec847f469a3669be864db69dee0d8b0e4a93b.tar.bz2
new features: auto update and opiemail support
Diffstat (limited to 'core/pim/today/today.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/today.cpp48
1 files changed, 40 insertions, 8 deletions
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
@@ -35,6 +35,7 @@
#include <qspinbox.h>
#include <qpushbutton.h>
#include <qlabel.h>
+#include <qtimer.h>
//#include <iostream.h>
//#include <unistd.h>
@@ -57,17 +58,26 @@ Today::Today( QWidget* parent, const char* name, WFlags fl )
QObject::connect( (QObject*)PushButton1, SIGNAL( clicked() ), this, SLOT(startConfig() ) );
QObject::connect( (QObject*)TodoButton, SIGNAL( clicked() ), this, SLOT(startTodo() ) );
QObject::connect( (QObject*)DatesButton, SIGNAL( clicked() ), this, SLOT(startDatebook() ) );
+ QObject::connect( (QObject*)DatesButton, SIGNAL( clicked() ), this, SLOT(startMail() ) );
QDate date = QDate::currentDate();
QString time = (date.toString());
TextLabel1->setText(time);
db = new DateBookDB;
+ draw();
+}
+
+
+void Today::draw()
+{
init();
getDates();
- getTodo();
-}
+ getMail();
+ getTodo();
+ QTimer::singleShot( 60*1000, this, SLOT(draw()) );
+}
void Today::init()
{
@@ -126,10 +136,7 @@ void Today::startConfig()
// sync it to "disk"
cfg.write();
- init();
- getDates();
- getTodo();
- //cout << location << endl;
+ draw();
}
@@ -262,6 +269,22 @@ 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);
+}
+
+
/*
* Get the todos
*
@@ -308,7 +331,7 @@ void Today::getTodo()
}
/*
- * lanches datebook
+ * launches datebook
*/
void Today::startDatebook()
{
@@ -317,7 +340,7 @@ void Today::startDatebook()
}
/*
- * lanches todolist
+ * launches todolist
*/
void Today::startTodo()
{
@@ -325,6 +348,15 @@ void Today::startTodo()
e << QString("todolist");
}
+/*
+ * launch opiemail
+ */
+void Today::startMail()
+{
+ QCopEnvelope e("QPE/System", "execute(QString)");
+ e << QString("opiemail");
+}
+
/*
* Destroys the object and frees any allocated resources
*/