?? startapplication.c
字號:
/*********************************************************************
* SEGGER MICROCONTROLLER SYSTEME GmbH *
* Solutions for real time microcontroller applications *
**********************************************************************
* *
* (c) 1996 - 2007 SEGGER Microcontroller Systeme GmbH *
* *
* Internet: www.segger.com Support: support@segger.com *
* *
**********************************************************************
** emWin V4.14 - Graphical user interface for embedded applications **
emWin is protected by international copyright laws. Knowledge of the
source code may not be used to write a similar product. This file may
only be used in accordance with a license and should not be re-
distributed in any way. We appreciate your understanding and fairness.
----------------------------------------------------------------------
File : MainTask.c
Purpose : Main program, called from after main after initialisation
---------------------------END-OF-HEADER------------------------------
*/
#include <stddef.h>
#include "GUI.h"
#include "DIALOG.h"
/*********************************************************************
*
* Types
*
**********************************************************************
*/
typedef struct {
const GUI_WIDGET_CREATE_INFO * pResource;
int nEntrys;
} DIALOG_RESOURCE;
/*********************************************************************
*
* Defines
*
**********************************************************************
*/
/* Button id's used for key pad */
#define BUTTON_ID_0 GUI_ID_USER + 0
#define BUTTON_ID_1 GUI_ID_USER + 1
#define BUTTON_ID_2 GUI_ID_USER + 2
#define BUTTON_ID_3 GUI_ID_USER + 3
#define BUTTON_ID_4 GUI_ID_USER + 4
#define BUTTON_ID_5 GUI_ID_USER + 5
#define BUTTON_ID_6 GUI_ID_USER + 6
#define BUTTON_ID_7 GUI_ID_USER + 7
#define BUTTON_ID_8 GUI_ID_USER + 8
#define BUTTON_ID_9 GUI_ID_USER + 9
#define BUTTON_ID_PREV GUI_ID_USER + 10
#define BUTTON_ID_NEXT GUI_ID_USER + 11
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -