-rw-r--r-- | library/tzselect.cpp | 125 |
1 files changed, 63 insertions, 62 deletions
diff --git a/library/tzselect.cpp b/library/tzselect.cpp index 6cc0bea..e16b8d4 100644 --- a/library/tzselect.cpp +++ b/library/tzselect.cpp | |||
@@ -48,19 +48,19 @@ TZCombo::TZCombo( QWidget *p, const char* n ) | |||
48 | if (parent()->inherits("TimeZoneSelector")) { | 48 | if (parent()->inherits("TimeZoneSelector")) { |
49 | if ( ((TimeZoneSelector *)parent())->localIncluded() ) { | 49 | if ( ((TimeZoneSelector *)parent())->localIncluded() ) { |
50 | // overide to the 'local' type. | 50 | // overide to the 'local' type. |
51 | tz = "None"; | 51 | tz = "None"; |
52 | } | 52 | } |
53 | } | 53 | } |
54 | if ( !tz.isNull() ) { | 54 | if ( !tz.isNull() ) { |
55 | int n = 0, | 55 | int n = 0, |
56 | index = 0; | 56 | index = 0; |
57 | for ( QStringList::Iterator it=identifiers.begin(); | 57 | for ( QStringList::Iterator it=identifiers.begin(); |
58 | it!=identifiers.end(); ++it) { | 58 | it!=identifiers.end(); ++it) { |
59 | if ( *it == tz ) | 59 | if ( *it == tz ) |
60 | index = n; | 60 | index = n; |
61 | n++; | 61 | n++; |
62 | } | 62 | } |
63 | setCurrentItem(index); | 63 | setCurrentItem(index); |
64 | } else { | 64 | } else { |
65 | setCurrentItem(0); | 65 | setCurrentItem(0); |
66 | } | 66 | } |
@@ -74,3 +74,3 @@ TZCombo::TZCombo( QWidget *p, const char* n ) | |||
74 | connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), | 74 | connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), |
75 | this, SLOT(handleSystemChannel(const QCString&, const QByteArray&)) ); | 75 | this, SLOT(handleSystemChannel(const QCString&, const QByteArray&)) ); |
76 | #endif | 76 | #endif |
@@ -97,10 +97,10 @@ void TZCombo::updateZones() | |||
97 | if (parent()->inherits("TimeZoneSelector")) { | 97 | if (parent()->inherits("TimeZoneSelector")) { |
98 | if ( ((TimeZoneSelector *)parent())->localIncluded() ) { | 98 | if ( ((TimeZoneSelector *)parent())->localIncluded() ) { |
99 | // overide to the 'local' type. | 99 | // overide to the 'local' type. |
100 | identifiers.append( "None" ); | 100 | identifiers.append( "None" ); |
101 | insertItem( tr("None") ); | 101 | insertItem( tr("None") ); |
102 | if ( cur == tr("None")) | 102 | if ( cur == tr("None")) |
103 | curix = 0; | 103 | curix = 0; |
104 | listIndex++; | 104 | listIndex++; |
105 | } | 105 | } |
106 | } | 106 | } |
@@ -108,14 +108,14 @@ void TZCombo::updateZones() | |||
108 | while (1) { | 108 | while (1) { |
109 | QString zn = cfg.readEntry("Zone"+QString::number(cfgIndex), QString::null); | 109 | QString zn = cfg.readEntry("Zone"+QString::number(cfgIndex), QString::null); |
110 | if ( zn.isNull() ) | 110 | if ( zn.isNull() ) |
111 | break; | 111 | break; |
112 | if ( zn == tz ) | 112 | if ( zn == tz ) |
113 | tzFound = TRUE; | 113 | tzFound = TRUE; |
114 | QString nm = cfg.readEntry("ZoneName"+QString::number(cfgIndex)); | 114 | QString nm = cfg.readEntry("ZoneName"+QString::number(cfgIndex)); |
115 | identifiers.append(zn); | 115 | identifiers.append(zn); |
116 | insertItem(nm); | 116 | insertItem(nm); |
117 | if ( nm == cur ) | 117 | if ( nm == cur ) |
118 | curix = listIndex; | 118 | curix = listIndex; |
119 | ++cfgIndex; | 119 | ++cfgIndex; |
120 | ++listIndex; | 120 | ++listIndex; |
121 | } | 121 | } |
@@ -124,11 +124,11 @@ void TZCombo::updateZones() | |||
124 | for ( QStringList::Iterator it = list.begin(); it!=list.end(); ++it ) { | 124 | for ( QStringList::Iterator it = list.begin(); it!=list.end(); ++it ) { |
125 | QString zn = *it; | 125 | QString zn = *it; |
126 | QString nm = *++it; | 126 | QString nm = *++it; |
127 | if ( zn == tz ) | 127 | if ( zn == tz ) |
128 | tzFound = TRUE; | 128 | tzFound = TRUE; |
129 | if ( nm == cur ) | 129 | if ( nm == cur ) |
130 | curix = listIndex; | 130 | curix = listIndex; |
131 | identifiers.append(zn); | 131 | identifiers.append(zn); |
132 | insertItem(nm); | 132 | insertItem(nm); |
133 | ++listIndex; | 133 | ++listIndex; |
134 | } | 134 | } |
@@ -136,16 +136,16 @@ void TZCombo::updateZones() | |||
136 | for (QStringList::Iterator it=extras.begin(); it!=extras.end(); ++it) { | 136 | for (QStringList::Iterator it=extras.begin(); it!=extras.end(); ++it) { |
137 | insertItem(*it); | 137 | insertItem(*it); |
138 | identifiers.append(*it); | 138 | identifiers.append(*it); |
139 | if ( *it == cur ) | 139 | if ( *it == cur ) |
140 | curix = listIndex; | 140 | curix = listIndex; |
141 | ++listIndex; | 141 | ++listIndex; |
142 | } | 142 | } |
143 | if ( !tzFound && !tz.isEmpty()) { | 143 | if ( !tzFound && !tz.isEmpty()) { |
144 | int i = tz.find( '/' ); | 144 | int i = tz.find( '/' ); |
145 | QString nm = tz.mid( i+1 ).replace(QRegExp("_"), " "); | 145 | QString nm = tz.mid( i+1 ).replace(QRegExp("_"), " "); |
146 | identifiers.append(tz); | 146 | identifiers.append(tz); |
147 | insertItem(nm); | 147 | insertItem(nm); |
148 | if ( nm == cur ) | 148 | if ( nm == cur ) |
149 | curix = listIndex; | 149 | curix = listIndex; |
150 | ++listIndex; | 150 | ++listIndex; |
151 | } | 151 | } |
@@ -177,6 +177,6 @@ void TZCombo::setCurrZone( const QString& id ) | |||
177 | for (int i=0; i< count(); i++) { | 177 | for (int i=0; i< count(); i++) { |
178 | if ( identifiers[i] == id ) { | 178 | if ( identifiers[i] == id ) { |
179 | setCurrentItem(i); | 179 | setCurrentItem(i); |
180 | return; | 180 | return; |
181 | } | 181 | } |
182 | } | 182 | } |
@@ -193,3 +193,3 @@ void TZCombo::handleSystemChannel(const QCString&msg, const QByteArray&) | |||
193 | if ( msg == "timeZoneListChange()" ) { | 193 | if ( msg == "timeZoneListChange()" ) { |
194 | updateZones(); | 194 | updateZones(); |
195 | } | 195 | } |
@@ -251,3 +251,3 @@ void TimeZoneSelector::slotExecute( void ) | |||
251 | // execute the world time application... | 251 | // execute the world time application... |
252 | Global::execute( "worldtime" ); | 252 | Global::execute( "citytime" ); |
253 | } | 253 | } |
@@ -264,8 +264,9 @@ QStringList timezoneDefaults( void ) | |||
264 | tzs.append( "Brisbane" ); | 264 | tzs.append( "Brisbane" ); |
265 | tzs.append( "Europe/Oslo" ); | 265 | tzs.append( "Europe/Berlin" ); |
266 | tzs.append( "Oslo" ); | 266 | tzs.append( "Berlin" ); |
267 | tzs.append( "Asia/Tokyo" ); | 267 | tzs.append( "Asia/Tokyo" ); |
268 | tzs.append( "Tokyo" ); | 268 | tzs.append( "Tokyo" ); |
269 | tzs.append( "Asia/Hong_Kong" ); | 269 | tzs.append( "America/Denver" ); |
270 | tzs.append( "Hong Kong" ); | 270 | tzs.append( "Denver" ); |
271 | |||
271 | return tzs; | 272 | return tzs; |