📄 mmitoolkit.h
字号:
/********************************************************************************
CONDAT (UK)
/********************************************************************************
This software product is the property of Condat (UK) Ltd and may not be
disclosed to any third party without the express permission of the owner.
********************************************************************************
$Project name: Basic MMI
$Project code: BMI (6349)
$Module: Timer
$File: Mmitoolkit.h
$Revision: 1.0
$Author: Condat(UK)
$Date: 25/10/00
********************************************************************************
Description:
This provides the start code for the MMI
********************************************************************************
$History: MmiStart.h
25/10/00 Original Condat(UK) BMI version.
27/08/02 gdy add
$End
*******************************************************************************/
#ifndef _MMITOOL_H
#define _MMITOOL_H 1
#if 0
typedef struct
{
T_MMI_CONTROL mmi_control;
T_MFW_HND parent_win;
T_MFW_HND win;
T_MFW_HND info_tim;
T_MFW_HND kbd;
T_EDITOR_DATA editor_data;
T_MFW_HND editor_win;
char display_id1[12];
MfwEdtAttr editAttr;
}timerdata;
typedef struct
{
T_MMI_CONTROL mmi_control;
T_MFW_HND parent_win;
T_MFW_HND editor_win;
T_MFW_HND info_tim;
T_MFW_HND kbd_handle;
T_MFW_HND editor_handle;
MfwEdtAttr editAttr;
UBYTE index;
char display_id1[12];
char elapsed_time[8];
int cursor;
BOOL LeftKey;
}T_timer_edt;
typedef enum
{
TIMER_INIT,
TIMER_END
}timer_event;
typedef enum
{
TIMER_START,
MIDDLE,
END
}timer_status;
int tooltimer(MfwMnu* m, MfwMnuItem* i);
int timer_edt_win_cb(T_MFW_EVENT event,T_MFW_WIN * win);
int timenumber=0;
T_MFW_HND toolkit_timer;
#endif
#endif //_MMITOOL_H clrobert
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -