summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/taskbarapplet/mailapplet.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/noncore/net/mail/taskbarapplet/mailapplet.cpp b/noncore/net/mail/taskbarapplet/mailapplet.cpp
index 58f068b..a261d14 100644
--- a/noncore/net/mail/taskbarapplet/mailapplet.cpp
+++ b/noncore/net/mail/taskbarapplet/mailapplet.cpp
@@ -45,11 +45,11 @@ MailApplet::~MailApplet() {
void MailApplet::paintEvent( QPaintEvent* ) {
QPainter p( this );
- p.drawPixmap( 0, 0, Resource::loadPixmap( "mail/mailchecker" ) );
- QFont f( "Fixed", AppLnk::smallIconSize() );
+ p.drawPixmap( 0, 0, Resource::loadPixmap( "mail/inbox" ) );
+ QFont f( "vera", AppLnk::smallIconSize() );
QFontMetrics fm( f );
p.setFont( f );
- p.drawText( AppLnk::smallIconSize()/2, AppLnk::smallIconSize()/2, QString::number( m_newMails ) );
+ p.drawText( AppLnk::smallIconSize()/3, AppLnk::smallIconSize() - 2, QString::number( m_newMails ) );
return;
}
@@ -128,5 +128,11 @@ void MailApplet::slotCheck() {
OLed led = ( device->ledList().contains( Led_Mail ) ) ? Led_Mail : device->ledList()[0];
device->setLedState( led, Led_Off );
}
+
+ Config cfg( "mail" );
+ cfg.setGroup( "Status" );
+ cfg.writeEntry( "newMails", m_newMails );
+ QCopEnvelope env( "QPE/Pim", "newMails(int)" );
+ env << m_newMails;
}
}