Lines Matching refs:printY

148     s16     printY  = MENU_BOX_TL_Y;  in RenderMenu()  local
152 for ( iMenu = 0; iMenu < NUM_MSG_BOX_MENUS; ++iMenu, printY += FONT_LEADING ) in RenderMenu()
160 (void)DEMORFPrintf( (s16)(printX - FONT_SIZE), printY, 0, "%s", STR_CURSOR ); in RenderMenu()
165 printX += DEMORFPrintf( printX, printY, 0, "[%s]", STR_MSG_BOX_MENU[iMenu] ); in RenderMenu()
170 (void)DEMORFPrintf( printX, printY, 0, "(%u)", g_numMsgs[MB_TYPE_RECV] ); in RenderMenu()
175 (void)DEMORFPrintf( printX, printY, 0, "(%u)", g_numMsgs[MB_TYPE_SEND] ); in RenderMenu()
189 s16 printY = LIST_BOX_TL_Y; in RenderMsgList() local
196 printY += FONT_LEADING; in RenderMsgList()
198 (void)DEMORFPrintf( printX, printY, 0, "(%s box has no message.)", in RenderMsgList()
203 (void)DEMORFPrintf( printX, printY, 0, "ID:" ); in RenderMsgList()
205 (void)DEMORFPrintf( printX, printY, 0, "Subject:" ); in RenderMsgList()
213 printY += FONT_LEADING; in RenderMsgList()
219 (void)DEMORFPrintf( (s16)(printX - FONT_SIZE), printY, 0, "%s", STR_CURSOR ); in RenderMsgList()
224 (void)DEMORFPrintf( printX, printY, 0, "[%08d] ", g_idListBuf[mbType][idxMsgId] ); in RenderMsgList()
226 (void)DEMORFPrintf( printX, printY, 0, "%s", g_subjectBuf[mbType][idxSubjectBuf] ); in RenderMsgList()
243 s16 printY; in RenderMsgContent() local
248 printY = HEADER_BOX_TL_Y; in RenderMsgContent()
251 (void)DEMORFPrintf( printX, printY, 0, "[From]" ); in RenderMsgContent()
252 PrintFrom( (s16)(printX + indent), printY, &g_msgData ); in RenderMsgContent()
254 printY += FONT_LEADING; in RenderMsgContent()
255 (void)DEMORFPrintf( printX, printY, 0, "[To]" ); in RenderMsgContent()
256 PrintTo( (s16)(printX + indent), printY, &g_msgData ); in RenderMsgContent()
258 printY += FONT_LEADING; in RenderMsgContent()
259 (void)DEMORFPrintf( printX, printY, 0, "[Subject]" ); in RenderMsgContent()
260 PrintSubject( (s16)(printX + indent), printY, &g_msgData ); in RenderMsgContent()
264 printY = TEXT_BOX_TL_Y; in RenderMsgContent()
265 PrintBodyText( printX, printY, &g_msgData ); in RenderMsgContent()
271 printY -= FONT_SIZE; in RenderMsgContent()
274 (void)DEMORFPrintf( printX, printY, 0, "%s", STR_UPARROW ); in RenderMsgContent()
278 (void)DEMORFPrintf( printX, printY, 0, "%s", STR_CANNOT_SCROLL ); in RenderMsgContent()
281 printY += TEXT_BOX_ROWS * FONT_LEADING + FONT_SIZE; in RenderMsgContent()
284 (void)DEMORFPrintf( printX, printY, 0, "%s", STR_DOWNARROW ); in RenderMsgContent()
288 (void)DEMORFPrintf( printX, printY, 0, "%s", STR_CANNOT_SCROLL ); in RenderMsgContent()
293 printY = (s16)(HOWTO_BOX_TL_Y - (2 * FONT_LEADING)); in RenderMsgContent()
294 printX += DEMORFPrintf( printX, printY, 0, "(Push " ); in RenderMsgContent()
297 printX += DEMORFPrintf( printX, printY, 0, "<A>" ); in RenderMsgContent()
300 (void)DEMORFPrintf( printX, printY, 0, " to DELETE this message.)" ); in RenderMsgContent()
315 s16 printY = TEXT_BOX_TL_Y; in RenderTextDeleteMsg() local
318 (void)DEMORFPrintf( printX, printY, 0, "Are you sure you want to delete this message?" ); in RenderTextDeleteMsg()
320 printY += 2 * FONT_LEADING; in RenderTextDeleteMsg()
322 printX += DEMORFPrintf( printX, printY, 0, "Push " ); in RenderTextDeleteMsg()
324 printX += DEMORFPrintf( printX, printY, 0, "<A>" ); in RenderTextDeleteMsg()
326 (void)DEMORFPrintf( printX, printY, 0, " to DELETE this message." ); in RenderTextDeleteMsg()
329 printY += FONT_LEADING; in RenderTextDeleteMsg()
330 printX += DEMORFPrintf( printX, printY, 0, "Push " ); in RenderTextDeleteMsg()
332 printX += DEMORFPrintf( printX, printY, 0, "<B>" ); in RenderTextDeleteMsg()
334 (void)DEMORFPrintf( printX, printY, 0, " to CANCEL." ); in RenderTextDeleteMsg()
348 s16 printY = TEXT_BOX_TL_Y; in RenderTextBeforeRecvMsg() local
350 printX += DEMORFPrintf( printX, printY, 0, "Push " ); in RenderTextBeforeRecvMsg()
352 printX += DEMORFPrintf( printX, printY, 0, "<A>" ); in RenderTextBeforeRecvMsg()
354 (void)DEMORFPrintf( printX, printY, 0, " to RECEIVE a test message." ); in RenderTextBeforeRecvMsg()
357 printY += FONT_LEADING; in RenderTextBeforeRecvMsg()
358 printX += DEMORFPrintf( printX, printY, 0, "Push " ); in RenderTextBeforeRecvMsg()
360 printX += DEMORFPrintf( printX, printY, 0, "<B>" ); in RenderTextBeforeRecvMsg()
362 (void)DEMORFPrintf( printX, printY, 0, " to CANCEL." ); in RenderTextBeforeRecvMsg()
376 s16 printY = TEXT_BOX_TL_Y; in RenderTextBeforePostMsg() local
378 printX += DEMORFPrintf( printX, printY, 0, "Push " ); in RenderTextBeforePostMsg()
380 printX += DEMORFPrintf( printX, printY, 0, "<A>" ); in RenderTextBeforePostMsg()
382 (void)DEMORFPrintf( printX, printY, 0, " to POST a test message." ); in RenderTextBeforePostMsg()
385 printY += FONT_LEADING; in RenderTextBeforePostMsg()
386 printX += DEMORFPrintf( printX, printY, 0, "Push " ); in RenderTextBeforePostMsg()
388 printX += DEMORFPrintf( printX, printY, 0, "<B>" ); in RenderTextBeforePostMsg()
390 (void)DEMORFPrintf( printX, printY, 0, " to CANCEL." ); in RenderTextBeforePostMsg()
404 s16 printY = TEXT_BOX_TL_Y; in RenderTextDoneRecvMsg() local
406 (void)DEMORFPrintf( printX, printY, 0, "Received a test message successfully." ); in RenderTextDoneRecvMsg()
408 printY += 2 * FONT_LEADING; in RenderTextDoneRecvMsg()
409 printX += DEMORFPrintf( printX, printY, 0, "Push " ); in RenderTextDoneRecvMsg()
411 printX += DEMORFPrintf( printX, printY, 0, "<A>" ); in RenderTextDoneRecvMsg()
413 (void)DEMORFPrintf( printX, printY, 0, " to return to MENU." ); in RenderTextDoneRecvMsg()
427 s16 printY = TEXT_BOX_TL_Y; in RenderTextDonePostMsg() local
429 (void)DEMORFPrintf( printX, printY, 0, "Posted a test message successfully." ); in RenderTextDonePostMsg()
431 printY += 2 * FONT_LEADING; in RenderTextDonePostMsg()
432 printX += DEMORFPrintf( printX, printY, 0, "Push " ); in RenderTextDonePostMsg()
434 printX += DEMORFPrintf( printX, printY, 0, "<A>" ); in RenderTextDonePostMsg()
436 (void)DEMORFPrintf( printX, printY, 0, " to return to MENU." ); in RenderTextDonePostMsg()
450 s16 printY = TEXT_BOX_TL_Y; in RenderTextLibClosed() local
455 (void)DEMORFPrintf( printX, printY, 0, "NWC24 LIBRARY CLOSED." ); in RenderTextLibClosed()
456 printY += 2 * FONT_LEADING; in RenderTextLibClosed()
457 printX += DEMORFPrintf( printX, printY, 0, "Scheduler is working now. Press " ); in RenderTextLibClosed()
459 printX += DEMORFPrintf( printX, printY, 0, "<A>" ); in RenderTextLibClosed()
461 (void)DEMORFPrintf( printX, printY, 0, " to open again." ); in RenderTextLibClosed()
477 s16 printY = TEXT_BOX_TL_Y; in RenderTextWaitOpen() local
484 printX += DEMORFPrintf( printX, printY, 0, "Please wait ..." ); in RenderTextWaitOpen()
488 (void)DEMORFPrintf( printX, printY, 0, " (CODE:%d)", errorCode ); in RenderTextWaitOpen()
505 s16 printY = TEXT_BOX_TL_Y; in RenderError() local
512 (void)DEMORFPrintf( printX, printY, 0, "ERROR OCCURED. (CODE:%d)", errorCode ); in RenderError()
529 s16 printY = HOWTO_BOX_TL_Y; in RenderHowToUse() local
532 printX += DEMORFPrintf( printX, printY, 0, "<UP/DOWN>" ); in RenderHowToUse()
534 printX += DEMORFPrintf( printX, printY, 0, " Select or Scroll " ); in RenderHowToUse()
536 printX += DEMORFPrintf( printX, printY, 0, "<A>" ); in RenderHowToUse()
538 printX += DEMORFPrintf( printX, printY, 0, " Enter " ); in RenderHowToUse()
540 printX += DEMORFPrintf( printX, printY, 0, "<B>" ); in RenderHowToUse()
544 printX += DEMORFPrintf( printX, printY, 0, " Close " ); in RenderHowToUse()
548 printX += DEMORFPrintf( printX, printY, 0, " Cancel " ); in RenderHowToUse()
553 (void)DEMORFPrintf( printX, printY, 0, "%d", frame ); in RenderHowToUse()
638 s16 printY; in PrintBodyText() local
670 printY = (s16)(y + ((rowCount - g_lineTopOfBodyText) * FONT_LEADING)); in PrintBodyText()
671 (void)DEMORFPutsEx( printX, printY, 0, pt, (s16)(pxWidth + 1), next - pt ); in PrintBodyText()