From 3804209658d051d197526a28561bbd2e31b6f439 Mon Sep 17 00:00:00 2001 From: harlekin Date: Mon, 05 Jan 2004 17:42:58 +0000 Subject: inherit from qwidget instead of qbutton --- (limited to 'noncore') diff --git a/noncore/net/mail/taskbarapplet/mailapplet.cpp b/noncore/net/mail/taskbarapplet/mailapplet.cpp index 31d5bfe..5d98783 100644 --- a/noncore/net/mail/taskbarapplet/mailapplet.cpp +++ b/noncore/net/mail/taskbarapplet/mailapplet.cpp @@ -1,16 +1,12 @@ -#include -#include -#include -#include +#include #include -#include #include #include #include +#include #include -#include #include @@ -18,44 +14,47 @@ using namespace Opie; -MailApplet::MailApplet( QWidget *parent, const char *name, WFlags fl ) - : QButton( parent, name, fl ) { +MailApplet::MailApplet( QWidget *parent ) + : QWidget( parent ) { m_config = new Config( "mail" ); m_config->setGroup( "Applet" ); - QVBoxLayout *layout = new QVBoxLayout( this ); - layout->addItem( new QSpacerItem( 0,0 ) ); - - QLabel *pixmap = new QLabel( this ); - pixmap->setPixmap( Resource::loadPixmap( "mail/mailchecker" ) ); - layout->addWidget( pixmap ); - - layout->addItem( new QSpacerItem( 0,0 ) ); + setFixedWidth( AppLnk::smallIconSize() ); + setFixedHeight( AppLnk::smallIconSize() ); hide(); - m_statusMail = 0; - - connect( this, SIGNAL( clicked() ), SLOT( slotClicked() ) ); + m_newMails = 0; + m_statusMail = 0l; if ( !m_config->readBoolEntry( "Disabled", false ) ) { - m_intervalMs = m_config->readNumEntry( "CheckEvery", 5 ) * 60000; - m_intervalTimer = new QTimer(); - m_intervalTimer->start( m_intervalMs ); - connect( m_intervalTimer, SIGNAL(timeout() ), SLOT( slotCheck() ) ); - // delay 5 sec until the whole mail backend gets started .-) QTimer::singleShot( 5000, this, SLOT( startup() ) ); } + repaint( true ); } + MailApplet::~MailApplet() { if (m_statusMail) delete m_statusMail; + if (m_config) delete m_config; } -void MailApplet::drawButton(QPainter *) { } -void MailApplet::drawButtonText(QPainter *) { } +void MailApplet::paintEvent( QPaintEvent* ) { + QPainter p(this); + p.drawPixmap( 0, 0, Resource::loadPixmap( "mail/mailchecker" ) ); + QFont f( "Fixed", AppLnk::smallIconSize() ); + QFontMetrics fm( f ); + p.setFont( f ); + p.drawText( AppLnk::smallIconSize()/2, AppLnk::smallIconSize()/2, QString::number( m_newMails ) ); + return; + +} + +void MailApplet::mouseReleaseEvent( QMouseEvent* e) { + slotClicked(); +} void MailApplet::slotClicked() { qDebug( " CLICKED" ); @@ -77,6 +76,12 @@ void MailApplet::startup() { QList ma = settings->getAccounts(); StatusMail m_statusMail = 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() { @@ -90,9 +95,9 @@ void MailApplet::slotCheck() { folderStat stat; m_statusMail->check_current_stat( stat ); - + m_newMails = stat.message_unseen; qDebug( QString( "test %1" ).arg( stat.message_unseen ) ); - if ( stat.message_unseen > 0 ) { + if ( m_newMails > 0 ) { ODevice *device = ODevice::inst(); if ( isHidden() ) show(); if ( m_config->readBoolEntry( "BlinkLed", true ) ) { @@ -104,13 +109,12 @@ void MailApplet::slotCheck() { if ( m_config->readBoolEntry( "PlaySound", false ) ) device->alarmSound(); - qDebug( QString( "test %1" ).arg( stat.message_unseen ) ); - - Config cfg( "mail" ); + Config cfg( "mail" ); cfg.setGroup( "Status" ); - cfg.writeEntry( "NewMails", ( int )stat.message_unseen ); + cfg.writeEntry( "NewMails", m_newMails ); QCopEnvelope env( "QPE/Pim", "newMails(int)" ); env << stat.message_unseen; + repaint( true ); } else { ODevice *device = ODevice::inst(); @@ -120,7 +124,4 @@ void MailApplet::slotCheck() { device->setLedState( led, Led_Off ); } } - - // go trough accounts and check here - // also trigger qcop call and save status to config } diff --git a/noncore/net/mail/taskbarapplet/mailapplet.h b/noncore/net/mail/taskbarapplet/mailapplet.h index 8369176..25f0652 100644 --- a/noncore/net/mail/taskbarapplet/mailapplet.h +++ b/noncore/net/mail/taskbarapplet/mailapplet.h @@ -8,18 +8,18 @@ class Config; class QTimer; -class MailApplet : public QButton { +class MailApplet : public QWidget { Q_OBJECT public: - MailApplet( QWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); + MailApplet( QWidget *parent = 0 ); ~MailApplet(); protected: - void drawButton(QPainter *); - void drawButtonText(QPainter *); void gotNewMail(); + void mouseReleaseEvent( QMouseEvent* ); + void paintEvent( QPaintEvent* ); protected slots: void startup(); @@ -30,6 +30,7 @@ private: QTimer *m_intervalTimer; int m_intervalMs; StatusMail* m_statusMail; + int m_newMails; }; -- cgit v0.9.0.2