📄 uimisc.c
字号:
/*
* Start of Zoran Standard Header
* Copyright (c) 2005 Zoran Corporation
*
*
* All rights reserved. Proprietary and confidential.
*
* DESCRIPTION for uimisc.c
* Miscellaneous routines to support the text-only user interface.
*
* NEW HISTORY COMMENT (description must be followed by a blank line)
* <Enter change description here>
* ===== HISTORY of changes in //depot/imgeng/sw/se_gw/ui/fs/comboui/uimisc.c
*
* 19/Aug/05 #4 dstrauss Init hardware access and text LCD interface.
* 16/Aug/05 #3 dstrauss Include textkbd.h
* 16/Aug/05 #2 dstrauss Init low-level keyboard interface
* and connection to text-only UI handler.
* 5/Aug/05 #1 dstrauss Created.
*
* End of Zoran Standard Header
*/
#include "univ.gh"
#include "arch.h"
#include "pile.h"
#include "dbg.h"
#include "standard.h"
#include "uimisc.h"
#include "uilcd.h"
#include "ledif.h" /* low-level LED interface */
#include "kbdif.h"
#include "uikbd.h"
#include "textkbd.h"
#include "textlcd.h"
#include "hwaccess.h"
void UIHdwInit()
{
hwAccessInit();
LEDIFinit(); /* init the LED interface */
KBDIFinit(); /* init the keyboard interface */
}
void FPprintFatalText(char* pText)
{
}
void UIInitLCD(Uint8 FocusId, Uint8 *FocusData)
{
TextLCDInit();
}
void UIInitKbd()
{
TextKbdInit(); /* init the text UI keyboard handler */
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -