summaryrefslogtreecommitdiff
authortille <tille>2002-11-08 13:41:22 (UTC)
committer tille <tille>2002-11-08 13:41:22 (UTC)
commit34dcf50ed34915b0efa54e08baca33609304c478 (patch) (unidiff)
tree9a63caea3174b79c36a95bfdb0bd54e29de08d1e
parent2aa75fdaeb219fffef86af1a2ca0aac0ac6731ce (diff)
downloadopie-34dcf50ed34915b0efa54e08baca33609304c478.zip
opie-34dcf50ed34915b0efa54e08baca33609304c478.tar.gz
opie-34dcf50ed34915b0efa54e08baca33609304c478.tar.bz2
added messagebox that informs the user to install citytime
possibility to install automaticly would be nice...
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/tzselect.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/library/tzselect.cpp b/library/tzselect.cpp
index 2e5a433..335037e 100644
--- a/library/tzselect.cpp
+++ b/library/tzselect.cpp
@@ -20,24 +20,26 @@
20 20
21#define QTOPIA_INTERNAL_TZSELECT_INC_LOCAL 21#define QTOPIA_INTERNAL_TZSELECT_INC_LOCAL
22 22
23#include "tzselect.h" 23#include "tzselect.h"
24#include "resource.h" 24#include "resource.h"
25#include "global.h" 25#include "global.h"
26#include "config.h" 26#include "config.h"
27#include <qtoolbutton.h> 27#include <qtoolbutton.h>
28#include <qfile.h> 28#include <qfile.h>
29#include <stdlib.h> 29#include <stdlib.h>
30 30
31#include <qcopchannel_qws.h> 31#include <qcopchannel_qws.h>
32#include <qpe/qpeapplication.h>
33#include <qmessagebox.h>
32 34
33class TimeZoneSelectorPrivate 35class TimeZoneSelectorPrivate
34{ 36{
35public: 37public:
36 TimeZoneSelectorPrivate() : includeLocal(FALSE) {} 38 TimeZoneSelectorPrivate() : includeLocal(FALSE) {}
37 bool includeLocal; 39 bool includeLocal;
38}; 40};
39 41
40TZCombo::TZCombo( QWidget *p, const char* n ) 42TZCombo::TZCombo( QWidget *p, const char* n )
41 : QComboBox( p, n ) 43 : QComboBox( p, n )
42{ 44{
43 updateZones(); 45 updateZones();
@@ -235,26 +237,30 @@ QString TimeZoneSelector::currentZone() const
235void TimeZoneSelector::setCurrentZone( const QString& id ) 237void TimeZoneSelector::setCurrentZone( const QString& id )
236{ 238{
237 cmbTz->setCurrZone( id ); 239 cmbTz->setCurrZone( id );
238} 240}
239 241
240void TimeZoneSelector::slotTzActive( int ) 242void TimeZoneSelector::slotTzActive( int )
241{ 243{
242 emit signalNewTz( cmbTz->currZone() ); 244 emit signalNewTz( cmbTz->currZone() );
243} 245}
244 246
245void TimeZoneSelector::slotExecute( void ) 247void TimeZoneSelector::slotExecute( void )
246{ 248{
247 // execute the world time application... 249 // execute the world time application...
250 if (QFile::exists(QPEApplication::qpeDir()+"bin/citytime"))
248 Global::execute( "citytime" ); 251 Global::execute( "citytime" );
252 else
253 QMessageBox::warning(this,tr("citytime executable not found"),
254 tr("In order to choose the time zones,\nplease install citytime."));
249} 255}
250 256
251QStringList timezoneDefaults( void ) 257QStringList timezoneDefaults( void )
252{ 258{
253 QStringList tzs; 259 QStringList tzs;
254 // load up the list just like the file format (citytime.cpp) 260 // load up the list just like the file format (citytime.cpp)
255 tzs.append( "America/New_York" ); 261 tzs.append( "America/New_York" );
256 tzs.append( "New York" ); 262 tzs.append( "New York" );
257 tzs.append( "America/Los_Angeles" ); 263 tzs.append( "America/Los_Angeles" );
258 tzs.append( "Los Angeles" ); 264 tzs.append( "Los Angeles" );
259 tzs.append( "Australia/Brisbane" ); 265 tzs.append( "Australia/Brisbane" );
260 tzs.append( "Brisbane" ); 266 tzs.append( "Brisbane" );