summaryrefslogtreecommitdiff
path: root/noncore/settings/netsystemtime/timetabwidget.h
Unidiff
Diffstat (limited to 'noncore/settings/netsystemtime/timetabwidget.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/netsystemtime/timetabwidget.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/noncore/settings/netsystemtime/timetabwidget.h b/noncore/settings/netsystemtime/timetabwidget.h
new file mode 100644
index 0000000..f44a1da
--- a/dev/null
+++ b/noncore/settings/netsystemtime/timetabwidget.h
@@ -0,0 +1,77 @@
1/*
2                This file is part of the OPIE Project
3 =.
4             .=l. Copyright (c) 2002 OPIE team <opie@handhelds.org?>
5           .>+-=
6 _;:,     .>    :=|. This file is free software; you can
7.> <`_,   >  .   <= redistribute it and/or modify it under
8:`=1 )Y*s>-.--   : the terms of the GNU General Public
9.="- .-=="i,     .._ License as published by the Free Software
10 - .   .-<_>     .<> Foundation; either version 2 of the License,
11     ._= =}       : or (at your option) any later version.
12    .%`+i>       _;_.
13    .i_,=:_.      -<s. This file is distributed in the hope that
14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
15    : ..    .:,     . . . without even the implied warranty of
16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU General
18..}^=.=       =       ; Public License for more details.
19++=   -.     .`     .:
20 :     =  ...= . :.=- You should have received a copy of the GNU
21 -.   .:....=;==+<; General Public License along with this file;
22  -_. . .   )=.  = see the file COPYING. If not, write to the
23    --        :-=` Free Software Foundation, Inc.,
24 59 Temple Place - Suite 330,
25 Boston, MA 02111-1307, USA.
26
27*/
28
29#ifndef TIMETABWIDGET_H
30#define TIMETABWIDGET_H
31
32#include <qwidget.h>
33
34class DateButton;
35class DateFormat;
36class QComboBox;
37class QDateTime;
38class QSpinBox;
39class TimeZoneSelector;
40
41class TimeTabWidget : public QWidget
42{
43 Q_OBJECT
44
45public:
46 TimeTabWidget( QWidget * = 0x0 );
47 ~TimeTabWidget();
48
49 void saveSettings( bool );
50 void setDateTime( const QDateTime & );
51
52private:
53 QSpinBox *sbHour;
54 QSpinBox *sbMin;
55 QComboBox *cbAmpm;
56 DateButton *btnDate;
57 TimeZoneSelector *selTimeZone;
58
59 bool use12HourTime;
60
61 void setSystemTime( const QDateTime & );
62
63signals:
64 void tzChanged( const QString & );
65 void getNTPTime();
66 void getPredictedTime();
67
68public slots:
69 void slotUse12HourTime( int );
70 void slotDateFormatChanged( const DateFormat & );
71 void slotWeekStartChanged( int );
72
73private slots:
74 void slotTZChanged( const QString & );
75};
76
77#endif