xref: /haiku/src/preferences/time/TimeMessages.h (revision 3e58fe9e70709527da3672ed1f8d8e6935da2c54)
1a10cf76eSAxel Dörfler /*
242b3a11fSStephan Aßmus  * Copyright 2002-2007, Haiku. All rights reserved.
342b3a11fSStephan Aßmus  * Distributed under the terms of the MIT License.
442b3a11fSStephan Aßmus  *
542b3a11fSStephan Aßmus  * Authors:
642b3a11fSStephan Aßmus  *		Andrew McCall, mccall@digitalparadise.co.uk
700826781SKarsten Heimrich  *		Mike Berg <mike@berg-net.us>
842b3a11fSStephan Aßmus  *		Julun <host.haiku@gmx.de>
91cae077aSStephan Aßmus  *		Philippe Saint-Pierre <stpere@gmail.com>
10a10cf76eSAxel Dörfler  */
11a10cf76eSAxel Dörfler #ifndef TIME_MESSAGES_H
12a10cf76eSAxel Dörfler #define TIME_MESSAGES_H
13a10cf76eSAxel Dörfler 
14a10cf76eSAxel Dörfler //Timezone messages
15a10cf76eSAxel Dörfler const uint32 H_REGION_CHANGED = 'h_RC';
16a10cf76eSAxel Dörfler const uint32 H_CITY_CHANGED = 'h_CC';
17a10cf76eSAxel Dörfler const uint32 H_CITY_SET = 'h_CS';
18a10cf76eSAxel Dörfler 
19a10cf76eSAxel Dörfler 
20a10cf76eSAxel Dörfler //SetButton
21a10cf76eSAxel Dörfler const uint32 H_SET_TIME_ZONE = 'hSTZ';
22a10cf76eSAxel Dörfler 
23a10cf76eSAxel Dörfler //local and GMT settings
24a10cf76eSAxel Dörfler const uint32 RTC_SETTINGS = 'RTse';
25a10cf76eSAxel Dörfler 
26a10cf76eSAxel Dörfler // clock tick message
27a10cf76eSAxel Dörfler const uint32 H_TIME_UPDATE ='obTU';
28a10cf76eSAxel Dörfler 
29a10cf76eSAxel Dörfler //notice for clock ticks
30a10cf76eSAxel Dörfler const uint32 H_TM_CHANGED = 'obTC';
31a10cf76eSAxel Dörfler 
32a10cf76eSAxel Dörfler //notice for user changes
33a10cf76eSAxel Dörfler const uint32 H_USER_CHANGE = 'obUC';
34a10cf76eSAxel Dörfler 
35a10cf76eSAxel Dörfler // local/ gmt radiobuttons
363ad1de3bSKarsten Heimrich const uint32 kRTCUpdate = '_rtc';
37a10cf76eSAxel Dörfler 
3842b3a11fSStephan Aßmus // sunday/ monday radio button
3942b3a11fSStephan Aßmus const uint32 kWeekStart = '_kws';
4042b3a11fSStephan Aßmus 
4100826781SKarsten Heimrich // clicked on day in calendar
4200826781SKarsten Heimrich const uint32 kDayChanged = '_kdc';
4300826781SKarsten Heimrich 
441cae077aSStephan Aßmus // clicked on revert button
451cae077aSStephan Aßmus const uint32 kMsgRevert = 'rvrt';
461cae077aSStephan Aßmus 
47*3e58fe9eSStephan Aßmus // change time finished
48*3e58fe9eSStephan Aßmus const uint32 kChangeTimeFinished = 'tcfi';
49*3e58fe9eSStephan Aßmus 
50a10cf76eSAxel Dörfler #endif //TIME_MESSAGES_H
5153d9356eSStephan Aßmus 
52