1 /* 2 * Copyright 2002-2007, 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 //Timezone messages 15 const uint32 H_REGION_CHANGED = 'h_RC'; 16 const uint32 H_CITY_CHANGED = 'h_CC'; 17 const uint32 H_CITY_SET = 'h_CS'; 18 19 20 //SetButton 21 const uint32 H_SET_TIME_ZONE = 'hSTZ'; 22 23 //local and GMT settings 24 const uint32 RTC_SETTINGS = 'RTse'; 25 26 // clock tick message 27 const uint32 H_TIME_UPDATE ='obTU'; 28 29 //notice for clock ticks 30 const uint32 H_TM_CHANGED = 'obTC'; 31 32 //notice for user changes 33 const uint32 H_USER_CHANGE = 'obUC'; 34 35 // local/ gmt radiobuttons 36 const uint32 kRTCUpdate = '_rtc'; 37 38 // sunday/ monday radio button 39 const uint32 kWeekStart = '_kws'; 40 41 // clicked on day in calendar 42 const uint32 kDayChanged = '_kdc'; 43 44 // clicked on revert button 45 const uint32 kMsgRevert = 'rvrt'; 46 47 #endif //TIME_MESSAGES_H 48 49