summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/mail/mailpluginwidget.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/today/plugins/mail/mailpluginwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/mail/mailpluginwidget.cpp73
1 files changed, 73 insertions, 0 deletions
diff --git a/core/pim/today/plugins/mail/mailpluginwidget.cpp b/core/pim/today/plugins/mail/mailpluginwidget.cpp
new file mode 100644
index 0000000..a6f3562
--- a/dev/null
+++ b/core/pim/today/plugins/mail/mailpluginwidget.cpp
@@ -0,0 +1,73 @@
+/*
+ * mailpluginwidget.cpp
+ *
+ * copyright : (c) 2002 by Maximilian Reiß
+ * email : harlekin@handhelds.org
+ *
+ */
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+
+#include <qvaluelist.h>
+#include <qtl.h>
+#include <qstring.h>
+#include <qobject.h>
+#include <qlayout.h>
+
+#include <qpe/config.h>
+#include <qpe/timestring.h>
+#include <qpe/qcopenvelope_qws.h>
+
+#include "mailpluginwidget.h"
+
+MailPluginWidget::MailPluginWidget( QWidget *parent, const char* name)
+ : QWidget(parent, name ) {
+
+ readConfig();
+ getInfo();
+}
+
+MailPluginWidget::~MailPluginWidget() {
+}
+
+
+void MailPluginWidget::readConfig() {
+ Config cfg( "todaymailplugin" );
+ cfg.setGroup( "config" );
+}
+
+
+void MailPluginWidget::getInfo() {
+
+ QHBoxLayout* layout = new QHBoxLayout( this );
+
+ mailLabel = new OClickableLabel( this );
+ mailLabel->setMaximumHeight( 15 );
+ connect( mailLabel, SIGNAL( clicked() ), this, SLOT( startMail() ) );
+
+ Config cfg( "opiemail" );
+ cfg.setGroup( "today" );
+
+ int NEW_MAILS = cfg.readNumEntry( "newmails", 0 );
+ int OUTGOING = cfg.readNumEntry( "outgoing", 0 );
+
+ QString output = QObject::tr( "<b>%1</b> new mail(s), <b>%2</b> outgoing" ).arg( NEW_MAILS ).arg( OUTGOING );
+
+ mailLabel->setText( output );
+ layout->addWidget( mailLabel );
+}
+
+/**
+ * launches datebook
+ */
+void MailPluginWidget::startMail() {
+ QCopEnvelope e("QPE/System", "execute(QString)");
+ e << QString( "mail" );
+}