ID.java 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953
  1. /*
  2. * Copyright (C) 2014 Android WallPad Project
  3. *
  4. * FileName : ID.java
  5. * Project : Android WallPad Project
  6. * Company : HDC I-CONTROLS ( www.icontrols.co.kr )
  7. * Author : Jeffrey Nam , jeffnam0524@gmail.com
  8. */
  9. package kr.co.icontrols.wallpadmain.declare;
  10. import android.util.Log;
  11. public final class ID {
  12. public static final class ACTIVITIES {
  13. // [Activity]
  14. public final static int MainActivity = 100000;
  15. public final static int PopupActivity = 200000;
  16. public final static int ManualActivity = 300000;
  17. }
  18. /* ==========================================================================
  19. * ==========================================================================
  20. * MainActivity
  21. * ==========================================================================
  22. * ========================================================================== */
  23. public static final class MAINACTIVITY {
  24. final static int BASE = ACTIVITIES.MainActivity;
  25. public static final class LAYOUT {
  26. public final static int ALL = BASE + 10000;
  27. public final static int TOP = BASE + 20000;
  28. public final static int TAB = BASE + 30000;
  29. public final static int SCREEN = BASE + 40000;
  30. public final static int SURFACE = BASE + 50000;
  31. public final static int MYVIDEO = BASE + 60000;
  32. public final static int REMOTEVIDEO = BASE + 70000;
  33. public final static int REMOTEVIDEOCOVER = BASE + 80000;
  34. public final static int FRONTVIDEO = BASE + 90000;
  35. }
  36. public static final class IMAGE {
  37. public final static int TOP_BACKGROUND = BASE + 100;
  38. public final static int TOP_TITLE = BASE + 101;
  39. }
  40. public static final class BUTTON {
  41. public final static int HOME = BASE + 200;
  42. public final static int BACK = BASE + 201;
  43. public final static int INFO = BASE + 202;
  44. }
  45. public static final class TEXT {
  46. public final static int REMOTE_ID = BASE + 300;
  47. }
  48. }
  49. /* ==========================================================================
  50. * ==========================================================================
  51. * PopupActivity
  52. * ==========================================================================
  53. * ========================================================================== */
  54. public static final class POPUPACTIVITY {
  55. final static int BASE = ACTIVITIES.PopupActivity;
  56. public static final class LAYOUT {
  57. public final static int ALL = BASE + 10000;
  58. public final static int SURFACE = BASE + 20000;
  59. public final static int VIDEO_FRONT = BASE + 30000;
  60. public final static int VIDEO_LOBBY = BASE + 40000;
  61. }
  62. public static final class IMAGE {
  63. }
  64. public static final class BUTTON {
  65. }
  66. public static final class TEXT {
  67. }
  68. }
  69. /* ==========================================================================
  70. * ==========================================================================
  71. * ManualActivity
  72. * ==========================================================================
  73. * ========================================================================== */
  74. public static final class MANUALACTIVITY {
  75. final static int BASE = ACTIVITIES.ManualActivity;
  76. public static final class LAYOUT {
  77. public final static int ALL = BASE + 10000;
  78. }
  79. public static final class IMAGE {
  80. }
  81. public static final class BUTTON {
  82. }
  83. public static final class TEXT {
  84. }
  85. }
  86. public static final class TOP {
  87. public final static int BASE = MAINACTIVITY.LAYOUT.TOP;
  88. public static final class IMAGE {
  89. public final static int TOP_BACKGROUND = BASE + 100;
  90. public final static int TOP_TITLE = BASE + 101;
  91. }
  92. public static final class BUTTON {
  93. public final static int HOME = BASE + 200;
  94. public final static int BACK = BASE + 201;
  95. }
  96. }
  97. /**
  98. * 월패드 메인화면에서 서브화면을 호출할때 전달되어야할 데이터 리스트
  99. */
  100. public static final class TAB {
  101. public final static int BASE = MAINACTIVITY.LAYOUT.TAB;
  102. // [Talk]
  103. public final static int TAB_TALKFRONT = BASE + 11; // 현관통화
  104. public final static int TAB_TALKLOBBY = BASE + 21; // 로비통화
  105. public final static int TAB_TALKGUARD = BASE + 31; // 경비통화
  106. public final static int TAB_TALKRESIDENCE = BASE + 41; // 세대통화
  107. public final static int TAB_TALKPSTN = BASE + 51; // 국선통화
  108. // [Inquiry]
  109. public final static int TAB_INQUIRYCALLHISTORY = BASE + 61; // 통화내역 조회
  110. public final static int TAB_INQUIRYVISITORPIC = BASE + 71; // 방문자 사진 조회
  111. public static final class BUTTON {
  112. public final static int HOME = BASE + 200;
  113. public final static int BACK = BASE + 201;
  114. public final static int TAB1_FRONT = BASE + 210; // 현관통화
  115. public final static int TAB2_LOBBY = BASE + 211; // 로비통화
  116. public final static int TAB3_GUARD = BASE + 212; // 경비통화
  117. public final static int TAB4_RESIDENCE = BASE + 213; // 이웃통화
  118. public final static int TAB5_PSTN = BASE + 214; // 국선통화
  119. public final static int TAB6_CALLHISTORY = BASE + 215; // 통화내역
  120. public final static int TAB7_VISITORPIC = BASE + 216; // 방문자 영상
  121. public final static int TAB_NEXT = BASE + 217;
  122. public final static int HIDE1 = BASE + 220;
  123. public final static int HIDE2 = BASE + 221;
  124. }
  125. }
  126. /* ==========================================================================
  127. * ==========================================================================
  128. * screen
  129. * ==========================================================================
  130. * ========================================================================== */
  131. public static final class SCREENS {
  132. // [Talk]
  133. public final static int SCREEN_MAIN = 11000; // 메인화면
  134. public final static int SCREEN_SUB_01 = 12000; // 앱모음 화면
  135. public final static int SCREEN_SUB_02 = 13000; // 앱모음 화면
  136. public final static int SCREEN_METROUI_MAIN = 21000; // 메인화면 (메트로 UI, 보급형 월패드)
  137. public final static int SCREEN_METROUI_SUB_01 = 22000; // 서브화면 (메트로 UI, 보급형 월패드)
  138. public final static int SCREEN_METROUI_SUB_02 = 23000; // 서브화면 (메트로 UI, 보급형 월패드)
  139. public final static int SCREEN_METROUI_GROUP = 24000; // 서브화면 (메트로 UI, 보급형 월패드, 서브메뉴 그룹화)
  140. public final static int SCREEN_HYOSUNGUI_MAIN_HN = 25000; // 메인화면 (효성중공업, 제어있음)
  141. public final static int SCREEN_HYOSUNGUI_MAIN_HA = 26000; // 메인화면 (효성중공업, 제어없음)
  142. public final static int SCREEN_EASYUI_MAIN = 27000; // 메인화면 (간편모드)
  143. /* ==========================================================================
  144. * ==========================================================================
  145. * 화면 클래스 ID_OLD 정의
  146. * ==========================================================================
  147. * ========================================================================== */
  148. /**
  149. * 메인화면
  150. */
  151. public class MAIN {
  152. protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_MAIN;
  153. public final class ELEMENTS {
  154. public final class IMAGES {
  155. public final static int BACKGROUND = BASE + 100;
  156. public final static int CALENDAR_YEAR_THOUSANDS = BASE + 101;
  157. public final static int CALENDAR_YEAR_HUNDREDS = BASE + 102;
  158. public final static int CALENDAR_YEAR_TENS = BASE + 103;
  159. public final static int CALENDAR_YEAR_UNITS = BASE + 104;
  160. public final static int CALENDAR_DOT_01= BASE + 105;
  161. public final static int CALENDAR_MONTH_TENS = BASE + 106;
  162. public final static int CALENDAR_MONTH_UNITS = BASE + 107;
  163. public final static int CALENDAR_DOT_02= BASE + 108;
  164. public final static int CALENDAR_DATE_TENS = BASE + 109;
  165. public final static int CALENDAR_DATE_UNITS = BASE + 110;
  166. public final static int CALENDAR_WEEKDAY = BASE + 111;
  167. public final static int WEATHER = BASE + 112;
  168. public final static int TIME_HOUR_TENS = BASE + 113;
  169. public final static int TIME_HOUR_UNITS = BASE + 114;
  170. public final static int TIME_COLON = BASE + 115;
  171. public final static int TIME_MIN_TENS = BASE + 116;
  172. public final static int TIME_MIN_UNITS = BASE + 117;
  173. public final static int PAGEINDICATOR_MAIN = BASE + 118;
  174. public final static int PAGEINDICATOR_SUB_01 = BASE + 119;
  175. public final static int PAGEINDICATOR_SUB_02 = BASE + 120;
  176. }
  177. public final class BTNS {
  178. public final static int SHORTCUT_1_1 = BASE + 200;
  179. public final static int SHORTCUT_1_2 = BASE + 201;
  180. public final static int SHORTCUT_1_3 = BASE + 202;
  181. public final static int SHORTCUT_1_4 = BASE + 203;
  182. public final static int SHORTCUT_2_1 = BASE + 204;
  183. public final static int SHORTCUT_2_2 = BASE + 205;
  184. public final static int SHORTCUT_2_3 = BASE + 206;
  185. public final static int SHORTCUT_2_4 = BASE + 207;
  186. public final static int SHORTCUT_3_1 = BASE + 208;
  187. public final static int SHORTCUT_3_2 = BASE + 209;
  188. public final static int SHORTCUT_3_3 = BASE + 210;
  189. public final static int SHORTCUT_3_4 = BASE + 211;
  190. public final static int LIGHT_PRESET_01 = BASE + 212;
  191. public final static int LIGHT_PRESET_02 = BASE + 213;
  192. public final static int LIGHT_PRESET_03 = BASE + 214;
  193. public final static int LIGHT_PRESET_04 = BASE + 215;
  194. public final static int LIGHT_PRESET_01_DIMMING = BASE + 216;
  195. public final static int LIGHT_PRESET_02_DIMMING = BASE + 217;
  196. public final static int LIGHT_PRESET_03_DIMMING = BASE + 218;
  197. public final static int LIGHT_PRESET_04_DIMMING = BASE + 219;
  198. public final static int CALENDAR = BASE + 220;
  199. public final static int WEATHER = BASE + 221;
  200. public final static int CLOCK = BASE + 222;
  201. public final static int NOTIFICATION_01 = BASE + 223;
  202. public final static int NOTIFICATION_02 = BASE + 224;
  203. public final static int NOTIFICATION_03 = BASE + 225;
  204. public final static int NOTIFICATION_04 = BASE + 226;
  205. public final static int NOTIFICATION_05 = BASE + 237;
  206. public final static int LIGHT_HDCLIVING_01 = BASE + 238;
  207. public final static int LIGHT_HDCLIVING_02 = BASE + 239;
  208. public final static int LIGHT_HDCLIVING_03 = BASE + 240;
  209. public final static int LIGHT_HDCLIVING_04 = BASE + 241;
  210. public final static int LIGHT_HDCLIVING_05 = BASE + 242;
  211. public final static int LIGHT_HDCLIVING_06 = BASE + 243;
  212. }
  213. public final class TEXTS {
  214. public final static int SHORTCUT_1_1 = BASE + 300;
  215. public final static int SHORTCUT_1_2 = BASE + 301;
  216. public final static int SHORTCUT_1_3 = BASE + 302;
  217. public final static int SHORTCUT_1_4 = BASE + 303;
  218. public final static int SHORTCUT_2_1 = BASE + 304;
  219. public final static int SHORTCUT_2_2 = BASE + 305;
  220. public final static int SHORTCUT_2_3 = BASE + 306;
  221. public final static int SHORTCUT_2_4 = BASE + 307;
  222. public final static int SHORTCUT_3_1 = BASE + 308;
  223. public final static int SHORTCUT_3_2 = BASE + 309;
  224. public final static int SHORTCUT_3_3 = BASE + 310;
  225. public final static int SHORTCUT_3_4 = BASE + 311;
  226. public final static int DATETIME = BASE + 312;
  227. }
  228. }
  229. }
  230. public class SUB_01 {
  231. protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_SUB_01;
  232. public final class ELEMENTS {
  233. public final class IMAGES {
  234. public final static int BACKGROUND = BASE + 100;
  235. public final static int PAGEINDICATOR_MAIN = BASE + 101;
  236. public final static int PAGEINDICATOR_SUB_01 = BASE + 102;
  237. public final static int PAGEINDICATOR_SUB_02 = BASE + 103;
  238. }
  239. public final class BTNS {
  240. public final static int BASIC_ICON_1_1 = BASE + 200;
  241. public final static int BASIC_ICON_1_2 = BASE + 201;
  242. public final static int BASIC_ICON_1_3 = BASE + 202;
  243. public final static int BASIC_ICON_1_4 = BASE + 203;
  244. public final static int BASIC_ICON_1_5 = BASE + 204;
  245. public final static int BASIC_ICON_1_6 = BASE + 205;
  246. public final static int BASIC_ICON_1_7 = BASE + 206;
  247. public final static int BASIC_ICON_1_8 = BASE + 207;
  248. public final static int BASIC_ICON_2_1 = BASE + 208;
  249. public final static int BASIC_ICON_2_2 = BASE + 209;
  250. public final static int BASIC_ICON_2_3 = BASE + 210;
  251. public final static int BASIC_ICON_2_4 = BASE + 211;
  252. public final static int BASIC_ICON_2_5 = BASE + 212;
  253. public final static int BASIC_ICON_2_6 = BASE + 213;
  254. public final static int BASIC_ICON_2_7 = BASE + 214;
  255. public final static int BASIC_ICON_2_8 = BASE + 215;
  256. public final static int BASIC_ICON_3_1 = BASE + 216;
  257. public final static int BASIC_ICON_3_2 = BASE + 217;
  258. public final static int BASIC_ICON_3_3 = BASE + 218;
  259. public final static int BASIC_ICON_3_4 = BASE + 219;
  260. public final static int BASIC_ICON_3_5 = BASE + 220;
  261. public final static int BASIC_ICON_3_6 = BASE + 221;
  262. public final static int BASIC_ICON_3_7 = BASE + 222;
  263. public final static int BASIC_ICON_3_8 = BASE + 223;
  264. }
  265. public final class TEXTS {
  266. public final static int BASIC_ICON_1_1 = BASE + 300;
  267. public final static int BASIC_ICON_1_2 = BASE + 301;
  268. public final static int BASIC_ICON_1_3 = BASE + 302;
  269. public final static int BASIC_ICON_1_4 = BASE + 303;
  270. public final static int BASIC_ICON_1_5 = BASE + 304;
  271. public final static int BASIC_ICON_1_6 = BASE + 305;
  272. public final static int BASIC_ICON_1_7 = BASE + 306;
  273. public final static int BASIC_ICON_1_8 = BASE + 307;
  274. public final static int BASIC_ICON_2_1 = BASE + 308;
  275. public final static int BASIC_ICON_2_2 = BASE + 309;
  276. public final static int BASIC_ICON_2_3 = BASE + 310;
  277. public final static int BASIC_ICON_2_4 = BASE + 311;
  278. public final static int BASIC_ICON_2_5 = BASE + 312;
  279. public final static int BASIC_ICON_2_6 = BASE + 313;
  280. public final static int BASIC_ICON_2_7 = BASE + 314;
  281. public final static int BASIC_ICON_2_8 = BASE + 315;
  282. public final static int BASIC_ICON_3_1 = BASE + 316;
  283. public final static int BASIC_ICON_3_2 = BASE + 317;
  284. public final static int BASIC_ICON_3_3 = BASE + 318;
  285. public final static int BASIC_ICON_3_4 = BASE + 319;
  286. public final static int BASIC_ICON_3_5 = BASE + 320;
  287. public final static int BASIC_ICON_3_6 = BASE + 321;
  288. public final static int BASIC_ICON_3_7 = BASE + 322;
  289. public final static int BASIC_ICON_3_8 = BASE + 323;
  290. }
  291. }
  292. }
  293. public class SUB_02 {
  294. protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_SUB_02;
  295. public final class ELEMENTS {
  296. public final class IMAGES {
  297. public final static int BACKGROUND = BASE + 100;
  298. public final static int PAGEINDICATOR_MAIN = BASE + 101;
  299. public final static int PAGEINDICATOR_SUB_01 = BASE + 102;
  300. public final static int PAGEINDICATOR_SUB_02 = BASE + 103;
  301. }
  302. public final class BTNS {
  303. public final static int BASIC_ICON_1_1 = BASE + 200;
  304. public final static int BASIC_ICON_1_2 = BASE + 201;
  305. public final static int BASIC_ICON_1_3 = BASE + 202;
  306. public final static int BASIC_ICON_1_4 = BASE + 203;
  307. public final static int BASIC_ICON_1_5 = BASE + 204;
  308. public final static int BASIC_ICON_1_6 = BASE + 205;
  309. public final static int BASIC_ICON_1_7 = BASE + 206;
  310. public final static int BASIC_ICON_1_8 = BASE + 207;
  311. public final static int BASIC_ICON_2_1 = BASE + 208;
  312. public final static int BASIC_ICON_2_2 = BASE + 209;
  313. public final static int BASIC_ICON_2_3 = BASE + 210;
  314. public final static int BASIC_ICON_2_4 = BASE + 211;
  315. public final static int BASIC_ICON_2_5 = BASE + 212;
  316. public final static int BASIC_ICON_2_6 = BASE + 213;
  317. public final static int BASIC_ICON_2_7 = BASE + 214;
  318. public final static int BASIC_ICON_2_8 = BASE + 215;
  319. public final static int BASIC_ICON_3_1 = BASE + 216;
  320. public final static int BASIC_ICON_3_2 = BASE + 217;
  321. public final static int BASIC_ICON_3_3 = BASE + 218;
  322. public final static int BASIC_ICON_3_4 = BASE + 219;
  323. public final static int BASIC_ICON_3_5 = BASE + 220;
  324. public final static int BASIC_ICON_3_6 = BASE + 221;
  325. public final static int BASIC_ICON_3_7 = BASE + 222;
  326. public final static int BASIC_ICON_3_8 = BASE + 223;
  327. }
  328. public final class TEXTS {
  329. public final static int BASIC_ICON_1_1 = BASE + 300;
  330. public final static int BASIC_ICON_1_2 = BASE + 301;
  331. public final static int BASIC_ICON_1_3 = BASE + 302;
  332. public final static int BASIC_ICON_1_4 = BASE + 303;
  333. public final static int BASIC_ICON_1_5 = BASE + 304;
  334. public final static int BASIC_ICON_1_6 = BASE + 305;
  335. public final static int BASIC_ICON_1_7 = BASE + 306;
  336. public final static int BASIC_ICON_1_8 = BASE + 307;
  337. public final static int BASIC_ICON_2_1 = BASE + 308;
  338. public final static int BASIC_ICON_2_2 = BASE + 309;
  339. public final static int BASIC_ICON_2_3 = BASE + 310;
  340. public final static int BASIC_ICON_2_4 = BASE + 311;
  341. public final static int BASIC_ICON_2_5 = BASE + 312;
  342. public final static int BASIC_ICON_2_6 = BASE + 313;
  343. public final static int BASIC_ICON_2_7 = BASE + 314;
  344. public final static int BASIC_ICON_2_8 = BASE + 315;
  345. public final static int BASIC_ICON_3_1 = BASE + 316;
  346. public final static int BASIC_ICON_3_2 = BASE + 317;
  347. public final static int BASIC_ICON_3_3 = BASE + 318;
  348. public final static int BASIC_ICON_3_4 = BASE + 319;
  349. public final static int BASIC_ICON_3_5 = BASE + 320;
  350. public final static int BASIC_ICON_3_6 = BASE + 321;
  351. public final static int BASIC_ICON_3_7 = BASE + 322;
  352. public final static int BASIC_ICON_3_8 = BASE + 323;
  353. }
  354. }
  355. }
  356. public class MAIN_METROUI {
  357. protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_METROUI_MAIN;
  358. public final class ELEMENTS {
  359. public final class IMAGES {
  360. public final static int BACKGROUND = BASE + 100;
  361. public final static int BACK_EVENT = BASE + 101;
  362. public final static int WEATHER = BASE + 102;
  363. public final static int NEW_NOTIFICATION = BASE + 103;
  364. }
  365. public final class BTNS {
  366. public final static int CLOCK = BASE + 200;
  367. public final static int CALENDAR = BASE + 201;
  368. public final static int WEATHER = BASE + 202;
  369. public final static int TALK_GUARD = BASE + 203;
  370. public final static int SECURITY_MAIN = BASE + 204;
  371. public final static int ELEVATOR = BASE + 205;
  372. public final static int ICONS_SMALL = BASE + 206;
  373. public final static int ICONS_BIG = BASE + 207;
  374. public final static int MANUAL = BASE + 208;
  375. public final static int NOTIFICATION_01 = BASE + 209;
  376. public final static int NOTIFICATION_02 = BASE + 210;
  377. public final static int NOTIFICATION_03 = BASE + 211;
  378. public final static int NOTIFICATION_04 = BASE + 212;
  379. public final static int NOTIFICATION_05 = BASE + 213;
  380. }
  381. public final class TEXTS {
  382. public final static int CLOCK = BASE + 300;
  383. public final static int AMPM = BASE + 301;
  384. public final static int CALENDAR_YEAR_MONTH = BASE + 302;
  385. public final static int CALENDAR_DATE = BASE + 303;
  386. public final static int CALENDAR_DAYOFWEEK = BASE + 304;
  387. public final static int TEMPERATURE_LOWEST_HIGHEST = BASE + 305;
  388. public final static int TEMPERATURE_CURRENT = BASE + 306;
  389. public final static int RAINFALL_PROBABILITY_AM = BASE + 307;
  390. public final static int RAINFALL_PROBABILITY_PM = BASE + 308;
  391. public final static int WEATHER_CURRENT = BASE + 309;
  392. }
  393. public final class OBJECTS {
  394. public final static int ANALOGCLOCK = BASE + 400;
  395. }
  396. }
  397. }
  398. public class SUB_METROUI_01 {
  399. protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_METROUI_SUB_01;
  400. public final class ELEMENTS {
  401. public final class IMAGES {
  402. public final static int BACKGROUND = BASE + 100;
  403. public final static int PAGEINDICATOR_SUB_01 = BASE + 101;
  404. public final static int PAGEINDICATOR_SUB_02 = BASE + 102;
  405. }
  406. public final class BTNS {
  407. public final static int BASIC_ICON_1_1 = BASE + 200;
  408. public final static int BASIC_ICON_1_2 = BASE + 201;
  409. public final static int BASIC_ICON_1_3 = BASE + 202;
  410. public final static int BASIC_ICON_2_1 = BASE + 203;
  411. public final static int BASIC_ICON_2_2 = BASE + 204;
  412. public final static int BASIC_ICON_2_3 = BASE + 205;
  413. public final static int BASIC_ICON_3_1 = BASE + 206;
  414. public final static int BASIC_ICON_3_2 = BASE + 207;
  415. public final static int BASIC_ICON_3_3 = BASE + 208;
  416. public final static int BASIC_ICON_4_1 = BASE + 209;
  417. public final static int BASIC_ICON_4_2 = BASE + 210;
  418. public final static int BASIC_ICON_4_3 = BASE + 211;
  419. public final static int BASIC_ICON_5_1 = BASE + 212;
  420. public final static int BASIC_ICON_5_2 = BASE + 213;
  421. public final static int BASIC_ICON_5_3 = BASE + 214;
  422. }
  423. public final class TEXTS {
  424. }
  425. }
  426. }
  427. public class SUB_METROUI_02 {
  428. protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_METROUI_SUB_02;
  429. public final class ELEMENTS {
  430. public final class IMAGES {
  431. public final static int BACKGROUND = BASE + 100;
  432. public final static int PAGEINDICATOR_SUB_01 = BASE + 101;
  433. public final static int PAGEINDICATOR_SUB_02 = BASE + 102;
  434. }
  435. public final class BTNS {
  436. public final static int BASIC_ICON_1_1 = BASE + 200;
  437. public final static int BASIC_ICON_1_2 = BASE + 201;
  438. public final static int BASIC_ICON_1_3 = BASE + 202;
  439. public final static int BASIC_ICON_2_1 = BASE + 203;
  440. public final static int BASIC_ICON_2_2 = BASE + 204;
  441. public final static int BASIC_ICON_2_3 = BASE + 205;
  442. public final static int BASIC_ICON_3_1 = BASE + 206;
  443. public final static int BASIC_ICON_3_2 = BASE + 207;
  444. public final static int BASIC_ICON_3_3 = BASE + 208;
  445. public final static int BASIC_ICON_4_1 = BASE + 209;
  446. public final static int BASIC_ICON_4_2 = BASE + 210;
  447. public final static int BASIC_ICON_4_3 = BASE + 211;
  448. public final static int BASIC_ICON_5_1 = BASE + 212;
  449. public final static int BASIC_ICON_5_2 = BASE + 213;
  450. public final static int BASIC_ICON_5_3 = BASE + 214;
  451. }
  452. public final class TEXTS {
  453. }
  454. }
  455. }
  456. public class SUB_METROUI_GROUP {
  457. protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_METROUI_GROUP;
  458. public final class ELEMENTS {
  459. public final class IMAGES {
  460. public final static int BACKGROUND = BASE + 100;
  461. }
  462. public final class BTNS {
  463. public final static int CTRL = BASE + 200;
  464. public final static int TALK = BASE + 201;
  465. public final static int SECURITY = BASE + 202;
  466. public final static int ADDITION = BASE + 203;
  467. public final static int ENERGY = BASE + 204;
  468. public final static int SETTING = BASE + 205;
  469. public final static int HOME = BASE + 206;
  470. public final static int MANUAL = BASE + 207;
  471. }
  472. public final class TEXTS {
  473. }
  474. }
  475. }
  476. public class MAIN_HYOSUNGUI_HN {
  477. protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_HYOSUNGUI_MAIN_HN;
  478. public final class ELEMENTS {
  479. public final class IMAGES {
  480. public final static int BACKGROUND = BASE + 100;
  481. public final static int BACK_LINE_1 = BASE + 101;
  482. public final static int WEATHER = BASE + 102;
  483. }
  484. public final class BTNS {
  485. public final static int FUNCTION_1_1 = BASE + 200;
  486. public final static int FUNCTION_1_2 = BASE + 201;
  487. public final static int FUNCTION_1_3 = BASE + 202;
  488. public final static int FUNCTION_1_4 = BASE + 203;
  489. public final static int FUNCTION_2_1 = BASE + 204;
  490. public final static int FUNCTION_2_2 = BASE + 205;
  491. public final static int FUNCTION_2_3 = BASE + 206;
  492. public final static int FUNCTION_2_4 = BASE + 207;
  493. public final static int FUNCTION_3_1 = BASE + 208;
  494. public final static int FUNCTION_3_2 = BASE + 209;
  495. public final static int FUNCTION_3_3 = BASE + 210;
  496. public final static int NOTIFICATION_01 = BASE + 211;
  497. public final static int NOTIFICATION_02 = BASE + 212;
  498. public final static int NOTIFICATION_03 = BASE + 213;
  499. public final static int NOTIFICATION_04 = BASE + 214;
  500. public final static int NOTIFICATION_05 = BASE + 215;
  501. public final static int MANUAL = BASE + 216;
  502. }
  503. public final class TEXTS {
  504. public final static int CALENDAR_DAYOFWEEK = BASE + 300;
  505. public final static int CLOCK = BASE + 301;
  506. public final static int TEMPERATURE_CURRENT = BASE + 302;
  507. public final static int TEMPERATURE_LOWEST_HIGHEST = BASE + 303;
  508. }
  509. public final class OBJECTS {
  510. public final static int ANALOGCLOCK = BASE + 400;
  511. }
  512. }
  513. }
  514. public class MAIN_HYOSUNGUI_HA {
  515. protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_HYOSUNGUI_MAIN_HA;
  516. public final class ELEMENTS {
  517. public final class IMAGES {
  518. public final static int BACKGROUND = BASE + 100;
  519. public final static int BACK_LINE_1 = BASE + 101;
  520. public final static int WEATHER = BASE + 102;
  521. }
  522. public final class BTNS {
  523. public final static int FUNCTION_1_1 = BASE + 200;
  524. public final static int FUNCTION_1_2 = BASE + 201;
  525. public final static int FUNCTION_1_3 = BASE + 202;
  526. public final static int FUNCTION_2_1 = BASE + 203;
  527. public final static int FUNCTION_2_2 = BASE + 204;
  528. public final static int FUNCTION_2_3 = BASE + 205;
  529. public final static int FUNCTION_3_1 = BASE + 206;
  530. public final static int FUNCTION_3_2 = BASE + 207;
  531. public final static int NOTIFICATION_01 = BASE + 208;
  532. public final static int NOTIFICATION_02 = BASE + 209;
  533. public final static int NOTIFICATION_03 = BASE + 210;
  534. public final static int NOTIFICATION_04 = BASE + 211;
  535. public final static int NOTIFICATION_05 = BASE + 212;
  536. public final static int MANUAL = BASE + 213;
  537. }
  538. public final class TEXTS {
  539. public final static int CALENDAR_DAYOFWEEK = BASE + 300;
  540. public final static int CLOCK = BASE + 301;
  541. public final static int TEMPERATURE_CURRENT = BASE + 302;
  542. public final static int TEMPERATURE_LOWEST_HIGHEST = BASE + 303;
  543. }
  544. public final class OBJECTS {
  545. public final static int ANALOGCLOCK = BASE + 400;
  546. }
  547. }
  548. }
  549. public class ESAYUI_MAIN {
  550. protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_EASYUI_MAIN;
  551. public final class ELEMENTS {
  552. public final class IMAGES {
  553. public final static int BACKGROUND = BASE + 100;
  554. public final static int WEATHER = BASE + 101;
  555. }
  556. public final class BTNS {
  557. public final static int CLOCK_CALENDAR = BASE + 200;
  558. public final static int WEATHER = BASE + 201;
  559. public final static int FUNCTION_1_1 = BASE + 202;
  560. public final static int FUNCTION_1_2 = BASE + 203;
  561. public final static int FUNCTION_1_3 = BASE + 204;
  562. public final static int FUNCTION_2_1 = BASE + 205;
  563. public final static int FUNCTION_2_2 = BASE + 206;
  564. public final static int FUNCTION_2_3 = BASE + 207;
  565. public final static int EVENTNOTIFICATION = BASE + 208;
  566. public final static int NOTIFICATION_00 = BASE + 209;
  567. public final static int NOTIFICATION_01 = BASE + 210;
  568. public final static int NOTIFICATION_02 = BASE + 211;
  569. public final static int NOTIFICATION_03 = BASE + 212;
  570. public final static int NOTIFICATION_04 = BASE + 213;
  571. public final static int NOTIFICATION_05 = BASE + 214;
  572. }
  573. public final class TEXTS {
  574. public final static int CLOCK = BASE + 300;
  575. public final static int CALENDAR = BASE + 301;
  576. public final static int TEMPERATURE_CURRENT = BASE + 302;
  577. public final static int EVENT_CNT = BASE + 303;
  578. }
  579. }
  580. }
  581. }
  582. /* ==========================================================================
  583. * ==========================================================================
  584. * popup
  585. * ==========================================================================
  586. * ========================================================================== */
  587. public static final class POPUPS {
  588. public final static int POPUP_ADMINPWINPUT = 20000;
  589. public final static int POPUP_ELEVATORCALL = 21000;
  590. public final static int POPUP_RELEASEINMODE = 22000;
  591. public final static int POPUP_DELETESHORTCUT = 23000;
  592. public final static int POPUP_ADDSHORTCUT = 24000;
  593. public final static int POPUP_NOMORESHORTCUT = 25000;
  594. public final static int POPUP_DUPLICATEDSHORTCUT = 26000;
  595. public final static int POPUP_COLLECTIVELIGHTCTRL = 27000;
  596. public final static int POPUP_RELEASEOUTMODE= 28000;
  597. public final static int POPUP_CHARGINGELECTRICVEHICLE = 29000;
  598. public final static int POPUP_EVENTNOTIFICATION = 30000;
  599. public final static int POPUP_CONFIGUREPRESET = 31000;
  600. public final static int POPUP_ENERGYMETERAGE = 32000;
  601. public final static int POPUP_DIAGNOSTICMODE = 33000;
  602. public final static int POPUP_MOODLAMP = 34000;
  603. public final static int POPUP_DEVICELOADING = 35000;
  604. public final static int POPUP_NOTICESTRANGER = 36000;
  605. public final static int POPUP_INTERFLOORNOISEOCCURED = 50000;
  606. public final static int POPUP_INTERFLOORNOISEERROR = 51000;
  607. public final static int POPUP_SMARTKEYEMERGENCY = 52000;
  608. public final static int POPUP_MORNINGCALL = 53000;
  609. public final static int POPUP_SCHEDULENOTIFICATION = 54000;
  610. public final static int POPUP_ENERGYUSAGEALERT = 55000;
  611. public final static int POPUP_VEHICLEARRIVED = 56000;
  612. public final static int POPUP_PARCELRECEIVED = 57000;
  613. public final static int POPUP_BANDLOCATIONALARM = 58000;
  614. public final static int POPUP_POSTRECEIVED = 59000;
  615. public final static int POPUP_GROUP_CTRL = 70000;
  616. public final static int POPUP_GROUP_TALK = 71000;
  617. public final static int POPUP_GROUP_SECURITY = 72000;
  618. public final static int POPUP_GROUP_ADD = 73000;
  619. public final static int POPUP_GROUP_ENERGY = 74000;
  620. public final static int POPUP_GROUP_SETTING = 75000;
  621. public class ADMINPWINPUT {
  622. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_ADMINPWINPUT;
  623. public final class ELEMENTS {
  624. public final class IMAGES {
  625. public final static int BACKGROUND = BASE + 100;
  626. public final static int BACK_PWINPUT = BASE + 101;
  627. public final static int PW_01 = BASE + 102;
  628. public final static int PW_02 = BASE + 103;
  629. public final static int PW_03 = BASE + 104;
  630. public final static int PW_04 = BASE + 105;
  631. }
  632. public final class BTNS {
  633. public final static int CLOSE = BASE + 200;
  634. public final static int NO_00 = BASE + 201;
  635. public final static int NO_01 = BASE + 202;
  636. public final static int NO_02 = BASE + 203;
  637. public final static int NO_03 = BASE + 204;
  638. public final static int NO_04 = BASE + 205;
  639. public final static int NO_05 = BASE + 206;
  640. public final static int NO_06 = BASE + 207;
  641. public final static int NO_07 = BASE + 208;
  642. public final static int NO_08 = BASE + 209;
  643. public final static int NO_09 = BASE + 210;
  644. public final static int BACK = BASE + 211;
  645. public final static int DELETE = BASE + 212;
  646. public final static int CONFIRM = BASE + 213;
  647. }
  648. public final class TEXTS {
  649. public final static int TITLE = BASE + 300;
  650. public final static int INSTRUCTION = BASE + 301;
  651. }
  652. }
  653. }
  654. public class ELEVATORCALL {
  655. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_ELEVATORCALL;
  656. public final class ELEMENTS {
  657. public final class IMAGES {
  658. public final static int BACKGROUND = BASE + 100;
  659. public final static int FLOOR_BACK = BASE + 101;
  660. public final static int UP = BASE + 102;
  661. public final static int DOWN = BASE +103;
  662. }
  663. public final class BTNS {
  664. public final static int UP = BASE + 200;
  665. public final static int DOWN = BASE + 201;
  666. }
  667. public final class TEXTS {
  668. public final static int FLOOR = BASE + 300;
  669. public final static int INSTRUCTION = BASE + 301;
  670. }
  671. }
  672. }
  673. public class DELETESHORTCUT {
  674. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_DELETESHORTCUT;
  675. public final class ELEMENTS {
  676. public final class IMAGES {
  677. public final static int BACKGROUND = BASE + 100;
  678. public final static int ICON = BASE + 101;
  679. }
  680. public final class BTNS {
  681. public final static int CONFIRM = BASE + 200;
  682. public final static int CANCEL = BASE + 201;
  683. }
  684. public final class TEXTS {
  685. public final static int INSTRUCTION = BASE + 300;
  686. }
  687. }
  688. }
  689. public class ADDSHORTCUT {
  690. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_ADDSHORTCUT;
  691. public final class ELEMENTS {
  692. public final class IMAGES {
  693. public final static int BACKGROUND = BASE + 100;
  694. public final static int ICON = BASE + 101;
  695. }
  696. public final class BTNS {
  697. public final static int CONFIRM = BASE + 200;
  698. public final static int CANCEL = BASE + 201;
  699. }
  700. public final class TEXTS {
  701. public final static int INSTRUCTION = BASE + 300;
  702. }
  703. }
  704. }
  705. public class NOMORESHORTCUT {
  706. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_NOMORESHORTCUT;
  707. public final class ELEMENTS {
  708. public final class IMAGES {
  709. public final static int BACKGROUND = BASE + 100;
  710. public final static int ICON = BASE + 101;
  711. }
  712. public final class BTNS {
  713. public final static int CONFIRM = BASE + 200;
  714. }
  715. public final class TEXTS {
  716. public final static int INSTRUCTION = BASE + 300;
  717. }
  718. }
  719. }
  720. public class DUPLICATEDSHORTCUT {
  721. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_DUPLICATEDSHORTCUT;
  722. public final class ELEMENTS {
  723. public final class IMAGES {
  724. public final static int BACKGROUND = BASE + 100;
  725. public final static int ICON = BASE + 101;
  726. }
  727. public final class BTNS {
  728. public final static int CONFIRM = BASE + 200;
  729. }
  730. public final class TEXTS {
  731. public final static int INSTRUCTION = BASE + 300;
  732. }
  733. }
  734. }
  735. public class VEHICLEARRIVED {
  736. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_VEHICLEARRIVED;
  737. public final class ELEMENTS {
  738. public final class IMAGES {
  739. public final static int BACKGROUND = BASE + 100;
  740. public final static int ICON = BASE + 101;
  741. }
  742. public final class BTNS {
  743. public final static int CONFIRM = BASE + 200;
  744. public final static int CANCEL = BASE + 201;
  745. }
  746. public final class TEXTS {
  747. public final static int INSTRUCTION = BASE + 300;
  748. }
  749. }
  750. }
  751. public class PARCELRECEIVED {
  752. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_PARCELRECEIVED;
  753. public final class ELEMENTS {
  754. public final class IMAGES {
  755. public final static int BACKGROUND = BASE + 100;
  756. public final static int ICON = BASE + 101;
  757. }
  758. public final class BTNS {
  759. public final static int CONFIRM = BASE + 200;
  760. }
  761. public final class TEXTS {
  762. public final static int INSTRUCTION = BASE + 300;
  763. }
  764. }
  765. }
  766. public class POSTRECEIVED {
  767. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_POSTRECEIVED;
  768. public final class ELEMENTS {
  769. public final class IMAGES {
  770. public final static int BACKGROUND = BASE + 100;
  771. public final static int ICON = BASE + 101;
  772. }
  773. public final class BTNS {
  774. public final static int CONFIRM = BASE + 200;
  775. }
  776. public final class TEXTS {
  777. public final static int INSTRUCTION = BASE + 300;
  778. }
  779. }
  780. }
  781. public class BANDALARMRECEIVED {
  782. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_BANDLOCATIONALARM;
  783. public final class ELEMENTS {
  784. public final class IMAGES {
  785. public final static int BACKGROUND = BASE + 100;
  786. public final static int ICON = BASE + 101;
  787. }
  788. public final class BTNS {
  789. public final static int CONFIRM = BASE + 200;
  790. public final static int CANCEL = BASE + 201;
  791. }
  792. public final class TEXTS {
  793. public final static int INSTRUCTION = BASE + 300;
  794. }
  795. }
  796. }
  797. public class NOTICESTRANGER {
  798. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_NOTICESTRANGER;
  799. public final class ELEMENTS {
  800. public final class IMAGES {
  801. public final static int BACKGROUND = BASE + 100;
  802. public final static int ICON = BASE + 101;
  803. }
  804. public final class BTNS {
  805. public final static int ACCEPT = BASE + 200;
  806. public final static int DECLINE = BASE + 201;
  807. }
  808. public final class TEXTS {
  809. public final static int REMOTE = BASE + 300;
  810. public final static int INSTRUCTION = BASE + 301;
  811. public final static int MENT = BASE + 302;
  812. }
  813. }
  814. }
  815. public class SMARTKEYEMERGENCY {
  816. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_SMARTKEYEMERGENCY;
  817. public final class ELEMENTS {
  818. public final class IMAGES {
  819. public final static int BACKGROUND = BASE + 100;
  820. public final static int ICON = BASE + 101;
  821. }
  822. public final class BTNS {
  823. public final static int CONFIRM = BASE + 200;
  824. }
  825. public final class TEXTS {
  826. public final static int INSTRUCTION = BASE + 300;
  827. }
  828. }
  829. }
  830. public class MORNINGCALL {
  831. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_MORNINGCALL;
  832. public final class ELEMENTS {
  833. public final class IMAGES {
  834. public final static int BACKGROUND = BASE + 100;
  835. public final static int ICON = BASE + 101;
  836. }
  837. public final class BTNS {
  838. public final static int CONFIRM = BASE + 200;
  839. }
  840. public final class TEXTS {
  841. public final static int INSTRUCTION = BASE + 300;
  842. }
  843. }
  844. }
  845. public class CHARGINGELECTRICVEHICLE {
  846. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_CHARGINGELECTRICVEHICLE;
  847. public final class ELEMENTS {
  848. public final class IMAGES {
  849. public final static int BACKGROUND = BASE + 100;
  850. public final static int ICON = BASE + 101;
  851. }
  852. public final class BTNS {
  853. public final static int CONFIRM = BASE + 200;
  854. public final static int CANCEL = BASE + 201;
  855. }
  856. public final class TEXTS {
  857. public final static int INSTRUCTION = BASE + 300;
  858. }
  859. }
  860. }
  861. public class RELEASEINMODE {
  862. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_RELEASEINMODE;
  863. public final class ELEMENTS {
  864. public final class IMAGES {
  865. public final static int BACKGROUND = BASE + 100;
  866. public final static int ICON = BASE + 101;
  867. }
  868. public final class BTNS {
  869. public final static int CONFIRM = BASE + 200;
  870. public final static int CANCEL = BASE + 201;
  871. }
  872. public final class TEXTS {
  873. public final static int INSTRUCTION = BASE + 300;
  874. }
  875. }
  876. }
  877. public class RELEASEOUTMODE {
  878. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_RELEASEOUTMODE;
  879. public final class ELEMENTS {
  880. public final class IMAGES {
  881. public final static int BACKGROUND = BASE + 100;
  882. public final static int ICON = BASE + 101;
  883. }
  884. public final class BTNS {
  885. public final static int CONFIRM = BASE + 200;
  886. public final static int CANCEL = BASE + 201;
  887. }
  888. public final class TEXTS {
  889. public final static int INSTRUCTION = BASE + 300;
  890. }
  891. }
  892. }
  893. public class SCHEDULENOTIFICATION {
  894. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_SCHEDULENOTIFICATION;
  895. public final class ELEMENTS {
  896. public final class IMAGES {
  897. public final static int BACKGROUND = BASE + 100;
  898. public final static int ICON = BASE + 101;
  899. }
  900. public final class BTNS {
  901. public final static int CONFIRM = BASE + 200;
  902. public final static int CANCEL = BASE + 201;
  903. }
  904. public final class TEXTS {
  905. public final static int INSTRUCTION = BASE + 300;
  906. }
  907. }
  908. }
  909. public class COLLECTIVELIGHTCTRL {
  910. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_COLLECTIVELIGHTCTRL;
  911. public final class ELEMENTS {
  912. public final class IMAGES {
  913. public final static int BACKGROUND = BASE + 100;
  914. public final static int ICON = BASE + 101;
  915. }
  916. public final class BTNS {
  917. public final static int COLLECTIVELIGHTOFF_ON = BASE + 200;
  918. public final static int COLLECTIVELIGHTOFF_OFF = BASE + 201;
  919. }
  920. public final class TEXTS {
  921. public final static int TITLE = BASE + 300;
  922. }
  923. }
  924. }
  925. public class ENERGYUSAGEALERT {
  926. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_ENERGYUSAGEALERT;
  927. public final class ELEMENTS {
  928. public final class IMAGES {
  929. public final static int BACKGROUND = BASE + 100;
  930. public final static int ICON = BASE + 101;
  931. }
  932. public final class BTNS {
  933. public final static int CONFIRM = BASE + 200;
  934. public final static int CANCEL = BASE + 201;
  935. }
  936. public final class TEXTS {
  937. public final static int INSTRUCTION = BASE + 300;
  938. }
  939. }
  940. }
  941. public class EVENTNOTIFICATION {
  942. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_EVENTNOTIFICATION;
  943. public final class ELEMENTS {
  944. public final class IMAGES {
  945. public final static int BACKGROUND = BASE + 100;
  946. }
  947. public final class BTNS {
  948. public final static int EXIT = BASE + 200;
  949. public final static int EVENT_01 = BASE + 201;
  950. public final static int EVENT_02 = BASE + 202;
  951. public final static int EVENT_03 = BASE + 203;
  952. public final static int EVENT_04 = BASE + 204;
  953. public final static int EVENT_05 = BASE + 205;
  954. public final static int EVENT_06 = BASE + 206;
  955. }
  956. public final class TEXTS {
  957. public final static int INSTRUCTION = BASE + 300;
  958. public final static int EVENT_01 = BASE + 301;
  959. public final static int EVENT_02 = BASE + 302;
  960. public final static int EVENT_03 = BASE + 303;
  961. public final static int EVENT_04 = BASE + 304;
  962. public final static int EVENT_05 = BASE + 305;
  963. public final static int EVENT_06 = BASE + 306;
  964. }
  965. }
  966. }
  967. public class CONFIGUREPRESET {
  968. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_CONFIGUREPRESET;
  969. public final class ELEMENTS {
  970. public final class IMAGES {
  971. public final static int BACKGROUND = BASE + 100;
  972. public final static int BACK_SEEKBAR_DIM = BASE + 102;
  973. public final static int BACK_SEEKBAR_COLOR = BASE + 103;
  974. }
  975. public final class BTNS {
  976. public final static int CLOSE = BASE + 200;
  977. public final static int SEEKBAR_DIM = BASE + 201;
  978. public final static int SEEKBAR_COLOR = BASE + 202;
  979. public final static int SAVE = BASE + 203;
  980. public final static int CANCEL = BASE + 204;
  981. }
  982. public final class TEXTS {
  983. public final static int TITLE = BASE + 300;
  984. public final static int SUBTITLE_01 = BASE + 301;
  985. public final static int SUBTITLE_02 = BASE + 302;
  986. }
  987. }
  988. }
  989. public class INTERFLOORNOISEOCCURED {
  990. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_INTERFLOORNOISEOCCURED;
  991. public final class ELEMENTS {
  992. public final class IMAGES {
  993. public final static int BACKGROUND = BASE + 100;
  994. public final static int ICON = BASE + 101;
  995. }
  996. public final class BTNS {
  997. public final static int CONFIRM = BASE + 200;
  998. }
  999. public final class TEXTS {
  1000. public final static int INSTRUCTION = BASE + 300;
  1001. }
  1002. }
  1003. }
  1004. public class INTERFLOORNOISEERROR {
  1005. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_INTERFLOORNOISEERROR;
  1006. public final class ELEMENTS {
  1007. public final class IMAGES {
  1008. public final static int BACKGROUND = BASE + 100;
  1009. public final static int ICON = BASE + 101;
  1010. }
  1011. public final class BTNS {
  1012. public final static int CONFIRM = BASE + 200;
  1013. }
  1014. public final class TEXTS {
  1015. public final static int INSTRUCTION = BASE + 300;
  1016. }
  1017. }
  1018. }
  1019. public class DEVICELOADING {
  1020. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_DEVICELOADING;
  1021. public final class ELEMENTS {
  1022. public final class IMAGES {
  1023. public final static int BACKGROUND = BASE + 100;
  1024. public final static int ICON = BASE + 101;
  1025. }
  1026. public final class BTNS {
  1027. public final static int CONFIRM = BASE + 200;
  1028. }
  1029. public final class TEXTS {
  1030. public final static int INSTRUCTION = BASE + 300;
  1031. }
  1032. }
  1033. }
  1034. public class GROUPCTRL {
  1035. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_CTRL;
  1036. public final class ELEMENTS {
  1037. public final class IMAGES {
  1038. public final static int BACKGROUND = BASE + 100;
  1039. }
  1040. public final class BTNS {
  1041. public final static int CLOSE = BASE + 200;
  1042. public final static int ICON_01 = BASE + 201;
  1043. public final static int ICON_02 = BASE + 202;
  1044. public final static int ICON_03 = BASE + 203;
  1045. public final static int ICON_04 = BASE + 204;
  1046. public final static int ICON_05 = BASE + 205;
  1047. public final static int ICON_06 = BASE + 206;
  1048. public final static int ICON_07 = BASE + 207;
  1049. public final static int ICON_08 = BASE + 208;
  1050. }
  1051. public final class TEXTS {
  1052. public final static int TITLE = BASE + 300;
  1053. public final static int ICON_01 = BASE + 301;
  1054. public final static int ICON_02 = BASE + 302;
  1055. public final static int ICON_03 = BASE + 303;
  1056. public final static int ICON_04 = BASE + 304;
  1057. public final static int ICON_05 = BASE + 305;
  1058. public final static int ICON_06 = BASE + 306;
  1059. public final static int ICON_07 = BASE + 307;
  1060. public final static int ICON_08 = BASE + 308;
  1061. }
  1062. }
  1063. }
  1064. public class GROUPTALK {
  1065. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_TALK;
  1066. public final class ELEMENTS {
  1067. public final class IMAGES {
  1068. public final static int BACKGROUND = BASE + 100;
  1069. }
  1070. public final class BTNS {
  1071. public final static int CLOSE = BASE + 200;
  1072. public final static int ICON_01 = BASE + 201;
  1073. public final static int ICON_02 = BASE + 202;
  1074. public final static int ICON_03 = BASE + 203;
  1075. public final static int ICON_04 = BASE + 204;
  1076. public final static int ICON_05 = BASE + 205;
  1077. public final static int ICON_06 = BASE + 206;
  1078. public final static int ICON_07 = BASE + 207;
  1079. public final static int ICON_08 = BASE + 208;
  1080. }
  1081. public final class TEXTS {
  1082. public final static int TITLE = BASE + 300;
  1083. public final static int ICON_01 = BASE + 301;
  1084. public final static int ICON_02 = BASE + 302;
  1085. public final static int ICON_03 = BASE + 303;
  1086. public final static int ICON_04 = BASE + 304;
  1087. public final static int ICON_05 = BASE + 305;
  1088. public final static int ICON_06 = BASE + 306;
  1089. public final static int ICON_07 = BASE + 307;
  1090. public final static int ICON_08 = BASE + 308;
  1091. }
  1092. }
  1093. }
  1094. public class GROUPSECURITY {
  1095. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_SECURITY;
  1096. public final class ELEMENTS {
  1097. public final class IMAGES {
  1098. public final static int BACKGROUND = BASE + 100;
  1099. }
  1100. public final class BTNS {
  1101. public final static int CLOSE = BASE + 200;
  1102. public final static int ICON_01 = BASE + 201;
  1103. public final static int ICON_02 = BASE + 202;
  1104. public final static int ICON_03 = BASE + 203;
  1105. public final static int ICON_04 = BASE + 204;
  1106. public final static int ICON_05 = BASE + 205;
  1107. public final static int ICON_06 = BASE + 206;
  1108. public final static int ICON_07 = BASE + 207;
  1109. public final static int ICON_08 = BASE + 208;
  1110. }
  1111. public final class TEXTS {
  1112. public final static int TITLE = BASE + 300;
  1113. public final static int ICON_01 = BASE + 301;
  1114. public final static int ICON_02 = BASE + 302;
  1115. public final static int ICON_03 = BASE + 303;
  1116. public final static int ICON_04 = BASE + 304;
  1117. public final static int ICON_05 = BASE + 305;
  1118. public final static int ICON_06 = BASE + 306;
  1119. public final static int ICON_07 = BASE + 307;
  1120. public final static int ICON_08 = BASE + 308;
  1121. }
  1122. }
  1123. }
  1124. public class GROUPADD {
  1125. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_ADD;
  1126. public final class ELEMENTS {
  1127. public final class IMAGES {
  1128. public final static int BACKGROUND = BASE + 100;
  1129. }
  1130. public final class BTNS {
  1131. public final static int CLOSE = BASE + 200;
  1132. public final static int PREVIOUS = BASE + 201;
  1133. public final static int NEXT = BASE + 202;
  1134. public final static int ICON_01 = BASE + 203;
  1135. public final static int ICON_02 = BASE + 204;
  1136. public final static int ICON_03 = BASE + 205;
  1137. public final static int ICON_04 = BASE + 206;
  1138. public final static int ICON_05 = BASE + 207;
  1139. public final static int ICON_06 = BASE + 208;
  1140. public final static int ICON_07 = BASE + 209;
  1141. public final static int ICON_08 = BASE + 210;
  1142. }
  1143. public final class TEXTS {
  1144. public final static int TITLE = BASE + 300;
  1145. public final static int ICON_01 = BASE + 301;
  1146. public final static int ICON_02 = BASE + 302;
  1147. public final static int ICON_03 = BASE + 303;
  1148. public final static int ICON_04 = BASE + 304;
  1149. public final static int ICON_05 = BASE + 305;
  1150. public final static int ICON_06 = BASE + 306;
  1151. public final static int ICON_07 = BASE + 307;
  1152. public final static int ICON_08 = BASE + 308;
  1153. }
  1154. }
  1155. }
  1156. public class GROUPENERGY {
  1157. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_ENERGY;
  1158. public final class ELEMENTS {
  1159. public final class IMAGES {
  1160. public final static int BACKGROUND = BASE + 100;
  1161. }
  1162. public final class BTNS {
  1163. public final static int CLOSE = BASE + 200;
  1164. public final static int ICON_01 = BASE + 201;
  1165. public final static int ICON_02 = BASE + 202;
  1166. public final static int ICON_03 = BASE + 203;
  1167. public final static int ICON_04 = BASE + 204;
  1168. public final static int ICON_05 = BASE + 205;
  1169. public final static int ICON_06 = BASE + 206;
  1170. public final static int ICON_07 = BASE + 207;
  1171. public final static int ICON_08 = BASE + 208;
  1172. }
  1173. public final class TEXTS {
  1174. public final static int TITLE = BASE + 300;
  1175. public final static int ICON_01 = BASE + 301;
  1176. public final static int ICON_02 = BASE + 302;
  1177. public final static int ICON_03 = BASE + 303;
  1178. public final static int ICON_04 = BASE + 304;
  1179. public final static int ICON_05 = BASE + 305;
  1180. public final static int ICON_06 = BASE + 306;
  1181. public final static int ICON_07 = BASE + 307;
  1182. public final static int ICON_08 = BASE + 308;
  1183. }
  1184. }
  1185. }
  1186. public class GROUPSETTING {
  1187. protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_SETTING;
  1188. public final class ELEMENTS {
  1189. public final class IMAGES {
  1190. public final static int BACKGROUND = BASE + 100;
  1191. }
  1192. public final class BTNS {
  1193. public final static int CLOSE = BASE + 200;
  1194. public final static int ICON_01 = BASE + 201;
  1195. public final static int ICON_02 = BASE + 202;
  1196. public final static int ICON_03 = BASE + 203;
  1197. public final static int ICON_04 = BASE + 204;
  1198. public final static int ICON_05 = BASE + 205;
  1199. public final static int ICON_06 = BASE + 206;
  1200. public final static int ICON_07 = BASE + 207;
  1201. public final static int ICON_08 = BASE + 208;
  1202. }
  1203. public final class TEXTS {
  1204. public final static int TITLE = BASE + 300;
  1205. public final static int ICON_01 = BASE + 301;
  1206. public final static int ICON_02 = BASE + 302;
  1207. public final static int ICON_03 = BASE + 303;
  1208. public final static int ICON_04 = BASE + 304;
  1209. public final static int ICON_05 = BASE + 305;
  1210. public final static int ICON_06 = BASE + 306;
  1211. public final static int ICON_07 = BASE + 307;
  1212. public final static int ICON_08 = BASE + 308;
  1213. }
  1214. }
  1215. }
  1216. }
  1217. /* ==========================================================================
  1218. * ==========================================================================
  1219. * info (화면 매뉴얼)
  1220. * ==========================================================================
  1221. * ========================================================================== */
  1222. public static final class MANUAL {
  1223. public final static int MANUAL_MAIN = 11000;
  1224. public final static int INFO_TALK_LOBBY = 12000;
  1225. public final static int INFO_TALK_GUARD = 13000;
  1226. public final static int INFO_TALK_RESIDENCE = 14000;
  1227. public final static int INFO_TALK_PSTN = 15000;
  1228. public final static int INFO_CALL_HISTORY = 16000;
  1229. public final static int INFO_VISITOR_PICTURE = 17000;
  1230. public final static int INFO_POPUP_MULTICALL_VIDEO = 18000;
  1231. public final static int INFO_POPUP_MULTICALL = 19000;
  1232. public final static int MANUAL_METROUI_MAIN = 20000;
  1233. public final static int MANUAL_METROUI_SUB_GROUP = 21000;
  1234. public final static int MANUAL_HYOSUNGUI_MAIN_HN = 22000;
  1235. public final static int MANUAL_ALL = 50000;
  1236. public final static class MANUALMAIN {
  1237. public static final class ELEMENTS {
  1238. final static int BASE = MANUAL_MAIN;
  1239. public static final class IMAGES {
  1240. public final static int BACKGROUND = BASE + 100;
  1241. public final static int GUIDE_01_WEATHER = BASE + 101;
  1242. public final static int GUIDE_01_CLOCK = BASE + 102;
  1243. public final static int GUIDE_01_SHORTCUT = BASE + 103;
  1244. public final static int GUIDE_02_MAINSCREEN_IHND101 = BASE + 104;
  1245. public final static int GUIDE_02_MAINSCREEN_IHN1010 = BASE + 105;
  1246. public final static int GUIDE_02_SHORTCUTEDIT = BASE + 106;
  1247. }
  1248. public static final class BTNS {
  1249. public final static int PREVIOUS = BASE + 200;
  1250. public final static int NEXT = BASE + 201;
  1251. }
  1252. public static final class TEXTS {
  1253. public final static int PAGE = BASE + 300;
  1254. public final static int GUIDE_01_INFO_WEATHER = BASE + 301;
  1255. public final static int GUIDE_01_INFO_CLOCK = BASE + 302;
  1256. public final static int GUIDE_01_INFO_SHORTCUT = BASE + 303;
  1257. public final static int GUIDE_02_TITLE_MAINSCREEN = BASE + 304;
  1258. public final static int GUIDE_02_INFO_MAINSCREEN_IHND101 = BASE + 305;
  1259. public final static int GUIDE_02_INFO_MAINSCREEN_IHN1010 = BASE + 306;
  1260. public final static int GUIDE_02_TITLE_SHORTCUTEDIT = BASE + 307;
  1261. public final static int GUIDE_02_SUBTITLE_SHORTCUTEDIT_01 = BASE + 308;
  1262. public final static int GUIDE_02_SUBTITLE_SHORTCUTEDIT_02 = BASE + 309;
  1263. public final static int GUIDE_02_INFO_SHORTCUTEDIT = BASE + 310;
  1264. }
  1265. }
  1266. }
  1267. public final static class MANUALMAINMETROUI01 {
  1268. public static final class ELEMENTS {
  1269. final static int BASE = MANUAL_METROUI_MAIN;
  1270. public static final class IMAGES {
  1271. public final static int BACKGROUND = BASE + 100;
  1272. public final static int GUIDE_CALENDAR = BASE + 101;
  1273. public final static int GUIDE_CLOCK = BASE + 102;
  1274. public final static int GUIDE_WEATHER = BASE + 103;
  1275. public final static int GUIDE_FUNCTION = BASE + 104;
  1276. public final static int GUIDE_NOTICE = BASE + 105;
  1277. public final static int GUIDE_ICONS = BASE + 106;
  1278. }
  1279. public static final class BTNS {
  1280. }
  1281. public static final class TEXTS {
  1282. public final static int GUIDE_INFO_CALENDAR = BASE + 300;
  1283. public final static int GUIDE_INFO_CLOCK = BASE + 301;
  1284. public final static int GUIDE_INFO_WEATHER = BASE + 302;
  1285. public final static int GUIDE_INFO_FUNCTION = BASE + 303;
  1286. public final static int GUIDE_INFO_NOTICE = BASE + 304;
  1287. public final static int GUIDE_INFO_ICONS = BASE + 305;
  1288. }
  1289. }
  1290. }
  1291. public final static class MANUALMAINMETROUI02 {
  1292. public static final class ELEMENTS {
  1293. final static int BASE = MANUAL_METROUI_SUB_GROUP;
  1294. public static final class IMAGES {
  1295. public final static int BACKGROUND = BASE + 100;
  1296. public final static int GUIDE_FUNCTIONS = BASE + 101;
  1297. }
  1298. public static final class BTNS {
  1299. }
  1300. public static final class TEXTS {
  1301. public final static int GUIDE_FUNCTIONS = BASE + 300;
  1302. }
  1303. }
  1304. }
  1305. public final static class MANUALMAINHYOSUNGUI01 {
  1306. public static final class ELEMENTS {
  1307. final static int BASE = MANUAL_HYOSUNGUI_MAIN_HN;
  1308. public static final class IMAGES {
  1309. public final static int BACKGROUND = BASE + 100;
  1310. public final static int GUIDE_CALENDAR = BASE + 101;
  1311. public final static int GUIDE_CLOCK = BASE + 102;
  1312. public final static int GUIDE_WEATHER = BASE + 103;
  1313. public final static int GUIDE_FUNCTION = BASE + 104;
  1314. public final static int GUIDE_NOTICE = BASE + 105;
  1315. public final static int GUIDE_ICONS = BASE + 106;
  1316. }
  1317. public static final class BTNS {
  1318. }
  1319. public static final class TEXTS {
  1320. public final static int GUIDE_INFO_CALENDAR = BASE + 300;
  1321. public final static int GUIDE_INFO_CLOCK = BASE + 301;
  1322. public final static int GUIDE_INFO_WEATHER = BASE + 302;
  1323. public final static int GUIDE_INFO_FUNCTION = BASE + 303;
  1324. public final static int GUIDE_INFO_NOTICE = BASE + 304;
  1325. public final static int GUIDE_INFO_ICONS = BASE + 305;
  1326. }
  1327. }
  1328. }
  1329. }
  1330. public static final class ICONS {
  1331. public static int MENU_MAIN = 1000;
  1332. public static int MENU_TALK = 2000;
  1333. public static int MENU_CTRL = 3000;
  1334. public static int MENU_ADD = 4000;
  1335. public static int MENU_SECURITY = 5000;
  1336. public static int MENU_ENERGY = 6000;
  1337. public static int MENU_SETTING = 7000;
  1338. public enum MENUS {
  1339. MAIN_ELEVATOR(MENU_MAIN + 1, "엘리베이터", "Elevator"),
  1340. MAIN_LIGHTS_OUT(MENU_MAIN + 2, "일괄소등", "Lights out"),
  1341. MAIN_CALRENDAR(MENU_MAIN + 3, "캘린더", "Calendar"),
  1342. MAIN_WEATHER(MENU_MAIN + 4, "날씨", "Weather"),
  1343. TALK_FRONT(MENU_TALK + 1, "현관", "Front"),
  1344. TALK_LOBBY(MENU_TALK + 2, "로비", "Lobby"),
  1345. TALK_NEIGHBOR(MENU_TALK + 3, "이웃", "Neighbor"),
  1346. TALK_GUARD(MENU_TALK + 4, "경비", "Guard"),
  1347. TALK_PHONE(MENU_TALK + 5, "전화", "Phone"),
  1348. TALK_CALLHISTORY(MENU_TALK + 101, "통화내역", "Call history"),
  1349. TALK_VISITORPIC(MENU_TALK + 102, "방문자 사진", "Visitor picture"),
  1350. CTRL_LIGHT(MENU_CTRL + 1, "조명", "Light"),
  1351. CTRL_HEATING(MENU_CTRL + 2, "난방", "Heating"),
  1352. CTRL_GAS(MENU_CTRL + 3, "가스", "Gas"),
  1353. CTRL_DOORLOCK(MENU_CTRL + 4, "도어락", "Doorlock"),
  1354. CTRL_VENT(MENU_CTRL + 5, "환기", "Ventilation"),
  1355. CTRL_OUTLET(MENU_CTRL + 6, "콘센트", "Outlet"),
  1356. CTRL_LIVINGLIGHT(MENU_CTRL + 7, "거실조명", "Livinglight"),
  1357. CTRL_AIRQUALTY(MENU_CTRL + 8, "공기질", "Air quality"),
  1358. CTRL_ELECCOOKTOP(MENU_CTRL + 9, "전기레인지", "Elec. cooktop"),
  1359. CTRL_COOKTOPOUTLET(MENU_CTRL + 10, "쿡탑콘센트", "Cooktop\noutlet"),
  1360. CTRL_CURTAIN(MENU_CTRL + 11, "커튼", "Curtain"),
  1361. CTRL_SYSTEMAIRCON(MENU_CTRL + 12, "시스템\n에어컨", "System\naircon"),
  1362. ADD_NOTICE(MENU_ADD + 1, "공지사항", "Notice"),
  1363. ADD_WEATHER(MENU_ADD + 2, "날씨", "Weather"),
  1364. ADD_MEMO(MENU_ADD + 3, "메모", "Memo"),
  1365. ADD_E_FRAME(MENU_ADD + 4, "전자액자", "E-Frame"),
  1366. ADD_SCHEDULE(MENU_ADD + 5, "일정표", "Schedule"),
  1367. ADD_CCTV(MENU_ADD + 6, "CCTV", "CCTV"),
  1368. ADD_PARKING(MENU_ADD + 7, "주차확인", "Parking"),
  1369. ADD_PARKINGLIST(MENU_ADD + 8, "차량\n출입내역", "ParkingList"),
  1370. ADD_ELECTRICCAR(MENU_ADD + 9, "전기차충전", "Electric car"),
  1371. ADD_VOTE(MENU_ADD + 10, "주민투표", "Vote"),
  1372. ADD_REPAIR(MENU_ADD + 11, "보수신청", "Repair"),
  1373. ADD_LOCALINFO(MENU_ADD + 12, "지역정보", "Local info"),
  1374. ADD_MAINTENANCECOST(MENU_ADD + 13, "관리비조회", "Maintenance cost"),
  1375. ADD_UCITY(MENU_ADD + 14, "U-City", "U-City"),
  1376. ADD_INTERLAYERNOISE(MENU_ADD + 15, "층간소음\n내역", "Inter-noise\nhistory"),
  1377. ADD_INFORMATION(MENU_ADD + 16, "정보조회", "Info."),
  1378. ADD_VISITEDVEHICLEREGI(MENU_ADD + 17, "방문객\n차량등록", "Visited\nvehicle"),
  1379. ADD_BANDLOCATION(MENU_ADD + 18, "밴드위치\n확인", "Band\nlocation"),
  1380. ADD_GUARDINGSTREETLAMP(MENU_ADD + 19, "안전가로등", "Guarding\nstreet lamp"),
  1381. SECURITY_SETARMED(MENU_SECURITY + 1, "방범", "Security"),
  1382. SECURITY_DEVICELINK(MENU_SECURITY + 2, "연동설정", "Out Ctrl"),
  1383. SECURITY_DEVICELINKSLEEP(MENU_SECURITY + 3, "취침연동", "Sleep Ctrl"),
  1384. SECURITY_ACCESSHISTORY(MENU_SECURITY + 4, "출입내역", "Access history"),
  1385. SECURITY_VISITORVIDEO(MENU_SECURITY + 5, "방문자영상", "Visitor video"),
  1386. ENERGY_ENERGYMETER(MENU_ENERGY + 1, "에너지미터", "Energy meter"),
  1387. ENERGY_REMOTEMETER(MENU_ENERGY + 2, "원격검침", "Remote meter"),
  1388. ENERGY_ENERGYCONSUMPTION(MENU_ENERGY + 3, "에너지\n사용량", "Energy\nconsumption"),
  1389. ENERGY_ENERGYCOSTTABLE(MENU_ENERGY + 4, "에너지\n요금제", "Cost table"),
  1390. ENERGY_SMARTPANEL(MENU_ENERGY + 5, "스마트\n분전반", "Smart Panel"), // Distribution Panel Board
  1391. ENERGY_SMARTLIGHT(MENU_ENERGY + 6, "스마트 조명", "Smart Light"),
  1392. ENERGY_SMARTOUTLET(MENU_ENERGY + 7, "스마트\n콘센트", "Smart Outlet"),
  1393. SETTING_CONFIG(MENU_SETTING + 1, "환경설정", "Config"),
  1394. SETTING_CLREANSCREEN(MENU_SETTING + 2, "화면청소", "Clean screen"),
  1395. SETTING_PWCHANGE(MENU_SETTING + 3, "비밀번호", "Passcode"),
  1396. SETTING_MORNINGCALL(MENU_SETTING + 4, "모닝콜", "Morning call"),
  1397. SETTING_SMARTKEY(MENU_SETTING + 5, "스마트키", "Smartkey"),
  1398. SETTING_SMARTBAND(MENU_SETTING + 6, "스마트밴드", "Smartband"),
  1399. SETTING_ACCESSCARD(MENU_SETTING + 7, "카드관리", "Access card"),
  1400. SETTING_CALENDAR(MENU_SETTING + 8, "시간설정", "Calendar"),
  1401. SETTING_REMOTECALLUSER(MENU_SETTING + 9, "원격통화\n사용자관리", "Remote call"),
  1402. SETTING_REMOTECTRL(MENU_SETTING + 10, "모바일\n기기등록", "Remote control"),
  1403. SETTING_OCCUPANCYSENSOR(MENU_SETTING + 11, "재실센서\n설정", "Occupancy sensor");
  1404. private final int nID; // 아이콘 ID
  1405. private final String strNameKR; // 아이콘 이름 (한글)
  1406. private final String strNameEN; // 아이콘 이름 (영어)
  1407. MENUS(int id, String name_kr, String name_en) {
  1408. this.nID = id;
  1409. this.strNameKR = name_kr;
  1410. this.strNameEN = name_en;
  1411. }
  1412. public int getID() {
  1413. return nID;
  1414. }
  1415. public String getNameKR() {
  1416. return strNameKR;
  1417. }
  1418. public String getNameEN() {
  1419. return strNameEN;
  1420. }
  1421. }
  1422. }
  1423. public static final class LINKEDSCREEN {
  1424. /**
  1425. * 월패드 메인화면에서 서브화면을 호출할때 전달되어야할 데이터 리스트
  1426. */
  1427. public static final class SubMenuCtrl {
  1428. public final static int BASE = 1000;
  1429. public final static int HDC_LivingLamp = BASE + 11; // 현산거실조명( 제일전기 일체형조명제어기 )
  1430. public final static int HDC_EachLamp = BASE + 12; // 현산각실조명( 에너지미터 )
  1431. public final static int OutSide_livingLamp = BASE + 13; // 대외향 거실조명 ( 거실조명만 )
  1432. public final static int OutSide_EachLamp = BASE + 14; // 대외향 각실조명 ( 멀티스위치 )
  1433. public final static int Heating_V1 = BASE + 21; // 난방 V1
  1434. public final static int Heating_V2 = BASE + 22; // 난방 V2
  1435. public final static int Gas = BASE + 31; // 가스
  1436. public final static int DoorLock485 = BASE + 41; // 도어락 485
  1437. public final static int DoorLockWL = BASE + 42; // 도어락 무선
  1438. public final static int Concent = BASE + 51; // 대기콘센트
  1439. public final static int ChangAir_Normal = BASE + 61; // 환기 일반
  1440. public final static int ChangAir_LH = BASE + 62; // 환기 LH
  1441. public final static int ChangAir_Hood = BASE + 63; // 환기 후드
  1442. public final static int SystemAircon = BASE + 71; // 시스템 에어컨
  1443. public final static int Curtain = BASE + 81; // 커튼
  1444. public final static int AirQualty = BASE + 91; // 공기질 센서
  1445. public final static int ElecCooktop = BASE + 101; // 전기레인지
  1446. public final static int CooktopOutlet = BASE + 111; // 쿡탑콘센트
  1447. public final static int HDCLivingNEach_Lamp = BASE + 16; // 혼합형조명 ( 멀티스위치 )
  1448. }
  1449. public static final class SubMenuEnergy {
  1450. public final static int BASE = 2000;
  1451. public final static int RealTimeCheckMeter = BASE + 11; // 실시간 검침기
  1452. public final static int RemoteMeter = BASE + 21; // 원격검침
  1453. public final static int IEnergy = BASE + 31; // 에너지 미터
  1454. public final static int CostTable = BASE + 41; // 에너지 요금 테이블
  1455. public final static int EnergyMgr = BASE + 51; // 에너지 사용량
  1456. public final static int SmartPanel = BASE + 61; // 스마트 분전반
  1457. public final static int SmartLight = BASE + 71; // 스마트 조명
  1458. public final static int SmartOutlet = BASE + 81; // 스마트 콘센트
  1459. }
  1460. public static final class SubCall {
  1461. public final static int BASE = 3000;
  1462. public final static int Door = BASE + 11; // 현관통화
  1463. public final static int Lobby = BASE + 21; // 로비통화
  1464. public final static int Neighboor = BASE + 31; // 이웃통화
  1465. public final static int Guard = BASE + 41; // 경비실통화
  1466. public final static int Pstn = BASE + 51; // 전화통화
  1467. public final static int CallList = BASE + 61; // 통화내역
  1468. public final static int Visitor = BASE + 71; // 방문자사진
  1469. public final static int Door_Record = BASE + 81; // 거동수상자 녹화
  1470. public final static int Door_TakePic = BASE + 91; // 거동수상자 사진촬영
  1471. }
  1472. public static final class SubMenuSecurity {
  1473. public final static int BASE = 4000;
  1474. public final static int SecurityMain = BASE + 11; // 외출.재택 설정 화면
  1475. public final static int LinkDeviceSet = BASE + 21; // 외출시 연동기능 설정 화면
  1476. public final static int lnkBedDeviceSet = BASE + 22; // 취침시 연동 기능 설정 화면
  1477. public final static int AccessHistoryDoor = BASE + 31; // 외출시 연동기능 설정 화면
  1478. public final static int VisitorVideo = BASE + 41; // 스마트현관카메라 방문자영상 화면
  1479. }
  1480. public static final class SubMenuAddService {
  1481. public final static int BASE = 5000;
  1482. public final static int Notice = BASE + 11; // 공지사항 화면
  1483. public final static int Weather = BASE + 21; // 날씨 화면
  1484. public final static int Memo = BASE + 31; // 메모 화면
  1485. public final static int AutoPicture = BASE + 41; // 전자액자 화면
  1486. public final static int Schedule = BASE + 51; // 일정표 화면
  1487. public final static int Cctv = BASE + 61; // CCTV 화면
  1488. public final static int Parking = BASE + 71; // 주차확인 화면
  1489. public final static int ParkingList = BASE + 81; // 차량출입내역 화면
  1490. public final static int Repair = BASE + 91; // 보수신청
  1491. public final static int Vote = BASE + 101; // 주민투표
  1492. public final static int LocalInfo = BASE + 111; // 지역정보
  1493. public final static int Cost = BASE + 121; // 관리비조회
  1494. public final static int UCity = BASE + 131; // U-City
  1495. public final static int ElecCar = BASE + 141; // 전기차 충전
  1496. public final static int InterlayerNoiseHistory = BASE + 151; // 층간소음 센서 목록
  1497. public final static int VisitedVehicleRegi = BASE + 161; // 방문객차량등록
  1498. public final static int BandLocation = BASE + 171; // 밴드위치확인
  1499. public final static int GuardingStreetLamp = BASE + 181; // 안전가로등
  1500. }
  1501. public static final class SubMenuConfig {
  1502. public final static int BASE = 6000;
  1503. public final static int Configuration = BASE + 11; // 환경설정
  1504. public final static int CleanLcd = BASE + 21; // 화면청소
  1505. public final static int PassWordChange = BASE + 31; // 비밀번호변경
  1506. public final static int SkinChange = BASE + 41; // 메인화면 설정
  1507. public final static int MoningCall = BASE + 51; // 모닝콜
  1508. public final static int SmartKey = BASE + 61; // 스마트키
  1509. public final static int RfCard = BASE + 62; // 카드관리(RF카드)
  1510. public final static int UksKey = BASE + 63; // 카드관리(UKS-Ukey)
  1511. public final static int TimeSetting = BASE + 71; // 시간설정
  1512. public final static int DisabledPerson = BASE + 81; // 장애인모드 설정
  1513. public final static int Manual = BASE + 91; //메뉴얼
  1514. public final static int RemoteCallUser = BASE + 101; // 방문객원격통화 사용자관리
  1515. public final static int MobileDeviceReg = BASE + 111; // 모바일기기등록
  1516. public final static int OccupancySensorConfig = BASE + 121; // 스마트 재실센서 설정
  1517. public final static int SmartBand = BASE + 131; // 스마트키/밴드
  1518. }
  1519. public static final class SubEmergency {
  1520. public final static int BASE = 7000;
  1521. public final static int EMER_ALARM = BASE + 11; // 비상
  1522. public final static int FIRE_ALARM = BASE + 21; // 경보
  1523. public final static int BREAKIN_ALARM = BASE + 31; // 침입
  1524. public final static int LADDER_ALARM = BASE + 41; // 피난사다리
  1525. }
  1526. public static final class OtherFunc {
  1527. public final static int BASE = 8000;
  1528. public final static int ELEVATOR_CALL = BASE + 11;
  1529. public final static int MODE_LAMP = BASE + 12;
  1530. public final static int AUTO_PICTURE_RUN = BASE + 13;
  1531. public final static int INSERT_WIDGET = BASE + 14;
  1532. public final static int IGAL_CTRL = BASE + 15;
  1533. }
  1534. }
  1535. public static final class SHORTCUTS {
  1536. static String TAG = "SHORTCUTS";
  1537. public class IDS {
  1538. public final static int EMPTY = 0;
  1539. public final static int ELEVATOR = 1;
  1540. public final static int ALL_LAMP = 2;
  1541. public final static int MODE_LAMP = 3;
  1542. public final static int AUTO_PIC_RUN = 4;
  1543. // 제어
  1544. public final static int CTRL_LAMP = 20;
  1545. public final static int CTRL_GAS = 21;
  1546. public final static int CTRL_HEATING = 22;
  1547. public final static int CTRL_CHANGEAIR = 23;
  1548. public final static int CTRL_DOORLOCK = 24;
  1549. public final static int CTRL_CONCENT = 25;
  1550. public final static int CTRL_SYSTEMAIRCON = 26;
  1551. public final static int CTRL_CURTAIN =27;
  1552. // 부가서비스
  1553. public final static int SER_NOTICE = 41;
  1554. public final static int SER_WEATHER = 42;
  1555. public final static int SER_MEMO = 43;
  1556. public final static int SER_AUTOPIC = 44;
  1557. public final static int SER_SCHEDULE = 45;
  1558. public final static int SER_CCTV = 46;
  1559. public final static int SER_PARKING = 47;
  1560. public final static int SER_PARKINGLIST = 48;
  1561. // 통화
  1562. public final static int CALL_FRONT = 60;
  1563. public final static int CALL_GUARD = 61;
  1564. public final static int CALL_NEIGH = 62;
  1565. public final static int CALL_PSTN = 63;
  1566. public final static int CALL_LIST = 64;
  1567. public final static int CALL_PHOTO = 65;
  1568. // 설정
  1569. public final static int CON_MAINCHANGE = 70;
  1570. public final static int CON_MONINGCALL = 71;
  1571. public final static int CON_SETTING = 72;
  1572. public final static int CON_CLEAN_LCD = 73;
  1573. public final static int CON_PW_CHNAGE = 74;
  1574. public final static int CON_TIMESET = 75;
  1575. // 에너지 관리
  1576. public final static int ENERGY_REALTIME_METER = 80;
  1577. public final static int ENERGY_SERVER_METER = 81;
  1578. public final static int ENERGY_I_PARK_METER = 82;
  1579. // 추가 버튼
  1580. public final static int PLUS_WIDGHET = 100;
  1581. }
  1582. public class NAMES {
  1583. public final static String EMPTY = "none";
  1584. public final static String ELEVATOR = "엘리베이터";
  1585. public final static String ALL_LAMP = "일괄소등";
  1586. public final static String MODE_LAMP = "무드등";
  1587. public final static String AUTO_PIC_RUN = "전자액자";
  1588. // 제어
  1589. public final static String CTRL_LAMP = "조명";
  1590. public final static String CTRL_GAS = "가스";
  1591. public final static String CTRL_HEATING = "난방";
  1592. public final static String CTRL_CHANGEAIR = "환기";
  1593. public final static String CTRL_DOORLOCK = "도어락";
  1594. public final static String CTRL_CONCENT = "콘센트";
  1595. public final static String CTRL_SYSTEMAIRCON = "에어컨";
  1596. public final static String CTRL_CURTAIN = "커튼";
  1597. // 부가서비스
  1598. public final static String SER_NOTICE = "공지사항";
  1599. public final static String SER_WEATHER = "날씨";
  1600. public final static String SER_MEMO = "메모";
  1601. public final static String SER_AUTOPIC = "전자액자";
  1602. public final static String SER_SCHEDULE = "일정";
  1603. public final static String SER_CCTV = "CCTV";
  1604. public final static String SER_PARKING = "주차위치";
  1605. public final static String SER_PARKINGLIST = "차량출입내역";
  1606. // 통화
  1607. public final static String CALL_FRONT = "현관";
  1608. public final static String CALL_GUARD = "경비실";
  1609. public final static String CALL_NEIGH = "이웃";
  1610. public final static String CALL_PSTN = "전화";
  1611. public final static String CALL_LIST = "통화내역";
  1612. public final static String CALL_PHOTO = "방문자사진";
  1613. // 설정
  1614. public final static String CON_MAINCHANGE = "메인화면설정";
  1615. public final static String CON_MONINGCALL = "모닝콜";
  1616. public final static String CON_SETTING = "설정";
  1617. public final static String CON_CLEAN_LCD = "화면청소";
  1618. public final static String CON_PW_CHNAGE = "비밀번호 변경";
  1619. public final static String CON_TIMESET = "시간설정";
  1620. // 에너지 관리
  1621. public final static String ENERGY_REALTIME_METER = "실시간에너지";
  1622. public final static String ENERGY_SERVER_METER = "원격검침";
  1623. public final static String ENERGY_I_PARK_METER = "IEMS";
  1624. // 추가 버튼
  1625. public final static String PLUS_WIDGHET = "추가";
  1626. }
  1627. public static String getName(int nID) {
  1628. try {
  1629. switch (nID) {
  1630. case IDS.EMPTY: return NAMES.EMPTY;
  1631. case IDS.ELEVATOR: return NAMES.ELEVATOR;
  1632. case IDS.ALL_LAMP: return NAMES.ALL_LAMP;
  1633. case IDS.MODE_LAMP: return NAMES.MODE_LAMP;
  1634. case IDS.AUTO_PIC_RUN: return NAMES.AUTO_PIC_RUN;
  1635. case IDS.CTRL_LAMP: return NAMES.CTRL_LAMP;
  1636. case IDS.CTRL_GAS: return NAMES.CTRL_GAS;
  1637. case IDS.CTRL_HEATING: return NAMES.CTRL_HEATING;
  1638. case IDS.CTRL_CHANGEAIR: return NAMES.CTRL_CHANGEAIR;
  1639. case IDS.CTRL_DOORLOCK: return NAMES.CTRL_DOORLOCK;
  1640. case IDS.CTRL_CONCENT: return NAMES.CTRL_CONCENT;
  1641. case IDS.CTRL_SYSTEMAIRCON: return NAMES.CTRL_SYSTEMAIRCON;
  1642. case IDS.CTRL_CURTAIN: return NAMES.CTRL_CURTAIN;
  1643. case IDS.SER_NOTICE: return NAMES.SER_NOTICE;
  1644. case IDS.SER_WEATHER: return NAMES.SER_WEATHER;
  1645. case IDS.SER_MEMO: return NAMES.SER_MEMO;
  1646. case IDS.SER_AUTOPIC: return NAMES.SER_AUTOPIC;
  1647. case IDS.SER_SCHEDULE: return NAMES.SER_SCHEDULE;
  1648. case IDS.SER_CCTV: return NAMES.SER_CCTV;
  1649. case IDS.SER_PARKING: return NAMES.SER_PARKING;
  1650. case IDS.SER_PARKINGLIST: return NAMES.SER_PARKINGLIST;
  1651. case IDS.CALL_FRONT: return NAMES.CALL_FRONT;
  1652. case IDS.CALL_GUARD: return NAMES.CALL_GUARD;
  1653. case IDS.CALL_NEIGH: return NAMES.CALL_NEIGH;
  1654. case IDS.CALL_PSTN: return NAMES.CALL_PSTN;
  1655. case IDS.CALL_LIST: return NAMES.CALL_LIST;
  1656. case IDS.CALL_PHOTO: return NAMES.CALL_PHOTO;
  1657. case IDS.CON_MAINCHANGE: return NAMES.CON_MAINCHANGE;
  1658. case IDS.CON_MONINGCALL: return NAMES.CON_MONINGCALL;
  1659. case IDS.CON_SETTING: return NAMES.CON_SETTING;
  1660. case IDS.CON_CLEAN_LCD: return NAMES.CON_CLEAN_LCD;
  1661. case IDS.CON_PW_CHNAGE: return NAMES.CON_PW_CHNAGE;
  1662. case IDS.CON_TIMESET: return NAMES.CON_TIMESET;
  1663. case IDS.ENERGY_REALTIME_METER: return NAMES.ENERGY_REALTIME_METER;
  1664. case IDS.ENERGY_SERVER_METER: return NAMES.ENERGY_SERVER_METER;
  1665. case IDS.ENERGY_I_PARK_METER: return NAMES.ENERGY_I_PARK_METER;
  1666. case IDS.PLUS_WIDGHET: return NAMES.PLUS_WIDGHET;
  1667. default: return "none";
  1668. }
  1669. } catch (Exception e) {
  1670. Log.e(TAG, "[Exception] getName(int nID)");
  1671. e.printStackTrace();
  1672. return "error";
  1673. }
  1674. }
  1675. }
  1676. }