author | harlekin <harlekin> | 2004-01-06 13:45:20 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2004-01-06 13:45:20 (UTC) |
commit | 7be0e1080327a6b4eeca8b7ea58535e410c4e6b3 (patch) (side-by-side diff) | |
tree | 1ca541481cf5aa7cc95d050deb595a069a8e8016 | |
parent | 46753cb77877f4807ab9b1ba3e6c7a4eed7bc1bd (diff) | |
download | opie-7be0e1080327a6b4eeca8b7ea58535e410c4e6b3.zip opie-7be0e1080327a6b4eeca8b7ea58535e410c4e6b3.tar.gz opie-7be0e1080327a6b4eeca8b7ea58535e410c4e6b3.tar.bz2 |
hide applet when mail app is launched
-rw-r--r-- | noncore/net/mail/taskbarapplet/mailapplet.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/net/mail/taskbarapplet/mailapplet.cpp b/noncore/net/mail/taskbarapplet/mailapplet.cpp index 6078013..f242bda 100644 --- a/noncore/net/mail/taskbarapplet/mailapplet.cpp +++ b/noncore/net/mail/taskbarapplet/mailapplet.cpp @@ -50,48 +50,50 @@ void MailApplet::paintEvent( QPaintEvent* ) { QFontMetrics fm( f ); p.setFont( f ); p.setPen( Qt::blue ); p.drawText( AppLnk::smallIconSize()/3, AppLnk::smallIconSize() - 2, QString::number( m_newMails ) ); return; } void MailApplet::mouseReleaseEvent( QMouseEvent* e ) { slotClicked(); } void MailApplet::slotClicked() { QCopEnvelope e( "QPE/System", "execute(QString)" ); e << QString( "opiemail" ); ODevice *device = ODevice::inst(); if ( !device-> ledList().isEmpty() ) { OLed led = ( device->ledList().contains( Led_Mail ) ) ? Led_Mail : device->ledList()[0]; device->setLedState( led, Led_Off ); } if (m_statusMail) m_statusMail->reset_status(); + + hide(); } void MailApplet::startup() { Settings *settings = new Settings(); QList<Account> ma = settings->getAccounts(); m_statusMail = new StatusMail( ma ); delete settings; m_intervalMs = m_config->readNumEntry( "CheckEvery", 5 ) * 60000; m_intervalTimer = new QTimer(); m_intervalTimer->start( m_intervalMs ); connect( m_intervalTimer, SIGNAL( timeout() ), this, SLOT( slotCheck() ) ); } void MailApplet::slotCheck() { // Check wether the check interval has been changed. int newIntervalMs = m_config->readNumEntry( "CheckEvery", 5 ) * 60000; if ( newIntervalMs != m_intervalMs ) { m_intervalTimer->changeInterval( newIntervalMs ); m_intervalMs = newIntervalMs; } if (m_statusMail == 0) { return; |