1 /* 2 * Copyright 2002-2010, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Andrew McCall, mccall@digitalparadise.co.uk 7 * Mike Berg <mike@berg-net.us> 8 * Julun <host.haiku@gmx.de> 9 * Philippe Saint-Pierre <stpere@gmail.com> 10 */ 11 #ifndef _TIME_MESSAGES_H 12 #define _TIME_MESSAGES_H 13 14 15 // Timezone messages 16 const uint32 H_CITY_CHANGED = 'h_CC'; 17 const uint32 H_CITY_SET = 'h_CS'; 18 19 // SetButton 20 const uint32 H_SET_TIME_ZONE = 'hSTZ'; 21 22 // local and GMT settings 23 const uint32 RTC_SETTINGS = 'RTse'; 24 25 // clock tick message 26 const uint32 H_TIME_UPDATE ='obTU'; 27 28 // notice for clock ticks 29 const uint32 H_TM_CHANGED = 'obTC'; 30 31 // notice for user changes 32 const uint32 H_USER_CHANGE = 'obUC'; 33 34 // notices to hide or show the time zone preview 35 const uint32 H_HIDE_PREVIEW = 'hipr'; 36 const uint32 H_SHOW_PREVIEW = 'shpr'; 37 38 // local/ gmt radiobuttons 39 const uint32 kRTCUpdate = '_rtc'; 40 41 // sunday/ monday radio button 42 const uint32 kWeekStart = '_kws'; 43 44 // clicked on day in calendar 45 const uint32 kDayChanged = '_kdc'; 46 47 // clicked on revert button 48 const uint32 kMsgRevert = 'rvrt'; 49 50 // something was changed 51 const uint32 kMsgChange = 'chng'; 52 53 // change time finished 54 const uint32 kChangeTimeFinished = 'tcfi'; 55 56 // GMT or localtime setting was changed 57 const uint32 kMsgClockSettingChanged = 'tsch'; 58 59 #endif // _TIME_MESSAGES_H 60 61