summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/taskbarapplet/mailapplet.cpp93
-rw-r--r--noncore/net/mail/taskbarapplet/mailapplet.h2
2 files changed, 45 insertions, 50 deletions
diff --git a/noncore/net/mail/taskbarapplet/mailapplet.cpp b/noncore/net/mail/taskbarapplet/mailapplet.cpp
index ce1e7ac..b777ecf 100644
--- a/noncore/net/mail/taskbarapplet/mailapplet.cpp
+++ b/noncore/net/mail/taskbarapplet/mailapplet.cpp
@@ -20,11 +20,8 @@ using namespace Opie::Core;
20MailApplet::MailApplet( QWidget *parent ) 20MailApplet::MailApplet( QWidget *parent )
21: QLabel( parent ) { 21: QLabel( parent ) {
22 22
23 m_config = new Config( "mail" ); 23 setFixedHeight(AppLnk::smallIconSize());
24 m_config->setGroup( "Applet" ); 24 setMinimumWidth(AppLnk::smallIconSize());
25
26 //setFixedWidth( AppLnk::smallIconSize() );
27 setFixedHeight( AppLnk::smallIconSize() );
28 25
29 hide(); 26 hide();
30 27
@@ -38,19 +35,13 @@ MailApplet::MailApplet( QWidget *parent )
38 blocking_action.sa_flags = 0; 35 blocking_action.sa_flags = 0;
39 sigaction(SIGPIPE,&blocking_action,&temp_action); 36 sigaction(SIGPIPE,&blocking_action,&temp_action);
40 37
41 if ( !m_config->readBoolEntry( "Disabled", false ) ) { 38 QTimer::singleShot( 5000, this, SLOT( startup() ) );
42 // delay 5 sec until the whole mail backend gets started .-)
43 QTimer::singleShot( 5000, this, SLOT( startup() ) );
44 }
45 repaint( true );
46} 39}
47 40
48 41
49MailApplet::~MailApplet() { 42MailApplet::~MailApplet() {
50 if ( m_statusMail ) 43 if ( m_statusMail )
51 delete m_statusMail; 44 delete m_statusMail;
52 if ( m_config )
53 delete m_config;
54} 45}
55 46
56void MailApplet::paintEvent( QPaintEvent*ev ) 47void MailApplet::paintEvent( QPaintEvent*ev )
@@ -72,16 +63,14 @@ void MailApplet::mouseReleaseEvent( QMouseEvent* e ) {
72 slotClicked(); 63 slotClicked();
73} 64}
74 65
75void MailApplet::slotClicked() { 66void MailApplet::slotClicked()
76 QCopEnvelope e( "QPE/System", "execute(QString)" ); 67{
77 e << QString( "opiemail" ); 68 {
78 69 QCopEnvelope e( "QPE/System", "execute(QString)" );
79 ODevice *device = ODevice::inst(); 70 e << QString( "opiemail" );
80 if ( !device-> ledList().isEmpty() ) {
81 OLed led = ( device->ledList().contains( Led_Mail ) ) ? Led_Mail : device->ledList()[0];
82
83 device->setLedState( led, Led_Off );
84 } 71 }
72
73 ledOnOff(false);
85 if (m_statusMail) 74 if (m_statusMail)
86 m_statusMail->reset_status(); 75 m_statusMail->reset_status();
87 hide(); 76 hide();
@@ -101,19 +90,36 @@ void MailApplet::startup()
101 connect( m_intervalTimer, SIGNAL( timeout() ), this, SLOT( slotCheck() ) ); 90 connect( m_intervalTimer, SIGNAL( timeout() ), this, SLOT( slotCheck() ) );
102} 91}
103 92
93void MailApplet::ledOnOff(bool how)
94{
95 ODevice *device = ODevice::inst();
96 if ( !device->ledList().isEmpty() ) {
97 OLed led = ( device->ledList().contains( Led_Mail ) ) ? Led_Mail : device->ledList()[0];
98 device->setLedState( led, (how?(device->ledStateList( led ).contains( Led_BlinkSlow )?Led_BlinkSlow:Led_On):Led_Off) );
99 }
100}
101
104void MailApplet::slotCheck() { 102void MailApplet::slotCheck() {
105 // Check wether the check interval has been changed. 103 // Check wether the check interval has been changed.
106 odebug << "MailApplet::slotCheck()" << oendl; 104 odebug << "MailApplet::slotCheck()" << oendl;
107 int newIntervalMs = m_config->readNumEntry( "CheckEvery", 5 ) * 60000; 105 Config m_config( "mail" );
106 m_config.setGroup( "Applet" );
107
108 int newIntervalMs = m_config.readNumEntry( "CheckEvery", 5 ) * 60000;
108 if ( newIntervalMs != m_intervalMs ) { 109 if ( newIntervalMs != m_intervalMs ) {
109 m_intervalTimer->changeInterval( newIntervalMs ); 110 m_intervalTimer->changeInterval( newIntervalMs );
110 m_intervalMs = newIntervalMs; 111 m_intervalMs = newIntervalMs;
111 } 112 }
112 113 if ( m_config.readBoolEntry( "Disabled", false ) ) {
114 hide();
115 ledOnOff(false);
116 odebug << "MailApplet::slotCheck() - disabled" << oendl;
117 return;
118 }
113 if (m_statusMail == 0) { 119 if (m_statusMail == 0) {
120 odebug << "MailApplet::slotCheck() - no mailhandle" << oendl;
114 return; 121 return;
115 } 122 }
116
117 folderStat stat; 123 folderStat stat;
118 m_statusMail->check_current_stat( stat ); 124 m_statusMail->check_current_stat( stat );
119 int newMailsOld = m_newMails; 125 int newMailsOld = m_newMails;
@@ -123,38 +129,27 @@ void MailApplet::slotCheck() {
123 if (isHidden()) 129 if (isHidden())
124 show(); 130 show();
125 if (newMailsOld != m_newMails) { 131 if (newMailsOld != m_newMails) {
126 ODevice *device = ODevice::inst(); 132 if ( m_config.readBoolEntry( "BlinkLed", true ) ) {
127 if ( m_config->readBoolEntry( "BlinkLed", true ) ) { 133 ledOnOff(true);
128 if ( !device->ledList().isEmpty() ) {
129 OLed led = ( device->ledList().contains( Led_Mail ) ) ? Led_Mail : device->ledList()[0];
130 device->setLedState( led, device->ledStateList( led ).contains( Led_BlinkSlow ) ? Led_BlinkSlow : Led_On );
131 }
132 } 134 }
133 if ( m_config->readBoolEntry( "PlaySound", false ) ) 135 if ( m_config.readBoolEntry( "PlaySound", false ) )
134 device->playAlarmSound(); 136 ODevice::inst()->playAlarmSound();
135 } 137 m_config.setGroup( "Status" );
136 Config cfg( "mail" ); 138 m_config.writeEntry( "newMails", m_newMails );
137 cfg.setGroup( "Status" ); 139 {
138 cfg.writeEntry( "newMails", m_newMails ); 140 QCopEnvelope env( "QPE/Pim", "newMails(int)" );
139 { 141 env << m_newMails;
140 QCopEnvelope env( "QPE/Pim", "newMails(int)" ); 142 }
141 env << m_newMails; 143 setText(QString::number( m_newMails ));
142 } 144 }
143 setText(QString::number( m_newMails ));
144// repaint( true );
145 } else { 145 } else {
146 ODevice *device = ODevice::inst(); 146 ODevice *device = ODevice::inst();
147 if ( !isHidden() ) 147 if ( !isHidden() )
148 hide(); 148 hide();
149 if ( !device->ledList().isEmpty() ) {
150 OLed led = ( device->ledList().contains( Led_Mail ) ) ? Led_Mail : device->ledList()[0];
151 device->setLedState( led, Led_Off );
152 }
153
154 if ( newMailsOld != m_newMails ) { 149 if ( newMailsOld != m_newMails ) {
155 Config cfg( "mail" ); 150 ledOnOff(false);
156 cfg.setGroup( "Status" ); 151 m_config.setGroup( "Status" );
157 cfg.writeEntry( "newMails", m_newMails ); 152 m_config.writeEntry( "newMails", m_newMails );
158 QCopEnvelope env( "QPE/Pim", "newMails(int)" ); 153 QCopEnvelope env( "QPE/Pim", "newMails(int)" );
159 env << m_newMails; 154 env << m_newMails;
160 } 155 }
diff --git a/noncore/net/mail/taskbarapplet/mailapplet.h b/noncore/net/mail/taskbarapplet/mailapplet.h
index f28f274..f46bf19 100644
--- a/noncore/net/mail/taskbarapplet/mailapplet.h
+++ b/noncore/net/mail/taskbarapplet/mailapplet.h
@@ -21,13 +21,13 @@ protected:
21 void gotNewMail(); 21 void gotNewMail();
22 void mouseReleaseEvent( QMouseEvent* ); 22 void mouseReleaseEvent( QMouseEvent* );
23 void paintEvent( QPaintEvent* ); 23 void paintEvent( QPaintEvent* );
24 static void ledOnOff(bool);
24 25
25protected slots: 26protected slots:
26 void startup(); 27 void startup();
27 void slotCheck(); 28 void slotCheck();
28 void slotClicked(); 29 void slotClicked();
29private: 30private:
30 Config *m_config;
31 QTimer *m_intervalTimer; 31 QTimer *m_intervalTimer;
32 int m_intervalMs; 32 int m_intervalMs;
33 StatusMail* m_statusMail; 33 StatusMail* m_statusMail;