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 */ 10 #ifndef TIME_MESSAGES_H 11 #define TIME_MESSAGES_H 12 13 //Timezone messages 14 const uint32 H_REGION_CHANGED = 'h_RC'; 15 const uint32 H_CITY_CHANGED = 'h_CC'; 16 const uint32 H_CITY_SET = 'h_CS'; 17 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 // local/ gmt radiobuttons 35 const uint32 kRTCUpdate = '_rtc'; 36 37 // sunday/ monday radio button 38 const uint32 kWeekStart = '_kws'; 39 40 // clicked on day in calendar 41 const uint32 kDayChanged = '_kdc'; 42 43 #endif //TIME_MESSAGES_H 44 45