123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953 |
- /*
- * Copyright (C) 2014 Android WallPad Project
- *
- * FileName : ID.java
- * Project : Android WallPad Project
- * Company : HDC I-CONTROLS ( www.icontrols.co.kr )
- * Author : Jeffrey Nam , jeffnam0524@gmail.com
- */
- package kr.co.icontrols.wallpadmain.declare;
- import android.util.Log;
- public final class ID {
- public static final class ACTIVITIES {
- // [Activity]
- public final static int MainActivity = 100000;
- public final static int PopupActivity = 200000;
- public final static int ManualActivity = 300000;
- }
- /* ==========================================================================
- * ==========================================================================
- * MainActivity
- * ==========================================================================
- * ========================================================================== */
- public static final class MAINACTIVITY {
- final static int BASE = ACTIVITIES.MainActivity;
- public static final class LAYOUT {
- public final static int ALL = BASE + 10000;
- public final static int TOP = BASE + 20000;
- public final static int TAB = BASE + 30000;
- public final static int SCREEN = BASE + 40000;
- public final static int SURFACE = BASE + 50000;
- public final static int MYVIDEO = BASE + 60000;
- public final static int REMOTEVIDEO = BASE + 70000;
- public final static int REMOTEVIDEOCOVER = BASE + 80000;
- public final static int FRONTVIDEO = BASE + 90000;
- }
- public static final class IMAGE {
- public final static int TOP_BACKGROUND = BASE + 100;
- public final static int TOP_TITLE = BASE + 101;
- }
- public static final class BUTTON {
- public final static int HOME = BASE + 200;
- public final static int BACK = BASE + 201;
- public final static int INFO = BASE + 202;
- }
- public static final class TEXT {
- public final static int REMOTE_ID = BASE + 300;
- }
- }
- /* ==========================================================================
- * ==========================================================================
- * PopupActivity
- * ==========================================================================
- * ========================================================================== */
- public static final class POPUPACTIVITY {
- final static int BASE = ACTIVITIES.PopupActivity;
- public static final class LAYOUT {
- public final static int ALL = BASE + 10000;
- public final static int SURFACE = BASE + 20000;
- public final static int VIDEO_FRONT = BASE + 30000;
- public final static int VIDEO_LOBBY = BASE + 40000;
- }
- public static final class IMAGE {
- }
- public static final class BUTTON {
- }
- public static final class TEXT {
- }
- }
- /* ==========================================================================
- * ==========================================================================
- * ManualActivity
- * ==========================================================================
- * ========================================================================== */
- public static final class MANUALACTIVITY {
- final static int BASE = ACTIVITIES.ManualActivity;
- public static final class LAYOUT {
- public final static int ALL = BASE + 10000;
- }
- public static final class IMAGE {
- }
- public static final class BUTTON {
- }
- public static final class TEXT {
- }
- }
- public static final class TOP {
- public final static int BASE = MAINACTIVITY.LAYOUT.TOP;
- public static final class IMAGE {
- public final static int TOP_BACKGROUND = BASE + 100;
- public final static int TOP_TITLE = BASE + 101;
- }
- public static final class BUTTON {
- public final static int HOME = BASE + 200;
- public final static int BACK = BASE + 201;
- }
- }
- /**
- * 월패드 메인화면에서 서브화면을 호출할때 전달되어야할 데이터 리스트
- */
- public static final class TAB {
- public final static int BASE = MAINACTIVITY.LAYOUT.TAB;
- // [Talk]
- public final static int TAB_TALKFRONT = BASE + 11; // 현관통화
- public final static int TAB_TALKLOBBY = BASE + 21; // 로비통화
- public final static int TAB_TALKGUARD = BASE + 31; // 경비통화
- public final static int TAB_TALKRESIDENCE = BASE + 41; // 세대통화
- public final static int TAB_TALKPSTN = BASE + 51; // 국선통화
- // [Inquiry]
- public final static int TAB_INQUIRYCALLHISTORY = BASE + 61; // 통화내역 조회
- public final static int TAB_INQUIRYVISITORPIC = BASE + 71; // 방문자 사진 조회
- public static final class BUTTON {
- public final static int HOME = BASE + 200;
- public final static int BACK = BASE + 201;
- public final static int TAB1_FRONT = BASE + 210; // 현관통화
- public final static int TAB2_LOBBY = BASE + 211; // 로비통화
- public final static int TAB3_GUARD = BASE + 212; // 경비통화
- public final static int TAB4_RESIDENCE = BASE + 213; // 이웃통화
- public final static int TAB5_PSTN = BASE + 214; // 국선통화
- public final static int TAB6_CALLHISTORY = BASE + 215; // 통화내역
- public final static int TAB7_VISITORPIC = BASE + 216; // 방문자 영상
- public final static int TAB_NEXT = BASE + 217;
- public final static int HIDE1 = BASE + 220;
- public final static int HIDE2 = BASE + 221;
- }
- }
- /* ==========================================================================
- * ==========================================================================
- * screen
- * ==========================================================================
- * ========================================================================== */
- public static final class SCREENS {
- // [Talk]
- public final static int SCREEN_MAIN = 11000; // 메인화면
- public final static int SCREEN_SUB_01 = 12000; // 앱모음 화면
- public final static int SCREEN_SUB_02 = 13000; // 앱모음 화면
- public final static int SCREEN_METROUI_MAIN = 21000; // 메인화면 (메트로 UI, 보급형 월패드)
- public final static int SCREEN_METROUI_SUB_01 = 22000; // 서브화면 (메트로 UI, 보급형 월패드)
- public final static int SCREEN_METROUI_SUB_02 = 23000; // 서브화면 (메트로 UI, 보급형 월패드)
- public final static int SCREEN_METROUI_GROUP = 24000; // 서브화면 (메트로 UI, 보급형 월패드, 서브메뉴 그룹화)
- public final static int SCREEN_HYOSUNGUI_MAIN_HN = 25000; // 메인화면 (효성중공업, 제어있음)
- public final static int SCREEN_HYOSUNGUI_MAIN_HA = 26000; // 메인화면 (효성중공업, 제어없음)
- public final static int SCREEN_EASYUI_MAIN = 27000; // 메인화면 (간편모드)
- /* ==========================================================================
- * ==========================================================================
- * 화면 클래스 ID_OLD 정의
- * ==========================================================================
- * ========================================================================== */
- /**
- * 메인화면
- */
- public class MAIN {
- protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_MAIN;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int CALENDAR_YEAR_THOUSANDS = BASE + 101;
- public final static int CALENDAR_YEAR_HUNDREDS = BASE + 102;
- public final static int CALENDAR_YEAR_TENS = BASE + 103;
- public final static int CALENDAR_YEAR_UNITS = BASE + 104;
- public final static int CALENDAR_DOT_01= BASE + 105;
- public final static int CALENDAR_MONTH_TENS = BASE + 106;
- public final static int CALENDAR_MONTH_UNITS = BASE + 107;
- public final static int CALENDAR_DOT_02= BASE + 108;
- public final static int CALENDAR_DATE_TENS = BASE + 109;
- public final static int CALENDAR_DATE_UNITS = BASE + 110;
- public final static int CALENDAR_WEEKDAY = BASE + 111;
- public final static int WEATHER = BASE + 112;
- public final static int TIME_HOUR_TENS = BASE + 113;
- public final static int TIME_HOUR_UNITS = BASE + 114;
- public final static int TIME_COLON = BASE + 115;
- public final static int TIME_MIN_TENS = BASE + 116;
- public final static int TIME_MIN_UNITS = BASE + 117;
- public final static int PAGEINDICATOR_MAIN = BASE + 118;
- public final static int PAGEINDICATOR_SUB_01 = BASE + 119;
- public final static int PAGEINDICATOR_SUB_02 = BASE + 120;
- }
- public final class BTNS {
- public final static int SHORTCUT_1_1 = BASE + 200;
- public final static int SHORTCUT_1_2 = BASE + 201;
- public final static int SHORTCUT_1_3 = BASE + 202;
- public final static int SHORTCUT_1_4 = BASE + 203;
- public final static int SHORTCUT_2_1 = BASE + 204;
- public final static int SHORTCUT_2_2 = BASE + 205;
- public final static int SHORTCUT_2_3 = BASE + 206;
- public final static int SHORTCUT_2_4 = BASE + 207;
- public final static int SHORTCUT_3_1 = BASE + 208;
- public final static int SHORTCUT_3_2 = BASE + 209;
- public final static int SHORTCUT_3_3 = BASE + 210;
- public final static int SHORTCUT_3_4 = BASE + 211;
- public final static int LIGHT_PRESET_01 = BASE + 212;
- public final static int LIGHT_PRESET_02 = BASE + 213;
- public final static int LIGHT_PRESET_03 = BASE + 214;
- public final static int LIGHT_PRESET_04 = BASE + 215;
- public final static int LIGHT_PRESET_01_DIMMING = BASE + 216;
- public final static int LIGHT_PRESET_02_DIMMING = BASE + 217;
- public final static int LIGHT_PRESET_03_DIMMING = BASE + 218;
- public final static int LIGHT_PRESET_04_DIMMING = BASE + 219;
- public final static int CALENDAR = BASE + 220;
- public final static int WEATHER = BASE + 221;
- public final static int CLOCK = BASE + 222;
- public final static int NOTIFICATION_01 = BASE + 223;
- public final static int NOTIFICATION_02 = BASE + 224;
- public final static int NOTIFICATION_03 = BASE + 225;
- public final static int NOTIFICATION_04 = BASE + 226;
- public final static int NOTIFICATION_05 = BASE + 237;
- public final static int LIGHT_HDCLIVING_01 = BASE + 238;
- public final static int LIGHT_HDCLIVING_02 = BASE + 239;
- public final static int LIGHT_HDCLIVING_03 = BASE + 240;
- public final static int LIGHT_HDCLIVING_04 = BASE + 241;
- public final static int LIGHT_HDCLIVING_05 = BASE + 242;
- public final static int LIGHT_HDCLIVING_06 = BASE + 243;
- }
- public final class TEXTS {
- public final static int SHORTCUT_1_1 = BASE + 300;
- public final static int SHORTCUT_1_2 = BASE + 301;
- public final static int SHORTCUT_1_3 = BASE + 302;
- public final static int SHORTCUT_1_4 = BASE + 303;
- public final static int SHORTCUT_2_1 = BASE + 304;
- public final static int SHORTCUT_2_2 = BASE + 305;
- public final static int SHORTCUT_2_3 = BASE + 306;
- public final static int SHORTCUT_2_4 = BASE + 307;
- public final static int SHORTCUT_3_1 = BASE + 308;
- public final static int SHORTCUT_3_2 = BASE + 309;
- public final static int SHORTCUT_3_3 = BASE + 310;
- public final static int SHORTCUT_3_4 = BASE + 311;
- public final static int DATETIME = BASE + 312;
- }
- }
- }
- public class SUB_01 {
- protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_SUB_01;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int PAGEINDICATOR_MAIN = BASE + 101;
- public final static int PAGEINDICATOR_SUB_01 = BASE + 102;
- public final static int PAGEINDICATOR_SUB_02 = BASE + 103;
- }
- public final class BTNS {
- public final static int BASIC_ICON_1_1 = BASE + 200;
- public final static int BASIC_ICON_1_2 = BASE + 201;
- public final static int BASIC_ICON_1_3 = BASE + 202;
- public final static int BASIC_ICON_1_4 = BASE + 203;
- public final static int BASIC_ICON_1_5 = BASE + 204;
- public final static int BASIC_ICON_1_6 = BASE + 205;
- public final static int BASIC_ICON_1_7 = BASE + 206;
- public final static int BASIC_ICON_1_8 = BASE + 207;
- public final static int BASIC_ICON_2_1 = BASE + 208;
- public final static int BASIC_ICON_2_2 = BASE + 209;
- public final static int BASIC_ICON_2_3 = BASE + 210;
- public final static int BASIC_ICON_2_4 = BASE + 211;
- public final static int BASIC_ICON_2_5 = BASE + 212;
- public final static int BASIC_ICON_2_6 = BASE + 213;
- public final static int BASIC_ICON_2_7 = BASE + 214;
- public final static int BASIC_ICON_2_8 = BASE + 215;
- public final static int BASIC_ICON_3_1 = BASE + 216;
- public final static int BASIC_ICON_3_2 = BASE + 217;
- public final static int BASIC_ICON_3_3 = BASE + 218;
- public final static int BASIC_ICON_3_4 = BASE + 219;
- public final static int BASIC_ICON_3_5 = BASE + 220;
- public final static int BASIC_ICON_3_6 = BASE + 221;
- public final static int BASIC_ICON_3_7 = BASE + 222;
- public final static int BASIC_ICON_3_8 = BASE + 223;
- }
- public final class TEXTS {
- public final static int BASIC_ICON_1_1 = BASE + 300;
- public final static int BASIC_ICON_1_2 = BASE + 301;
- public final static int BASIC_ICON_1_3 = BASE + 302;
- public final static int BASIC_ICON_1_4 = BASE + 303;
- public final static int BASIC_ICON_1_5 = BASE + 304;
- public final static int BASIC_ICON_1_6 = BASE + 305;
- public final static int BASIC_ICON_1_7 = BASE + 306;
- public final static int BASIC_ICON_1_8 = BASE + 307;
- public final static int BASIC_ICON_2_1 = BASE + 308;
- public final static int BASIC_ICON_2_2 = BASE + 309;
- public final static int BASIC_ICON_2_3 = BASE + 310;
- public final static int BASIC_ICON_2_4 = BASE + 311;
- public final static int BASIC_ICON_2_5 = BASE + 312;
- public final static int BASIC_ICON_2_6 = BASE + 313;
- public final static int BASIC_ICON_2_7 = BASE + 314;
- public final static int BASIC_ICON_2_8 = BASE + 315;
- public final static int BASIC_ICON_3_1 = BASE + 316;
- public final static int BASIC_ICON_3_2 = BASE + 317;
- public final static int BASIC_ICON_3_3 = BASE + 318;
- public final static int BASIC_ICON_3_4 = BASE + 319;
- public final static int BASIC_ICON_3_5 = BASE + 320;
- public final static int BASIC_ICON_3_6 = BASE + 321;
- public final static int BASIC_ICON_3_7 = BASE + 322;
- public final static int BASIC_ICON_3_8 = BASE + 323;
- }
- }
- }
- public class SUB_02 {
- protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_SUB_02;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int PAGEINDICATOR_MAIN = BASE + 101;
- public final static int PAGEINDICATOR_SUB_01 = BASE + 102;
- public final static int PAGEINDICATOR_SUB_02 = BASE + 103;
- }
- public final class BTNS {
- public final static int BASIC_ICON_1_1 = BASE + 200;
- public final static int BASIC_ICON_1_2 = BASE + 201;
- public final static int BASIC_ICON_1_3 = BASE + 202;
- public final static int BASIC_ICON_1_4 = BASE + 203;
- public final static int BASIC_ICON_1_5 = BASE + 204;
- public final static int BASIC_ICON_1_6 = BASE + 205;
- public final static int BASIC_ICON_1_7 = BASE + 206;
- public final static int BASIC_ICON_1_8 = BASE + 207;
- public final static int BASIC_ICON_2_1 = BASE + 208;
- public final static int BASIC_ICON_2_2 = BASE + 209;
- public final static int BASIC_ICON_2_3 = BASE + 210;
- public final static int BASIC_ICON_2_4 = BASE + 211;
- public final static int BASIC_ICON_2_5 = BASE + 212;
- public final static int BASIC_ICON_2_6 = BASE + 213;
- public final static int BASIC_ICON_2_7 = BASE + 214;
- public final static int BASIC_ICON_2_8 = BASE + 215;
- public final static int BASIC_ICON_3_1 = BASE + 216;
- public final static int BASIC_ICON_3_2 = BASE + 217;
- public final static int BASIC_ICON_3_3 = BASE + 218;
- public final static int BASIC_ICON_3_4 = BASE + 219;
- public final static int BASIC_ICON_3_5 = BASE + 220;
- public final static int BASIC_ICON_3_6 = BASE + 221;
- public final static int BASIC_ICON_3_7 = BASE + 222;
- public final static int BASIC_ICON_3_8 = BASE + 223;
- }
- public final class TEXTS {
- public final static int BASIC_ICON_1_1 = BASE + 300;
- public final static int BASIC_ICON_1_2 = BASE + 301;
- public final static int BASIC_ICON_1_3 = BASE + 302;
- public final static int BASIC_ICON_1_4 = BASE + 303;
- public final static int BASIC_ICON_1_5 = BASE + 304;
- public final static int BASIC_ICON_1_6 = BASE + 305;
- public final static int BASIC_ICON_1_7 = BASE + 306;
- public final static int BASIC_ICON_1_8 = BASE + 307;
- public final static int BASIC_ICON_2_1 = BASE + 308;
- public final static int BASIC_ICON_2_2 = BASE + 309;
- public final static int BASIC_ICON_2_3 = BASE + 310;
- public final static int BASIC_ICON_2_4 = BASE + 311;
- public final static int BASIC_ICON_2_5 = BASE + 312;
- public final static int BASIC_ICON_2_6 = BASE + 313;
- public final static int BASIC_ICON_2_7 = BASE + 314;
- public final static int BASIC_ICON_2_8 = BASE + 315;
- public final static int BASIC_ICON_3_1 = BASE + 316;
- public final static int BASIC_ICON_3_2 = BASE + 317;
- public final static int BASIC_ICON_3_3 = BASE + 318;
- public final static int BASIC_ICON_3_4 = BASE + 319;
- public final static int BASIC_ICON_3_5 = BASE + 320;
- public final static int BASIC_ICON_3_6 = BASE + 321;
- public final static int BASIC_ICON_3_7 = BASE + 322;
- public final static int BASIC_ICON_3_8 = BASE + 323;
- }
- }
- }
- public class MAIN_METROUI {
- protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_METROUI_MAIN;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int BACK_EVENT = BASE + 101;
- public final static int WEATHER = BASE + 102;
- public final static int NEW_NOTIFICATION = BASE + 103;
- }
- public final class BTNS {
- public final static int CLOCK = BASE + 200;
- public final static int CALENDAR = BASE + 201;
- public final static int WEATHER = BASE + 202;
- public final static int TALK_GUARD = BASE + 203;
- public final static int SECURITY_MAIN = BASE + 204;
- public final static int ELEVATOR = BASE + 205;
- public final static int ICONS_SMALL = BASE + 206;
- public final static int ICONS_BIG = BASE + 207;
- public final static int MANUAL = BASE + 208;
- public final static int NOTIFICATION_01 = BASE + 209;
- public final static int NOTIFICATION_02 = BASE + 210;
- public final static int NOTIFICATION_03 = BASE + 211;
- public final static int NOTIFICATION_04 = BASE + 212;
- public final static int NOTIFICATION_05 = BASE + 213;
- }
- public final class TEXTS {
- public final static int CLOCK = BASE + 300;
- public final static int AMPM = BASE + 301;
- public final static int CALENDAR_YEAR_MONTH = BASE + 302;
- public final static int CALENDAR_DATE = BASE + 303;
- public final static int CALENDAR_DAYOFWEEK = BASE + 304;
- public final static int TEMPERATURE_LOWEST_HIGHEST = BASE + 305;
- public final static int TEMPERATURE_CURRENT = BASE + 306;
- public final static int RAINFALL_PROBABILITY_AM = BASE + 307;
- public final static int RAINFALL_PROBABILITY_PM = BASE + 308;
- public final static int WEATHER_CURRENT = BASE + 309;
- }
- public final class OBJECTS {
- public final static int ANALOGCLOCK = BASE + 400;
- }
- }
- }
- public class SUB_METROUI_01 {
- protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_METROUI_SUB_01;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int PAGEINDICATOR_SUB_01 = BASE + 101;
- public final static int PAGEINDICATOR_SUB_02 = BASE + 102;
- }
- public final class BTNS {
- public final static int BASIC_ICON_1_1 = BASE + 200;
- public final static int BASIC_ICON_1_2 = BASE + 201;
- public final static int BASIC_ICON_1_3 = BASE + 202;
- public final static int BASIC_ICON_2_1 = BASE + 203;
- public final static int BASIC_ICON_2_2 = BASE + 204;
- public final static int BASIC_ICON_2_3 = BASE + 205;
- public final static int BASIC_ICON_3_1 = BASE + 206;
- public final static int BASIC_ICON_3_2 = BASE + 207;
- public final static int BASIC_ICON_3_3 = BASE + 208;
- public final static int BASIC_ICON_4_1 = BASE + 209;
- public final static int BASIC_ICON_4_2 = BASE + 210;
- public final static int BASIC_ICON_4_3 = BASE + 211;
- public final static int BASIC_ICON_5_1 = BASE + 212;
- public final static int BASIC_ICON_5_2 = BASE + 213;
- public final static int BASIC_ICON_5_3 = BASE + 214;
- }
- public final class TEXTS {
- }
- }
- }
- public class SUB_METROUI_02 {
- protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_METROUI_SUB_02;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int PAGEINDICATOR_SUB_01 = BASE + 101;
- public final static int PAGEINDICATOR_SUB_02 = BASE + 102;
- }
- public final class BTNS {
- public final static int BASIC_ICON_1_1 = BASE + 200;
- public final static int BASIC_ICON_1_2 = BASE + 201;
- public final static int BASIC_ICON_1_3 = BASE + 202;
- public final static int BASIC_ICON_2_1 = BASE + 203;
- public final static int BASIC_ICON_2_2 = BASE + 204;
- public final static int BASIC_ICON_2_3 = BASE + 205;
- public final static int BASIC_ICON_3_1 = BASE + 206;
- public final static int BASIC_ICON_3_2 = BASE + 207;
- public final static int BASIC_ICON_3_3 = BASE + 208;
- public final static int BASIC_ICON_4_1 = BASE + 209;
- public final static int BASIC_ICON_4_2 = BASE + 210;
- public final static int BASIC_ICON_4_3 = BASE + 211;
- public final static int BASIC_ICON_5_1 = BASE + 212;
- public final static int BASIC_ICON_5_2 = BASE + 213;
- public final static int BASIC_ICON_5_3 = BASE + 214;
- }
- public final class TEXTS {
- }
- }
- }
- public class SUB_METROUI_GROUP {
- protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_METROUI_GROUP;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- }
- public final class BTNS {
- public final static int CTRL = BASE + 200;
- public final static int TALK = BASE + 201;
- public final static int SECURITY = BASE + 202;
- public final static int ADDITION = BASE + 203;
- public final static int ENERGY = BASE + 204;
- public final static int SETTING = BASE + 205;
- public final static int HOME = BASE + 206;
- public final static int MANUAL = BASE + 207;
- }
- public final class TEXTS {
- }
- }
- }
- public class MAIN_HYOSUNGUI_HN {
- protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_HYOSUNGUI_MAIN_HN;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int BACK_LINE_1 = BASE + 101;
- public final static int WEATHER = BASE + 102;
- }
- public final class BTNS {
- public final static int FUNCTION_1_1 = BASE + 200;
- public final static int FUNCTION_1_2 = BASE + 201;
- public final static int FUNCTION_1_3 = BASE + 202;
- public final static int FUNCTION_1_4 = BASE + 203;
- public final static int FUNCTION_2_1 = BASE + 204;
- public final static int FUNCTION_2_2 = BASE + 205;
- public final static int FUNCTION_2_3 = BASE + 206;
- public final static int FUNCTION_2_4 = BASE + 207;
- public final static int FUNCTION_3_1 = BASE + 208;
- public final static int FUNCTION_3_2 = BASE + 209;
- public final static int FUNCTION_3_3 = BASE + 210;
- public final static int NOTIFICATION_01 = BASE + 211;
- public final static int NOTIFICATION_02 = BASE + 212;
- public final static int NOTIFICATION_03 = BASE + 213;
- public final static int NOTIFICATION_04 = BASE + 214;
- public final static int NOTIFICATION_05 = BASE + 215;
- public final static int MANUAL = BASE + 216;
- }
- public final class TEXTS {
- public final static int CALENDAR_DAYOFWEEK = BASE + 300;
- public final static int CLOCK = BASE + 301;
- public final static int TEMPERATURE_CURRENT = BASE + 302;
- public final static int TEMPERATURE_LOWEST_HIGHEST = BASE + 303;
- }
- public final class OBJECTS {
- public final static int ANALOGCLOCK = BASE + 400;
- }
- }
- }
- public class MAIN_HYOSUNGUI_HA {
- protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_HYOSUNGUI_MAIN_HA;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int BACK_LINE_1 = BASE + 101;
- public final static int WEATHER = BASE + 102;
- }
- public final class BTNS {
- public final static int FUNCTION_1_1 = BASE + 200;
- public final static int FUNCTION_1_2 = BASE + 201;
- public final static int FUNCTION_1_3 = BASE + 202;
- public final static int FUNCTION_2_1 = BASE + 203;
- public final static int FUNCTION_2_2 = BASE + 204;
- public final static int FUNCTION_2_3 = BASE + 205;
- public final static int FUNCTION_3_1 = BASE + 206;
- public final static int FUNCTION_3_2 = BASE + 207;
- public final static int NOTIFICATION_01 = BASE + 208;
- public final static int NOTIFICATION_02 = BASE + 209;
- public final static int NOTIFICATION_03 = BASE + 210;
- public final static int NOTIFICATION_04 = BASE + 211;
- public final static int NOTIFICATION_05 = BASE + 212;
- public final static int MANUAL = BASE + 213;
- }
- public final class TEXTS {
- public final static int CALENDAR_DAYOFWEEK = BASE + 300;
- public final static int CLOCK = BASE + 301;
- public final static int TEMPERATURE_CURRENT = BASE + 302;
- public final static int TEMPERATURE_LOWEST_HIGHEST = BASE + 303;
- }
- public final class OBJECTS {
- public final static int ANALOGCLOCK = BASE + 400;
- }
- }
- }
- public class ESAYUI_MAIN {
- protected final static int BASE = ACTIVITIES.MainActivity + SCREENS.SCREEN_EASYUI_MAIN;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int WEATHER = BASE + 101;
- }
- public final class BTNS {
- public final static int CLOCK_CALENDAR = BASE + 200;
- public final static int WEATHER = BASE + 201;
- public final static int FUNCTION_1_1 = BASE + 202;
- public final static int FUNCTION_1_2 = BASE + 203;
- public final static int FUNCTION_1_3 = BASE + 204;
- public final static int FUNCTION_2_1 = BASE + 205;
- public final static int FUNCTION_2_2 = BASE + 206;
- public final static int FUNCTION_2_3 = BASE + 207;
- public final static int EVENTNOTIFICATION = BASE + 208;
- public final static int NOTIFICATION_00 = BASE + 209;
- public final static int NOTIFICATION_01 = BASE + 210;
- public final static int NOTIFICATION_02 = BASE + 211;
- public final static int NOTIFICATION_03 = BASE + 212;
- public final static int NOTIFICATION_04 = BASE + 213;
- public final static int NOTIFICATION_05 = BASE + 214;
- }
- public final class TEXTS {
- public final static int CLOCK = BASE + 300;
- public final static int CALENDAR = BASE + 301;
- public final static int TEMPERATURE_CURRENT = BASE + 302;
- public final static int EVENT_CNT = BASE + 303;
- }
- }
- }
- }
- /* ==========================================================================
- * ==========================================================================
- * popup
- * ==========================================================================
- * ========================================================================== */
- public static final class POPUPS {
- public final static int POPUP_ADMINPWINPUT = 20000;
- public final static int POPUP_ELEVATORCALL = 21000;
- public final static int POPUP_RELEASEINMODE = 22000;
- public final static int POPUP_DELETESHORTCUT = 23000;
- public final static int POPUP_ADDSHORTCUT = 24000;
- public final static int POPUP_NOMORESHORTCUT = 25000;
- public final static int POPUP_DUPLICATEDSHORTCUT = 26000;
- public final static int POPUP_COLLECTIVELIGHTCTRL = 27000;
- public final static int POPUP_RELEASEOUTMODE= 28000;
- public final static int POPUP_CHARGINGELECTRICVEHICLE = 29000;
- public final static int POPUP_EVENTNOTIFICATION = 30000;
- public final static int POPUP_CONFIGUREPRESET = 31000;
- public final static int POPUP_ENERGYMETERAGE = 32000;
- public final static int POPUP_DIAGNOSTICMODE = 33000;
- public final static int POPUP_MOODLAMP = 34000;
- public final static int POPUP_DEVICELOADING = 35000;
- public final static int POPUP_NOTICESTRANGER = 36000;
- public final static int POPUP_INTERFLOORNOISEOCCURED = 50000;
- public final static int POPUP_INTERFLOORNOISEERROR = 51000;
- public final static int POPUP_SMARTKEYEMERGENCY = 52000;
- public final static int POPUP_MORNINGCALL = 53000;
- public final static int POPUP_SCHEDULENOTIFICATION = 54000;
- public final static int POPUP_ENERGYUSAGEALERT = 55000;
- public final static int POPUP_VEHICLEARRIVED = 56000;
- public final static int POPUP_PARCELRECEIVED = 57000;
- public final static int POPUP_BANDLOCATIONALARM = 58000;
- public final static int POPUP_POSTRECEIVED = 59000;
- public final static int POPUP_GROUP_CTRL = 70000;
- public final static int POPUP_GROUP_TALK = 71000;
- public final static int POPUP_GROUP_SECURITY = 72000;
- public final static int POPUP_GROUP_ADD = 73000;
- public final static int POPUP_GROUP_ENERGY = 74000;
- public final static int POPUP_GROUP_SETTING = 75000;
- public class ADMINPWINPUT {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_ADMINPWINPUT;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int BACK_PWINPUT = BASE + 101;
- public final static int PW_01 = BASE + 102;
- public final static int PW_02 = BASE + 103;
- public final static int PW_03 = BASE + 104;
- public final static int PW_04 = BASE + 105;
- }
- public final class BTNS {
- public final static int CLOSE = BASE + 200;
- public final static int NO_00 = BASE + 201;
- public final static int NO_01 = BASE + 202;
- public final static int NO_02 = BASE + 203;
- public final static int NO_03 = BASE + 204;
- public final static int NO_04 = BASE + 205;
- public final static int NO_05 = BASE + 206;
- public final static int NO_06 = BASE + 207;
- public final static int NO_07 = BASE + 208;
- public final static int NO_08 = BASE + 209;
- public final static int NO_09 = BASE + 210;
- public final static int BACK = BASE + 211;
- public final static int DELETE = BASE + 212;
- public final static int CONFIRM = BASE + 213;
- }
- public final class TEXTS {
- public final static int TITLE = BASE + 300;
- public final static int INSTRUCTION = BASE + 301;
- }
- }
- }
- public class ELEVATORCALL {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_ELEVATORCALL;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int FLOOR_BACK = BASE + 101;
- public final static int UP = BASE + 102;
- public final static int DOWN = BASE +103;
- }
- public final class BTNS {
- public final static int UP = BASE + 200;
- public final static int DOWN = BASE + 201;
- }
- public final class TEXTS {
- public final static int FLOOR = BASE + 300;
- public final static int INSTRUCTION = BASE + 301;
- }
- }
- }
- public class DELETESHORTCUT {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_DELETESHORTCUT;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- public final static int CANCEL = BASE + 201;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class ADDSHORTCUT {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_ADDSHORTCUT;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- public final static int CANCEL = BASE + 201;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class NOMORESHORTCUT {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_NOMORESHORTCUT;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class DUPLICATEDSHORTCUT {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_DUPLICATEDSHORTCUT;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class VEHICLEARRIVED {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_VEHICLEARRIVED;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- public final static int CANCEL = BASE + 201;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class PARCELRECEIVED {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_PARCELRECEIVED;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class POSTRECEIVED {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_POSTRECEIVED;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class BANDALARMRECEIVED {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_BANDLOCATIONALARM;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- public final static int CANCEL = BASE + 201;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class NOTICESTRANGER {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_NOTICESTRANGER;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int ACCEPT = BASE + 200;
- public final static int DECLINE = BASE + 201;
- }
- public final class TEXTS {
- public final static int REMOTE = BASE + 300;
- public final static int INSTRUCTION = BASE + 301;
- public final static int MENT = BASE + 302;
- }
- }
- }
- public class SMARTKEYEMERGENCY {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_SMARTKEYEMERGENCY;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class MORNINGCALL {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_MORNINGCALL;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class CHARGINGELECTRICVEHICLE {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_CHARGINGELECTRICVEHICLE;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- public final static int CANCEL = BASE + 201;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class RELEASEINMODE {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_RELEASEINMODE;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- public final static int CANCEL = BASE + 201;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class RELEASEOUTMODE {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_RELEASEOUTMODE;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- public final static int CANCEL = BASE + 201;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class SCHEDULENOTIFICATION {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_SCHEDULENOTIFICATION;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- public final static int CANCEL = BASE + 201;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class COLLECTIVELIGHTCTRL {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_COLLECTIVELIGHTCTRL;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int COLLECTIVELIGHTOFF_ON = BASE + 200;
- public final static int COLLECTIVELIGHTOFF_OFF = BASE + 201;
- }
- public final class TEXTS {
- public final static int TITLE = BASE + 300;
- }
- }
- }
- public class ENERGYUSAGEALERT {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_ENERGYUSAGEALERT;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- public final static int CANCEL = BASE + 201;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class EVENTNOTIFICATION {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_EVENTNOTIFICATION;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- }
- public final class BTNS {
- public final static int EXIT = BASE + 200;
- public final static int EVENT_01 = BASE + 201;
- public final static int EVENT_02 = BASE + 202;
- public final static int EVENT_03 = BASE + 203;
- public final static int EVENT_04 = BASE + 204;
- public final static int EVENT_05 = BASE + 205;
- public final static int EVENT_06 = BASE + 206;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- public final static int EVENT_01 = BASE + 301;
- public final static int EVENT_02 = BASE + 302;
- public final static int EVENT_03 = BASE + 303;
- public final static int EVENT_04 = BASE + 304;
- public final static int EVENT_05 = BASE + 305;
- public final static int EVENT_06 = BASE + 306;
- }
- }
- }
- public class CONFIGUREPRESET {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_CONFIGUREPRESET;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int BACK_SEEKBAR_DIM = BASE + 102;
- public final static int BACK_SEEKBAR_COLOR = BASE + 103;
- }
- public final class BTNS {
- public final static int CLOSE = BASE + 200;
- public final static int SEEKBAR_DIM = BASE + 201;
- public final static int SEEKBAR_COLOR = BASE + 202;
- public final static int SAVE = BASE + 203;
- public final static int CANCEL = BASE + 204;
- }
- public final class TEXTS {
- public final static int TITLE = BASE + 300;
- public final static int SUBTITLE_01 = BASE + 301;
- public final static int SUBTITLE_02 = BASE + 302;
- }
- }
- }
- public class INTERFLOORNOISEOCCURED {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_INTERFLOORNOISEOCCURED;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class INTERFLOORNOISEERROR {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_INTERFLOORNOISEERROR;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class DEVICELOADING {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_DEVICELOADING;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int ICON = BASE + 101;
- }
- public final class BTNS {
- public final static int CONFIRM = BASE + 200;
- }
- public final class TEXTS {
- public final static int INSTRUCTION = BASE + 300;
- }
- }
- }
- public class GROUPCTRL {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_CTRL;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- }
- public final class BTNS {
- public final static int CLOSE = BASE + 200;
- public final static int ICON_01 = BASE + 201;
- public final static int ICON_02 = BASE + 202;
- public final static int ICON_03 = BASE + 203;
- public final static int ICON_04 = BASE + 204;
- public final static int ICON_05 = BASE + 205;
- public final static int ICON_06 = BASE + 206;
- public final static int ICON_07 = BASE + 207;
- public final static int ICON_08 = BASE + 208;
- }
- public final class TEXTS {
- public final static int TITLE = BASE + 300;
- public final static int ICON_01 = BASE + 301;
- public final static int ICON_02 = BASE + 302;
- public final static int ICON_03 = BASE + 303;
- public final static int ICON_04 = BASE + 304;
- public final static int ICON_05 = BASE + 305;
- public final static int ICON_06 = BASE + 306;
- public final static int ICON_07 = BASE + 307;
- public final static int ICON_08 = BASE + 308;
- }
- }
- }
- public class GROUPTALK {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_TALK;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- }
- public final class BTNS {
- public final static int CLOSE = BASE + 200;
- public final static int ICON_01 = BASE + 201;
- public final static int ICON_02 = BASE + 202;
- public final static int ICON_03 = BASE + 203;
- public final static int ICON_04 = BASE + 204;
- public final static int ICON_05 = BASE + 205;
- public final static int ICON_06 = BASE + 206;
- public final static int ICON_07 = BASE + 207;
- public final static int ICON_08 = BASE + 208;
- }
- public final class TEXTS {
- public final static int TITLE = BASE + 300;
- public final static int ICON_01 = BASE + 301;
- public final static int ICON_02 = BASE + 302;
- public final static int ICON_03 = BASE + 303;
- public final static int ICON_04 = BASE + 304;
- public final static int ICON_05 = BASE + 305;
- public final static int ICON_06 = BASE + 306;
- public final static int ICON_07 = BASE + 307;
- public final static int ICON_08 = BASE + 308;
- }
- }
- }
- public class GROUPSECURITY {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_SECURITY;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- }
- public final class BTNS {
- public final static int CLOSE = BASE + 200;
- public final static int ICON_01 = BASE + 201;
- public final static int ICON_02 = BASE + 202;
- public final static int ICON_03 = BASE + 203;
- public final static int ICON_04 = BASE + 204;
- public final static int ICON_05 = BASE + 205;
- public final static int ICON_06 = BASE + 206;
- public final static int ICON_07 = BASE + 207;
- public final static int ICON_08 = BASE + 208;
- }
- public final class TEXTS {
- public final static int TITLE = BASE + 300;
- public final static int ICON_01 = BASE + 301;
- public final static int ICON_02 = BASE + 302;
- public final static int ICON_03 = BASE + 303;
- public final static int ICON_04 = BASE + 304;
- public final static int ICON_05 = BASE + 305;
- public final static int ICON_06 = BASE + 306;
- public final static int ICON_07 = BASE + 307;
- public final static int ICON_08 = BASE + 308;
- }
- }
- }
- public class GROUPADD {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_ADD;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- }
- public final class BTNS {
- public final static int CLOSE = BASE + 200;
- public final static int PREVIOUS = BASE + 201;
- public final static int NEXT = BASE + 202;
- public final static int ICON_01 = BASE + 203;
- public final static int ICON_02 = BASE + 204;
- public final static int ICON_03 = BASE + 205;
- public final static int ICON_04 = BASE + 206;
- public final static int ICON_05 = BASE + 207;
- public final static int ICON_06 = BASE + 208;
- public final static int ICON_07 = BASE + 209;
- public final static int ICON_08 = BASE + 210;
- }
- public final class TEXTS {
- public final static int TITLE = BASE + 300;
- public final static int ICON_01 = BASE + 301;
- public final static int ICON_02 = BASE + 302;
- public final static int ICON_03 = BASE + 303;
- public final static int ICON_04 = BASE + 304;
- public final static int ICON_05 = BASE + 305;
- public final static int ICON_06 = BASE + 306;
- public final static int ICON_07 = BASE + 307;
- public final static int ICON_08 = BASE + 308;
- }
- }
- }
- public class GROUPENERGY {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_ENERGY;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- }
- public final class BTNS {
- public final static int CLOSE = BASE + 200;
- public final static int ICON_01 = BASE + 201;
- public final static int ICON_02 = BASE + 202;
- public final static int ICON_03 = BASE + 203;
- public final static int ICON_04 = BASE + 204;
- public final static int ICON_05 = BASE + 205;
- public final static int ICON_06 = BASE + 206;
- public final static int ICON_07 = BASE + 207;
- public final static int ICON_08 = BASE + 208;
- }
- public final class TEXTS {
- public final static int TITLE = BASE + 300;
- public final static int ICON_01 = BASE + 301;
- public final static int ICON_02 = BASE + 302;
- public final static int ICON_03 = BASE + 303;
- public final static int ICON_04 = BASE + 304;
- public final static int ICON_05 = BASE + 305;
- public final static int ICON_06 = BASE + 306;
- public final static int ICON_07 = BASE + 307;
- public final static int ICON_08 = BASE + 308;
- }
- }
- }
- public class GROUPSETTING {
- protected final static int BASE = ACTIVITIES.PopupActivity + POPUPS.POPUP_GROUP_SETTING;
- public final class ELEMENTS {
- public final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- }
- public final class BTNS {
- public final static int CLOSE = BASE + 200;
- public final static int ICON_01 = BASE + 201;
- public final static int ICON_02 = BASE + 202;
- public final static int ICON_03 = BASE + 203;
- public final static int ICON_04 = BASE + 204;
- public final static int ICON_05 = BASE + 205;
- public final static int ICON_06 = BASE + 206;
- public final static int ICON_07 = BASE + 207;
- public final static int ICON_08 = BASE + 208;
- }
- public final class TEXTS {
- public final static int TITLE = BASE + 300;
- public final static int ICON_01 = BASE + 301;
- public final static int ICON_02 = BASE + 302;
- public final static int ICON_03 = BASE + 303;
- public final static int ICON_04 = BASE + 304;
- public final static int ICON_05 = BASE + 305;
- public final static int ICON_06 = BASE + 306;
- public final static int ICON_07 = BASE + 307;
- public final static int ICON_08 = BASE + 308;
- }
- }
- }
- }
- /* ==========================================================================
- * ==========================================================================
- * info (화면 매뉴얼)
- * ==========================================================================
- * ========================================================================== */
- public static final class MANUAL {
- public final static int MANUAL_MAIN = 11000;
- public final static int INFO_TALK_LOBBY = 12000;
- public final static int INFO_TALK_GUARD = 13000;
- public final static int INFO_TALK_RESIDENCE = 14000;
- public final static int INFO_TALK_PSTN = 15000;
- public final static int INFO_CALL_HISTORY = 16000;
- public final static int INFO_VISITOR_PICTURE = 17000;
- public final static int INFO_POPUP_MULTICALL_VIDEO = 18000;
- public final static int INFO_POPUP_MULTICALL = 19000;
- public final static int MANUAL_METROUI_MAIN = 20000;
- public final static int MANUAL_METROUI_SUB_GROUP = 21000;
- public final static int MANUAL_HYOSUNGUI_MAIN_HN = 22000;
- public final static int MANUAL_ALL = 50000;
- public final static class MANUALMAIN {
- public static final class ELEMENTS {
- final static int BASE = MANUAL_MAIN;
- public static final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int GUIDE_01_WEATHER = BASE + 101;
- public final static int GUIDE_01_CLOCK = BASE + 102;
- public final static int GUIDE_01_SHORTCUT = BASE + 103;
- public final static int GUIDE_02_MAINSCREEN_IHND101 = BASE + 104;
- public final static int GUIDE_02_MAINSCREEN_IHN1010 = BASE + 105;
- public final static int GUIDE_02_SHORTCUTEDIT = BASE + 106;
- }
- public static final class BTNS {
- public final static int PREVIOUS = BASE + 200;
- public final static int NEXT = BASE + 201;
- }
- public static final class TEXTS {
- public final static int PAGE = BASE + 300;
- public final static int GUIDE_01_INFO_WEATHER = BASE + 301;
- public final static int GUIDE_01_INFO_CLOCK = BASE + 302;
- public final static int GUIDE_01_INFO_SHORTCUT = BASE + 303;
- public final static int GUIDE_02_TITLE_MAINSCREEN = BASE + 304;
- public final static int GUIDE_02_INFO_MAINSCREEN_IHND101 = BASE + 305;
- public final static int GUIDE_02_INFO_MAINSCREEN_IHN1010 = BASE + 306;
- public final static int GUIDE_02_TITLE_SHORTCUTEDIT = BASE + 307;
- public final static int GUIDE_02_SUBTITLE_SHORTCUTEDIT_01 = BASE + 308;
- public final static int GUIDE_02_SUBTITLE_SHORTCUTEDIT_02 = BASE + 309;
- public final static int GUIDE_02_INFO_SHORTCUTEDIT = BASE + 310;
- }
- }
- }
- public final static class MANUALMAINMETROUI01 {
- public static final class ELEMENTS {
- final static int BASE = MANUAL_METROUI_MAIN;
- public static final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int GUIDE_CALENDAR = BASE + 101;
- public final static int GUIDE_CLOCK = BASE + 102;
- public final static int GUIDE_WEATHER = BASE + 103;
- public final static int GUIDE_FUNCTION = BASE + 104;
- public final static int GUIDE_NOTICE = BASE + 105;
- public final static int GUIDE_ICONS = BASE + 106;
- }
- public static final class BTNS {
- }
- public static final class TEXTS {
- public final static int GUIDE_INFO_CALENDAR = BASE + 300;
- public final static int GUIDE_INFO_CLOCK = BASE + 301;
- public final static int GUIDE_INFO_WEATHER = BASE + 302;
- public final static int GUIDE_INFO_FUNCTION = BASE + 303;
- public final static int GUIDE_INFO_NOTICE = BASE + 304;
- public final static int GUIDE_INFO_ICONS = BASE + 305;
- }
- }
- }
- public final static class MANUALMAINMETROUI02 {
- public static final class ELEMENTS {
- final static int BASE = MANUAL_METROUI_SUB_GROUP;
- public static final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int GUIDE_FUNCTIONS = BASE + 101;
- }
- public static final class BTNS {
- }
- public static final class TEXTS {
- public final static int GUIDE_FUNCTIONS = BASE + 300;
- }
- }
- }
- public final static class MANUALMAINHYOSUNGUI01 {
- public static final class ELEMENTS {
- final static int BASE = MANUAL_HYOSUNGUI_MAIN_HN;
- public static final class IMAGES {
- public final static int BACKGROUND = BASE + 100;
- public final static int GUIDE_CALENDAR = BASE + 101;
- public final static int GUIDE_CLOCK = BASE + 102;
- public final static int GUIDE_WEATHER = BASE + 103;
- public final static int GUIDE_FUNCTION = BASE + 104;
- public final static int GUIDE_NOTICE = BASE + 105;
- public final static int GUIDE_ICONS = BASE + 106;
- }
- public static final class BTNS {
- }
- public static final class TEXTS {
- public final static int GUIDE_INFO_CALENDAR = BASE + 300;
- public final static int GUIDE_INFO_CLOCK = BASE + 301;
- public final static int GUIDE_INFO_WEATHER = BASE + 302;
- public final static int GUIDE_INFO_FUNCTION = BASE + 303;
- public final static int GUIDE_INFO_NOTICE = BASE + 304;
- public final static int GUIDE_INFO_ICONS = BASE + 305;
- }
- }
- }
- }
- public static final class ICONS {
- public static int MENU_MAIN = 1000;
- public static int MENU_TALK = 2000;
- public static int MENU_CTRL = 3000;
- public static int MENU_ADD = 4000;
- public static int MENU_SECURITY = 5000;
- public static int MENU_ENERGY = 6000;
- public static int MENU_SETTING = 7000;
- public enum MENUS {
- MAIN_ELEVATOR(MENU_MAIN + 1, "엘리베이터", "Elevator"),
- MAIN_LIGHTS_OUT(MENU_MAIN + 2, "일괄소등", "Lights out"),
- MAIN_CALRENDAR(MENU_MAIN + 3, "캘린더", "Calendar"),
- MAIN_WEATHER(MENU_MAIN + 4, "날씨", "Weather"),
- TALK_FRONT(MENU_TALK + 1, "현관", "Front"),
- TALK_LOBBY(MENU_TALK + 2, "로비", "Lobby"),
- TALK_NEIGHBOR(MENU_TALK + 3, "이웃", "Neighbor"),
- TALK_GUARD(MENU_TALK + 4, "경비", "Guard"),
- TALK_PHONE(MENU_TALK + 5, "전화", "Phone"),
- TALK_CALLHISTORY(MENU_TALK + 101, "통화내역", "Call history"),
- TALK_VISITORPIC(MENU_TALK + 102, "방문자 사진", "Visitor picture"),
- CTRL_LIGHT(MENU_CTRL + 1, "조명", "Light"),
- CTRL_HEATING(MENU_CTRL + 2, "난방", "Heating"),
- CTRL_GAS(MENU_CTRL + 3, "가스", "Gas"),
- CTRL_DOORLOCK(MENU_CTRL + 4, "도어락", "Doorlock"),
- CTRL_VENT(MENU_CTRL + 5, "환기", "Ventilation"),
- CTRL_OUTLET(MENU_CTRL + 6, "콘센트", "Outlet"),
- CTRL_LIVINGLIGHT(MENU_CTRL + 7, "거실조명", "Livinglight"),
- CTRL_AIRQUALTY(MENU_CTRL + 8, "공기질", "Air quality"),
- CTRL_ELECCOOKTOP(MENU_CTRL + 9, "전기레인지", "Elec. cooktop"),
- CTRL_COOKTOPOUTLET(MENU_CTRL + 10, "쿡탑콘센트", "Cooktop\noutlet"),
- CTRL_CURTAIN(MENU_CTRL + 11, "커튼", "Curtain"),
- CTRL_SYSTEMAIRCON(MENU_CTRL + 12, "시스템\n에어컨", "System\naircon"),
- ADD_NOTICE(MENU_ADD + 1, "공지사항", "Notice"),
- ADD_WEATHER(MENU_ADD + 2, "날씨", "Weather"),
- ADD_MEMO(MENU_ADD + 3, "메모", "Memo"),
- ADD_E_FRAME(MENU_ADD + 4, "전자액자", "E-Frame"),
- ADD_SCHEDULE(MENU_ADD + 5, "일정표", "Schedule"),
- ADD_CCTV(MENU_ADD + 6, "CCTV", "CCTV"),
- ADD_PARKING(MENU_ADD + 7, "주차확인", "Parking"),
- ADD_PARKINGLIST(MENU_ADD + 8, "차량\n출입내역", "ParkingList"),
- ADD_ELECTRICCAR(MENU_ADD + 9, "전기차충전", "Electric car"),
- ADD_VOTE(MENU_ADD + 10, "주민투표", "Vote"),
- ADD_REPAIR(MENU_ADD + 11, "보수신청", "Repair"),
- ADD_LOCALINFO(MENU_ADD + 12, "지역정보", "Local info"),
- ADD_MAINTENANCECOST(MENU_ADD + 13, "관리비조회", "Maintenance cost"),
- ADD_UCITY(MENU_ADD + 14, "U-City", "U-City"),
- ADD_INTERLAYERNOISE(MENU_ADD + 15, "층간소음\n내역", "Inter-noise\nhistory"),
- ADD_INFORMATION(MENU_ADD + 16, "정보조회", "Info."),
- ADD_VISITEDVEHICLEREGI(MENU_ADD + 17, "방문객\n차량등록", "Visited\nvehicle"),
- ADD_BANDLOCATION(MENU_ADD + 18, "밴드위치\n확인", "Band\nlocation"),
- ADD_GUARDINGSTREETLAMP(MENU_ADD + 19, "안전가로등", "Guarding\nstreet lamp"),
- SECURITY_SETARMED(MENU_SECURITY + 1, "방범", "Security"),
- SECURITY_DEVICELINK(MENU_SECURITY + 2, "연동설정", "Out Ctrl"),
- SECURITY_DEVICELINKSLEEP(MENU_SECURITY + 3, "취침연동", "Sleep Ctrl"),
- SECURITY_ACCESSHISTORY(MENU_SECURITY + 4, "출입내역", "Access history"),
- SECURITY_VISITORVIDEO(MENU_SECURITY + 5, "방문자영상", "Visitor video"),
- ENERGY_ENERGYMETER(MENU_ENERGY + 1, "에너지미터", "Energy meter"),
- ENERGY_REMOTEMETER(MENU_ENERGY + 2, "원격검침", "Remote meter"),
- ENERGY_ENERGYCONSUMPTION(MENU_ENERGY + 3, "에너지\n사용량", "Energy\nconsumption"),
- ENERGY_ENERGYCOSTTABLE(MENU_ENERGY + 4, "에너지\n요금제", "Cost table"),
- ENERGY_SMARTPANEL(MENU_ENERGY + 5, "스마트\n분전반", "Smart Panel"), // Distribution Panel Board
- ENERGY_SMARTLIGHT(MENU_ENERGY + 6, "스마트 조명", "Smart Light"),
- ENERGY_SMARTOUTLET(MENU_ENERGY + 7, "스마트\n콘센트", "Smart Outlet"),
- SETTING_CONFIG(MENU_SETTING + 1, "환경설정", "Config"),
- SETTING_CLREANSCREEN(MENU_SETTING + 2, "화면청소", "Clean screen"),
- SETTING_PWCHANGE(MENU_SETTING + 3, "비밀번호", "Passcode"),
- SETTING_MORNINGCALL(MENU_SETTING + 4, "모닝콜", "Morning call"),
- SETTING_SMARTKEY(MENU_SETTING + 5, "스마트키", "Smartkey"),
- SETTING_SMARTBAND(MENU_SETTING + 6, "스마트밴드", "Smartband"),
- SETTING_ACCESSCARD(MENU_SETTING + 7, "카드관리", "Access card"),
- SETTING_CALENDAR(MENU_SETTING + 8, "시간설정", "Calendar"),
- SETTING_REMOTECALLUSER(MENU_SETTING + 9, "원격통화\n사용자관리", "Remote call"),
- SETTING_REMOTECTRL(MENU_SETTING + 10, "모바일\n기기등록", "Remote control"),
- SETTING_OCCUPANCYSENSOR(MENU_SETTING + 11, "재실센서\n설정", "Occupancy sensor");
- private final int nID; // 아이콘 ID
- private final String strNameKR; // 아이콘 이름 (한글)
- private final String strNameEN; // 아이콘 이름 (영어)
- MENUS(int id, String name_kr, String name_en) {
- this.nID = id;
- this.strNameKR = name_kr;
- this.strNameEN = name_en;
- }
- public int getID() {
- return nID;
- }
- public String getNameKR() {
- return strNameKR;
- }
- public String getNameEN() {
- return strNameEN;
- }
- }
- }
- public static final class LINKEDSCREEN {
- /**
- * 월패드 메인화면에서 서브화면을 호출할때 전달되어야할 데이터 리스트
- */
- public static final class SubMenuCtrl {
- public final static int BASE = 1000;
- public final static int HDC_LivingLamp = BASE + 11; // 현산거실조명( 제일전기 일체형조명제어기 )
- public final static int HDC_EachLamp = BASE + 12; // 현산각실조명( 에너지미터 )
- public final static int OutSide_livingLamp = BASE + 13; // 대외향 거실조명 ( 거실조명만 )
- public final static int OutSide_EachLamp = BASE + 14; // 대외향 각실조명 ( 멀티스위치 )
- public final static int Heating_V1 = BASE + 21; // 난방 V1
- public final static int Heating_V2 = BASE + 22; // 난방 V2
- public final static int Gas = BASE + 31; // 가스
- public final static int DoorLock485 = BASE + 41; // 도어락 485
- public final static int DoorLockWL = BASE + 42; // 도어락 무선
- public final static int Concent = BASE + 51; // 대기콘센트
- public final static int ChangAir_Normal = BASE + 61; // 환기 일반
- public final static int ChangAir_LH = BASE + 62; // 환기 LH
- public final static int ChangAir_Hood = BASE + 63; // 환기 후드
- public final static int SystemAircon = BASE + 71; // 시스템 에어컨
- public final static int Curtain = BASE + 81; // 커튼
- public final static int AirQualty = BASE + 91; // 공기질 센서
- public final static int ElecCooktop = BASE + 101; // 전기레인지
- public final static int CooktopOutlet = BASE + 111; // 쿡탑콘센트
- public final static int HDCLivingNEach_Lamp = BASE + 16; // 혼합형조명 ( 멀티스위치 )
- }
- public static final class SubMenuEnergy {
- public final static int BASE = 2000;
- public final static int RealTimeCheckMeter = BASE + 11; // 실시간 검침기
- public final static int RemoteMeter = BASE + 21; // 원격검침
- public final static int IEnergy = BASE + 31; // 에너지 미터
- public final static int CostTable = BASE + 41; // 에너지 요금 테이블
- public final static int EnergyMgr = BASE + 51; // 에너지 사용량
- public final static int SmartPanel = BASE + 61; // 스마트 분전반
- public final static int SmartLight = BASE + 71; // 스마트 조명
- public final static int SmartOutlet = BASE + 81; // 스마트 콘센트
- }
- public static final class SubCall {
- public final static int BASE = 3000;
- public final static int Door = BASE + 11; // 현관통화
- public final static int Lobby = BASE + 21; // 로비통화
- public final static int Neighboor = BASE + 31; // 이웃통화
- public final static int Guard = BASE + 41; // 경비실통화
- public final static int Pstn = BASE + 51; // 전화통화
- public final static int CallList = BASE + 61; // 통화내역
- public final static int Visitor = BASE + 71; // 방문자사진
- public final static int Door_Record = BASE + 81; // 거동수상자 녹화
- public final static int Door_TakePic = BASE + 91; // 거동수상자 사진촬영
- }
- public static final class SubMenuSecurity {
- public final static int BASE = 4000;
- public final static int SecurityMain = BASE + 11; // 외출.재택 설정 화면
- public final static int LinkDeviceSet = BASE + 21; // 외출시 연동기능 설정 화면
- public final static int lnkBedDeviceSet = BASE + 22; // 취침시 연동 기능 설정 화면
- public final static int AccessHistoryDoor = BASE + 31; // 외출시 연동기능 설정 화면
- public final static int VisitorVideo = BASE + 41; // 스마트현관카메라 방문자영상 화면
- }
- public static final class SubMenuAddService {
- public final static int BASE = 5000;
- public final static int Notice = BASE + 11; // 공지사항 화면
- public final static int Weather = BASE + 21; // 날씨 화면
- public final static int Memo = BASE + 31; // 메모 화면
- public final static int AutoPicture = BASE + 41; // 전자액자 화면
- public final static int Schedule = BASE + 51; // 일정표 화면
- public final static int Cctv = BASE + 61; // CCTV 화면
- public final static int Parking = BASE + 71; // 주차확인 화면
- public final static int ParkingList = BASE + 81; // 차량출입내역 화면
- public final static int Repair = BASE + 91; // 보수신청
- public final static int Vote = BASE + 101; // 주민투표
- public final static int LocalInfo = BASE + 111; // 지역정보
- public final static int Cost = BASE + 121; // 관리비조회
- public final static int UCity = BASE + 131; // U-City
- public final static int ElecCar = BASE + 141; // 전기차 충전
- public final static int InterlayerNoiseHistory = BASE + 151; // 층간소음 센서 목록
- public final static int VisitedVehicleRegi = BASE + 161; // 방문객차량등록
- public final static int BandLocation = BASE + 171; // 밴드위치확인
- public final static int GuardingStreetLamp = BASE + 181; // 안전가로등
- }
- public static final class SubMenuConfig {
- public final static int BASE = 6000;
- public final static int Configuration = BASE + 11; // 환경설정
- public final static int CleanLcd = BASE + 21; // 화면청소
- public final static int PassWordChange = BASE + 31; // 비밀번호변경
- public final static int SkinChange = BASE + 41; // 메인화면 설정
- public final static int MoningCall = BASE + 51; // 모닝콜
- public final static int SmartKey = BASE + 61; // 스마트키
- public final static int RfCard = BASE + 62; // 카드관리(RF카드)
- public final static int UksKey = BASE + 63; // 카드관리(UKS-Ukey)
- public final static int TimeSetting = BASE + 71; // 시간설정
- public final static int DisabledPerson = BASE + 81; // 장애인모드 설정
- public final static int Manual = BASE + 91; //메뉴얼
- public final static int RemoteCallUser = BASE + 101; // 방문객원격통화 사용자관리
- public final static int MobileDeviceReg = BASE + 111; // 모바일기기등록
- public final static int OccupancySensorConfig = BASE + 121; // 스마트 재실센서 설정
- public final static int SmartBand = BASE + 131; // 스마트키/밴드
- }
- public static final class SubEmergency {
- public final static int BASE = 7000;
- public final static int EMER_ALARM = BASE + 11; // 비상
- public final static int FIRE_ALARM = BASE + 21; // 경보
- public final static int BREAKIN_ALARM = BASE + 31; // 침입
- public final static int LADDER_ALARM = BASE + 41; // 피난사다리
- }
- public static final class OtherFunc {
- public final static int BASE = 8000;
- public final static int ELEVATOR_CALL = BASE + 11;
- public final static int MODE_LAMP = BASE + 12;
- public final static int AUTO_PICTURE_RUN = BASE + 13;
- public final static int INSERT_WIDGET = BASE + 14;
- public final static int IGAL_CTRL = BASE + 15;
- }
- }
- public static final class SHORTCUTS {
- static String TAG = "SHORTCUTS";
- public class IDS {
- public final static int EMPTY = 0;
- public final static int ELEVATOR = 1;
- public final static int ALL_LAMP = 2;
- public final static int MODE_LAMP = 3;
- public final static int AUTO_PIC_RUN = 4;
- // 제어
- public final static int CTRL_LAMP = 20;
- public final static int CTRL_GAS = 21;
- public final static int CTRL_HEATING = 22;
- public final static int CTRL_CHANGEAIR = 23;
- public final static int CTRL_DOORLOCK = 24;
- public final static int CTRL_CONCENT = 25;
- public final static int CTRL_SYSTEMAIRCON = 26;
- public final static int CTRL_CURTAIN =27;
- // 부가서비스
- public final static int SER_NOTICE = 41;
- public final static int SER_WEATHER = 42;
- public final static int SER_MEMO = 43;
- public final static int SER_AUTOPIC = 44;
- public final static int SER_SCHEDULE = 45;
- public final static int SER_CCTV = 46;
- public final static int SER_PARKING = 47;
- public final static int SER_PARKINGLIST = 48;
- // 통화
- public final static int CALL_FRONT = 60;
- public final static int CALL_GUARD = 61;
- public final static int CALL_NEIGH = 62;
- public final static int CALL_PSTN = 63;
- public final static int CALL_LIST = 64;
- public final static int CALL_PHOTO = 65;
- // 설정
- public final static int CON_MAINCHANGE = 70;
- public final static int CON_MONINGCALL = 71;
- public final static int CON_SETTING = 72;
- public final static int CON_CLEAN_LCD = 73;
- public final static int CON_PW_CHNAGE = 74;
- public final static int CON_TIMESET = 75;
- // 에너지 관리
- public final static int ENERGY_REALTIME_METER = 80;
- public final static int ENERGY_SERVER_METER = 81;
- public final static int ENERGY_I_PARK_METER = 82;
- // 추가 버튼
- public final static int PLUS_WIDGHET = 100;
- }
- public class NAMES {
- public final static String EMPTY = "none";
- public final static String ELEVATOR = "엘리베이터";
- public final static String ALL_LAMP = "일괄소등";
- public final static String MODE_LAMP = "무드등";
- public final static String AUTO_PIC_RUN = "전자액자";
- // 제어
- public final static String CTRL_LAMP = "조명";
- public final static String CTRL_GAS = "가스";
- public final static String CTRL_HEATING = "난방";
- public final static String CTRL_CHANGEAIR = "환기";
- public final static String CTRL_DOORLOCK = "도어락";
- public final static String CTRL_CONCENT = "콘센트";
- public final static String CTRL_SYSTEMAIRCON = "에어컨";
- public final static String CTRL_CURTAIN = "커튼";
- // 부가서비스
- public final static String SER_NOTICE = "공지사항";
- public final static String SER_WEATHER = "날씨";
- public final static String SER_MEMO = "메모";
- public final static String SER_AUTOPIC = "전자액자";
- public final static String SER_SCHEDULE = "일정";
- public final static String SER_CCTV = "CCTV";
- public final static String SER_PARKING = "주차위치";
- public final static String SER_PARKINGLIST = "차량출입내역";
- // 통화
- public final static String CALL_FRONT = "현관";
- public final static String CALL_GUARD = "경비실";
- public final static String CALL_NEIGH = "이웃";
- public final static String CALL_PSTN = "전화";
- public final static String CALL_LIST = "통화내역";
- public final static String CALL_PHOTO = "방문자사진";
- // 설정
- public final static String CON_MAINCHANGE = "메인화면설정";
- public final static String CON_MONINGCALL = "모닝콜";
- public final static String CON_SETTING = "설정";
- public final static String CON_CLEAN_LCD = "화면청소";
- public final static String CON_PW_CHNAGE = "비밀번호 변경";
- public final static String CON_TIMESET = "시간설정";
- // 에너지 관리
- public final static String ENERGY_REALTIME_METER = "실시간에너지";
- public final static String ENERGY_SERVER_METER = "원격검침";
- public final static String ENERGY_I_PARK_METER = "IEMS";
- // 추가 버튼
- public final static String PLUS_WIDGHET = "추가";
- }
- public static String getName(int nID) {
- try {
- switch (nID) {
- case IDS.EMPTY: return NAMES.EMPTY;
- case IDS.ELEVATOR: return NAMES.ELEVATOR;
- case IDS.ALL_LAMP: return NAMES.ALL_LAMP;
- case IDS.MODE_LAMP: return NAMES.MODE_LAMP;
- case IDS.AUTO_PIC_RUN: return NAMES.AUTO_PIC_RUN;
- case IDS.CTRL_LAMP: return NAMES.CTRL_LAMP;
- case IDS.CTRL_GAS: return NAMES.CTRL_GAS;
- case IDS.CTRL_HEATING: return NAMES.CTRL_HEATING;
- case IDS.CTRL_CHANGEAIR: return NAMES.CTRL_CHANGEAIR;
- case IDS.CTRL_DOORLOCK: return NAMES.CTRL_DOORLOCK;
- case IDS.CTRL_CONCENT: return NAMES.CTRL_CONCENT;
- case IDS.CTRL_SYSTEMAIRCON: return NAMES.CTRL_SYSTEMAIRCON;
- case IDS.CTRL_CURTAIN: return NAMES.CTRL_CURTAIN;
- case IDS.SER_NOTICE: return NAMES.SER_NOTICE;
- case IDS.SER_WEATHER: return NAMES.SER_WEATHER;
- case IDS.SER_MEMO: return NAMES.SER_MEMO;
- case IDS.SER_AUTOPIC: return NAMES.SER_AUTOPIC;
- case IDS.SER_SCHEDULE: return NAMES.SER_SCHEDULE;
- case IDS.SER_CCTV: return NAMES.SER_CCTV;
- case IDS.SER_PARKING: return NAMES.SER_PARKING;
- case IDS.SER_PARKINGLIST: return NAMES.SER_PARKINGLIST;
- case IDS.CALL_FRONT: return NAMES.CALL_FRONT;
- case IDS.CALL_GUARD: return NAMES.CALL_GUARD;
- case IDS.CALL_NEIGH: return NAMES.CALL_NEIGH;
- case IDS.CALL_PSTN: return NAMES.CALL_PSTN;
- case IDS.CALL_LIST: return NAMES.CALL_LIST;
- case IDS.CALL_PHOTO: return NAMES.CALL_PHOTO;
- case IDS.CON_MAINCHANGE: return NAMES.CON_MAINCHANGE;
- case IDS.CON_MONINGCALL: return NAMES.CON_MONINGCALL;
- case IDS.CON_SETTING: return NAMES.CON_SETTING;
- case IDS.CON_CLEAN_LCD: return NAMES.CON_CLEAN_LCD;
- case IDS.CON_PW_CHNAGE: return NAMES.CON_PW_CHNAGE;
- case IDS.CON_TIMESET: return NAMES.CON_TIMESET;
- case IDS.ENERGY_REALTIME_METER: return NAMES.ENERGY_REALTIME_METER;
- case IDS.ENERGY_SERVER_METER: return NAMES.ENERGY_SERVER_METER;
- case IDS.ENERGY_I_PARK_METER: return NAMES.ENERGY_I_PARK_METER;
- case IDS.PLUS_WIDGHET: return NAMES.PLUS_WIDGHET;
- default: return "none";
- }
- } catch (Exception e) {
- Log.e(TAG, "[Exception] getName(int nID)");
- e.printStackTrace();
- return "error";
- }
- }
- }
- }
|