Changes between Version 4 and Version 5 of Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook


Ignore:
Timestamp:
02/08/24 11:38:44 (10 months ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook

    v4 v5  
    223223
    224224}}}
     225
     226
     227{{{
     228void IDScreen(void)
     229{
     230#if ARM64
     231        CFormRect rect, rectInp;
     232
     233        FORM_INIT(ID, EventIDShow, NULL, NULL, NULL, nFormFlgShowHelp);
     234
     235        SetupInputFormToUseFontSet(formID, rect, rectInp, LANG(STR_ID_PROMPT));
     236
     237        FORM_ADD_INPUT2(ID, ID, rect,   rectInp, LANG(STR_ID_PROMPT) , 10, 0, 0, NULL, id, 0, NULL, LANG(STR_ID_HELP));
     238#else
     239        FORM_INIT(ID, EventIDShow, NULL, NULL, NULL, nFormFlgShowHelp);
     240        FORM_ADD_INPUT(ID, ID, INPUT_ID_X, INPUT_ID_Y, LANG(STR_ID_PROMPT) , 10, 0, 0, NULL, id, 0, NULL, LANG(STR_ID_HELP));
     241#endif
     242        FORM_SHOW(ID);
     243        FORM_RUN(ID);
     244        FORM_HIDE(ID);
     245}
     246
     247
     248}}}