1 /* 2 3 TimeMessages.h 4 5 */ 6 7 #ifndef TIME_MESSAGES_H 8 #define TIME_MESSAGES_H 9 10 #define HAIKU_APP_SIGNATURE "application/x-vnd.Be-TIME" 11 12 const uint32 ERROR_DETECTED = 'ERor'; 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 // clicked on day in claendar 30 const uint32 H_DAY_CHANGED = 'obDC'; 31 32 //notice for clock ticks 33 const uint32 H_TM_CHANGED = 'obTC'; 34 35 //notice for user changes 36 const uint32 H_USER_CHANGE = 'obUC'; 37 38 // local/gmt radiobuttons 39 const uint32 H_RTC_CHANGE = 'obRC'; 40 41 #endif //TIME_MESSAGES_H 42