summaryrefslogtreecommitdiff
path: root/core/settings/citytime/citytime.h
Unidiff
Diffstat (limited to 'core/settings/citytime/citytime.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/citytime/citytime.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/core/settings/citytime/citytime.h b/core/settings/citytime/citytime.h
new file mode 100644
index 0000000..5a2c4d8
--- a/dev/null
+++ b/core/settings/citytime/citytime.h
@@ -0,0 +1,66 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20
21#ifndef TIMEWIDGETIMPL_H
22#define TIMEWIDGETIMPL_H
23
24#include <qlist.h>
25#include <qwidget.h>
26
27#include "citytimebase.h"
28
29const int CITIES = 6; // the number of cities...
30
31class ZoneMap;
32
33class CityTime : public CityTimeBase
34{
35 Q_OBJECT
36public:
37 CityTime(QWidget* parent = 0, const char *name = 0, WFlags fl = 0);
38 ~CityTime();
39
40public slots:
41 void beginNewTz();
42 void slotNewTz( const QString& strNewCountry, const QString& strNewCity );
43 void changeClock( bool newClock );
44
45protected:
46 void timerEvent( QTimerEvent* );
47 void mousePressEvent( QMouseEvent* event );
48
49private:
50 void showTime( void ); // get and show the time for various places...
51 void readInTimes( void ); // a method to get information from the config
52 QString strRealTz; // save the TZ var
53 QString nameRealTz; // and what it is called
54 QString strHome; // the home variable...
55 bool bAdded; // a flag to indicate things have been added...
56 bool bWhichClock;
57 int timerId;
58
59 // a spot to hold the time zone for each city
60 QString strCityTz[CITIES];
61 QList<QToolButton> listCities;
62 QList<QLabel> listTimes;
63 bool changed;
64};
65
66#endif