📄 mode.h
字号:
/***********************************************************************/
/* File: */
/* Copyright (c) 2000 ZORAN Corporation, All Rights Reserved */
/* THIS IS PROPRIETARY SOURCE CODE OF ZORAN CORPORATION */
/* */
/* =========== */
/* Descripton: */
/* =========== */
/* */
/* Log: */
/* === */
/* $Name: V_1_16 V_1_15 V_1_14 V_1_13 V_1_12 NV_1_00 V_1_11 V_1_0A V_1_08 V_1_06 V_1_05 V_1_04 V_1_03 V_1_02 V_1_01 V_1_00 B_0_90%2E1 B_0_90 B_0_87 B_0_86 $
/* $Header: v:/dsg/rcs/dsg/vp2k/Customer/menu/zoran/mode.h 1.8 2000/12/16 00:21:35 charlie Exp $
/* $Log: mode.h $
/* Revision 1.8 2000/12/16 00:21:35 charlie
/* Added ITEMNUM_ANY_MODE_OFF
/* Revision 1.7 2000/11/14 05:30:08 charlie
/* Added extern g_b_mode_pending
/* Revision 1.6 2000/11/09 04:07:32 cliff
/***********************************************************************/
#ifndef _MODE_H_
#define _MODE_H_
extern BYTE g_b_mode_pending;
//
// General mode item information
//
#define ITEMNUM_ANY_MODE_OFF 0
//
// Mode item information
//
#define ITEMNUM_NOVCD_OFF 0
#define ITEMNUM_NOVCD_SHUFFLE 1
#define ITEMNUM_NOVCD_PROGRAM 2
extern const OSD_MESSAGES novcd_mode_list_c[];
extern const MS_TEXT_LIST novcd_mode_list;
//
// Mode, no program list, item information
//
#define ITEMNUM_NOVCD_NOPROG_OFF 0
#define ITEMNUM_NOVCD_NOPROG_SHUFFLE 1
extern const OSD_MESSAGES novcd_noprog_mode_list_c[];
extern const MS_TEXT_LIST novcd_noprog_mode_list;
//
// VCD Mode item information
//
#define ITEMNUM_VCD_OFF 0
#define ITEMNUM_VCD_SHUFFLE 1
#define ITEMNUM_VCD_PBC 2
#define ITEMNUM_VCD_PROGRAM 3
extern const OSD_MESSAGES vcd_mode_list_c[];
extern const MS_TEXT_LIST vcd_mode_list;
//
// VCD, no program list, Mode item information
//
#define ITEMNUM_VCD_NOPROG_OFF 0
#define ITEMNUM_VCD_NOPROG_SHUFFLE 1
#define ITEMNUM_VCD_NOPROG_PBC 2
extern const OSD_MESSAGES vcd_noprog_mode_list_c[];
extern const MS_TEXT_LIST vcd_noprog_mode_list;
//
// Repeat item information
//
#define ITEMNUM_REPEAT_OFF 0
#define ITEMNUM_REPEAT_SINGLE 1
#define ITEMNUM_REPEAT_ALL 2
extern const OSD_MESSAGES repeat_list_c[];
extern const MS_TEXT_LIST repeat_list;
extern const OSD_MESSAGES repeat_list_dvd_c[];
extern const MS_TEXT_LIST repeat_list_dvd;
#ifdef D_PICTURE_CD_ENABLED //DM1114 disable repeat one for jpg
extern const MS_TEXT_LIST repeat_list_jpg;
void repeat_action_jpg(int num);
#endif
//
// Mode handling
//
MS_CHOICE *open_mode_choice( const MS_POS *pItemPos, MS_COLOR msColor, const MS_POS *pChoicePos );
//
// Non-VCD Mode handling
//
void novcd_mode_choice(MS_CHOICE *msChoice);
void novcd_mode_action(int num);
//
// VCD Mode handling
//
void vcd_mode_choice(MS_CHOICE *msChoice);
void vcd_mode_action(int num);
//
// Repeat handling
//
void repeat_choice(MS_CHOICE *msChoice);
void repeat_action(int num);
#endif // _MODE_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -