-rw-r--r-- | library/alarmserver.cpp | 11 | ||||
-rw-r--r-- | library/qpeapplication.cpp | 2 |
2 files changed, 2 insertions, 11 deletions
diff --git a/library/alarmserver.cpp b/library/alarmserver.cpp index 7e6e515..5e4dd18 100644 --- a/library/alarmserver.cpp +++ b/library/alarmserver.cpp | |||
@@ -127,74 +127,65 @@ void AlarmServer::initialize() | |||
127 | { | 127 | { |
128 | //read autosave file and put events in timerEventList | 128 | //read autosave file and put events in timerEventList |
129 | 129 | ||
130 | QString savefilename = Global::applicationFileName( "AlarmServer", "saveFile" ); | 130 | QString savefilename = Global::applicationFileName( "AlarmServer", "saveFile" ); |
131 | 131 | ||
132 | QFile savefile(savefilename); | 132 | QFile savefile(savefilename); |
133 | if ( savefile.open(IO_ReadOnly) ) { | 133 | if ( savefile.open(IO_ReadOnly) ) { |
134 | QDataStream ds( &savefile ); | 134 | QDataStream ds( &savefile ); |
135 | while ( !ds.atEnd() ) { | 135 | while ( !ds.atEnd() ) { |
136 | timerEventItem *newTimerEventItem = new timerEventItem; | 136 | timerEventItem *newTimerEventItem = new timerEventItem; |
137 | ds >> newTimerEventItem->UTCtime; | 137 | ds >> newTimerEventItem->UTCtime; |
138 | ds >> newTimerEventItem->channel; | 138 | ds >> newTimerEventItem->channel; |
139 | ds >> newTimerEventItem->message; | 139 | ds >> newTimerEventItem->message; |
140 | ds >> newTimerEventItem->data; | 140 | ds >> newTimerEventItem->data; |
141 | timerEventList.append( newTimerEventItem ); | 141 | timerEventList.append( newTimerEventItem ); |
142 | } | 142 | } |
143 | savefile.close(); | 143 | savefile.close(); |
144 | if (!timerEventReceiver) | 144 | if (!timerEventReceiver) |
145 | timerEventReceiver = new TimerReceiverObject; | 145 | timerEventReceiver = new TimerReceiverObject; |
146 | setNearestTimerEvent(); | 146 | setNearestTimerEvent(); |
147 | } | 147 | } |
148 | } | 148 | } |
149 | 149 | ||
150 | 150 | ||
151 | 151 | ||
152 | 152 | ||
153 | static const char* atdir = "/var/spool/at/"; | 153 | static const char* atdir = "/var/spool/at/"; |
154 | 154 | ||
155 | static bool triggerAtd( bool writeHWClock = FALSE ) | 155 | static bool triggerAtd( bool writeHWClock = FALSE ) |
156 | { | 156 | { |
157 | QFile trigger(QString(atdir) + "trigger"); | 157 | QFile trigger(QString(atdir) + "trigger"); |
158 | if ( trigger.open(IO_WriteOnly|IO_Raw) ) { | 158 | if ( trigger.open(IO_WriteOnly|IO_Raw) ) { |
159 | 159 | if ( trigger.writeBlock("\n",2) != 2 ) { | |
160 | const char* data = | ||
161 | #ifdef QT_QWS_SHARP | ||
162 | //custom atd only writes HW Clock if we write a 'W' | ||
163 | ( writeHWClock ) ? "W\n" : | ||
164 | #endif | ||
165 | data = "\n"; | ||
166 | int len = strlen(data); | ||
167 | int total_written = trigger.writeBlock(data,len); | ||
168 | if ( total_written != len ) { | ||
169 | QMessageBox::critical( 0, QObject::tr( "Out of Space" ), | 160 | QMessageBox::critical( 0, QObject::tr( "Out of Space" ), |
170 | QObject::tr( "Unable to schedule alarm.\nFree some memory and try again." ) ); | 161 | QObject::tr( "Unable to schedule alarm.\nFree some memory and try again." ) ); |
171 | trigger.close(); | 162 | trigger.close(); |
172 | QFile::remove( trigger.name() ); | 163 | QFile::remove( trigger.name() ); |
173 | return FALSE; | 164 | return FALSE; |
174 | } | 165 | } |
175 | return TRUE; | 166 | return TRUE; |
176 | } | 167 | } |
177 | return FALSE; | 168 | return FALSE; |
178 | } | 169 | } |
179 | 170 | ||
180 | void TimerReceiverObject::deleteTimer() | 171 | void TimerReceiverObject::deleteTimer() |
181 | { | 172 | { |
182 | if ( !atfilename.isEmpty() ) { | 173 | if ( !atfilename.isEmpty() ) { |
183 | unlink( atfilename ); | 174 | unlink( atfilename ); |
184 | atfilename = QString::null; | 175 | atfilename = QString::null; |
185 | triggerAtd( FALSE ); | 176 | triggerAtd( FALSE ); |
186 | } | 177 | } |
187 | } | 178 | } |
188 | 179 | ||
189 | void TimerReceiverObject::resetTimer() | 180 | void TimerReceiverObject::resetTimer() |
190 | { | 181 | { |
191 | const int maxsecs = 2147000; | 182 | const int maxsecs = 2147000; |
192 | int total_written; | 183 | int total_written; |
193 | QDateTime nearest = TimeConversion::fromUTC(nearestTimerEvent->UTCtime); | 184 | QDateTime nearest = TimeConversion::fromUTC(nearestTimerEvent->UTCtime); |
194 | QDateTime now = QDateTime::currentDateTime(); | 185 | QDateTime now = QDateTime::currentDateTime(); |
195 | if ( nearest < now ) | 186 | if ( nearest < now ) |
196 | nearest = now; | 187 | nearest = now; |
197 | int secs = TimeConversion::secsTo( now, nearest ); | 188 | int secs = TimeConversion::secsTo( now, nearest ); |
198 | if ( secs > maxsecs ) { | 189 | if ( secs > maxsecs ) { |
199 | // too far for millisecond timing | 190 | // too far for millisecond timing |
200 | secs = maxsecs; | 191 | secs = maxsecs; |
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 65fac84..efa65bc 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -1608,65 +1608,65 @@ void QPEApplication::tryQuit() | |||
1608 | } | 1608 | } |
1609 | #endif | 1609 | #endif |
1610 | processEvents(); | 1610 | processEvents(); |
1611 | 1611 | ||
1612 | quit(); | 1612 | quit(); |
1613 | } | 1613 | } |
1614 | 1614 | ||
1615 | /*! | 1615 | /*! |
1616 | \internal | 1616 | \internal |
1617 | User initiated quit. Makes the window 'Go Away'. If preloaded this means | 1617 | User initiated quit. Makes the window 'Go Away'. If preloaded this means |
1618 | hiding the window. If not it means quitting the application. | 1618 | hiding the window. If not it means quitting the application. |
1619 | As this is user initiated we don't need to check state. | 1619 | As this is user initiated we don't need to check state. |
1620 | */ | 1620 | */ |
1621 | void QPEApplication::hideOrQuit() | 1621 | void QPEApplication::hideOrQuit() |
1622 | { | 1622 | { |
1623 | processEvents(); | 1623 | processEvents(); |
1624 | 1624 | ||
1625 | // If we are a preloaded application we don't actually quit, so emit | 1625 | // If we are a preloaded application we don't actually quit, so emit |
1626 | // a System message indicating we're quasi-closing. | 1626 | // a System message indicating we're quasi-closing. |
1627 | if ( d->preloaded && d->qpe_main_widget ) | 1627 | if ( d->preloaded && d->qpe_main_widget ) |
1628 | #ifndef QT_NO_COP | 1628 | #ifndef QT_NO_COP |
1629 | 1629 | ||
1630 | { | 1630 | { |
1631 | QCopEnvelope e("QPE/System", "fastAppHiding(QString)" ); | 1631 | QCopEnvelope e("QPE/System", "fastAppHiding(QString)" ); |
1632 | e << d->appName; | 1632 | e << d->appName; |
1633 | d->qpe_main_widget->hide(); | 1633 | d->qpe_main_widget->hide(); |
1634 | } | 1634 | } |
1635 | #endif | 1635 | #endif |
1636 | else | 1636 | else |
1637 | quit(); | 1637 | quit(); |
1638 | } | 1638 | } |
1639 | 1639 | ||
1640 | #if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) | 1640 | #if defined(QT_QWS_IPAQ) || defined(QT_QWS_SHARP) |
1641 | 1641 | ||
1642 | // The libraries with the skiff package (and possibly others) have | 1642 | // The libraries with the skiff package (and possibly others) have |
1643 | // completely useless implementations of builtin new and delete that | 1643 | // completely useless implementations of builtin new and delete that |
1644 | // use about 50% of your CPU. Here we revert to the simple libc | 1644 | // use about 50% of your CPU. Here we revert to the simple libc |
1645 | // functions. | 1645 | // functions. |
1646 | 1646 | ||
1647 | void* operator new[]( size_t size ) | 1647 | void* operator new[]( size_t size ) |
1648 | { | 1648 | { |
1649 | return malloc( size ); | 1649 | return malloc( size ); |
1650 | } | 1650 | } |
1651 | 1651 | ||
1652 | void* operator new( size_t size ) | 1652 | void* operator new( size_t size ) |
1653 | { | 1653 | { |
1654 | return malloc( size ); | 1654 | return malloc( size ); |
1655 | } | 1655 | } |
1656 | 1656 | ||
1657 | void operator delete[]( void* p ) | 1657 | void operator delete[]( void* p ) |
1658 | { | 1658 | { |
1659 | free( p ); | 1659 | free( p ); |
1660 | } | 1660 | } |
1661 | 1661 | ||
1662 | void operator delete[]( void* p, size_t /*size*/ ) | 1662 | void operator delete[]( void* p, size_t /*size*/ ) |
1663 | { | 1663 | { |
1664 | free( p ); | 1664 | free( p ); |
1665 | } | 1665 | } |
1666 | 1666 | ||
1667 | void operator delete( void* p ) | 1667 | void operator delete( void* p ) |
1668 | { | 1668 | { |
1669 | free( p ); | 1669 | free( p ); |
1670 | } | 1670 | } |
1671 | 1671 | ||
1672 | void operator delete( void* p, size_t /*size*/ ) | 1672 | void operator delete( void* p, size_t /*size*/ ) |