/*********************************************************************
* *
* SEGGER Microcontroller GmbH & Co. KG *
* Solutions for real time microcontroller applications *
* *
**********************************************************************
* *
* C-file generated by: *
* *
* GUI_Builder for emWin version 5.32 *
* Compiled Oct 8 2015, 11:59:02 *
* (c) 2015 Segger Microcontroller GmbH & Co. KG *
* *
**********************************************************************
* *
* Internet: www.segger.com Support: support@segger.com *
* *
**********************************************************************
*/
// USER START (Optionally insert additional includes)
// USER END
#include "DIALOG.h"
#include "stdlib.h"
/*********************************************************************
*
* Defines
*
**********************************************************************
*/
#define ID_FRAMEWIN_0 (GUI_ID_USER + 0x00)
#define ID_GRAPH_0 (GUI_ID_USER + 0x01)
// USER START (Optionally insert additional defines)
// USER END
/*********************************************************************
*
* Static data
*
**********************************************************************
*/
static GRAPH_SCALE_Handle hScaleV; //--------------(1)
static GRAPH_DATA_Handle ahData;
// USER START (Optionally insert additional static data)
// USER END
/*********************************************************************
*
* _aDialogCreate
*/
static const GUI_WIDGET_CREATE_INFO _aDialogCreate[] = {
{ FRAMEWIN_CreateIndirect, "Framewin", ID_FRAMEWIN_0, 0, 0, 800, 480, 0, 0x64, 0 },
{ GRAPH_CreateIndirect, "Graph", ID_GRAPH_0, 10, 10, 400, 240, 0, 0x0, 0 }, //--------------(2)
// USER START (Optionally insert additional widgets)
// USER END
};
/*********************************************************************
*
* Static code
*
**********************************************************************
*/
// USER START (Optionally insert additional static code)
// USER END
/*********************************************************************
*
* _cbDialog
*/
static void _cbDialog(WM_MESSAGE * pMsg) {
WM_HWIN hItem;
// USER START (Optionally insert additional variables)
// USER END
switch (pMsg->MsgId) {
case WM_INIT_DIALOG:
//
// Initialization of 'Framewin'
//
hItem = pMsg->hWin;
FRAMEWIN_SetFont(hItem, GUI_FONT_32B_ASCII);
FRAMEWIN_SetText(hItem, "armfly");
FRAMEWIN_SetTextAlign(hItem, GUI_TA_HCENTER | GUI_TA_VCENTER);
//
// Initialization of 'Graph'
//
hItem = WM_GetDialogItem(pMsg->hWin, ID_GRAPH_0); //--------------(3)
/* 创建数据对象 ***********************/
ahData = GRAPH_DATA_YT_Create(GUI_GREEN, 400, 0, 0); //--------------(4)
/* 数据对象添加到图形控件 */
GRAPH_AttachData(hItem, ahData); //--------------(5)
/* 设置Y轴方向的栅格间距 */
GRAPH_SetGridDistY(hItem, 20); //--------------(6)
/* 固定X轴方向的栅格 */
GRAPH_SetGridFixedX(hItem, 1); //--------------(7)
/* 设置栅格可见 */
GRAPH_SetGridVis(hItem, 1); //--------------(8)
/* 创建刻度对象 ********************/
hScaleV = GRAPH_SCALE_Create( 20, GUI_TA_RIGHT, GRAPH_SCALE_CF_VERTICAL, 20); //--------------(9)
/* 将垂直刻度对象添加到图形控件 */
GRAPH_AttachScale(hItem, hScaleV); //--------------(10)
/* 用于设置比例刻度的因子 */
GRAPH_SCALE_SetFactor(hScaleV, 0.5); //--------------(11)
/* 设置标签字体颜色 */
GRAPH_SCALE_SetTextColor(hScaleV, GUI_RED); //--------------(12)
/* 设置上下左右边界的大小 */
GRAPH_SetBorder(hItem, 20, 10, 10, 10); //--------------(13)
// USER START (Optionally insert additional code for further widget initialization)
// USER END
break;
// USER START (Optionally insert additional message handling)
// USER END
default:
WM_DefaultProc(pMsg);
break;
}
}
/*********************************************************************
*
* Public code
*
**********************************************************************
*/
/*********************************************************************
*
* CreateFramewin
*/
WM_HWIN CreateFramewin(void);
WM_HWIN CreateFramewin(void) {
WM_HWIN hWin;
hWin = GUI_CreateDialogBox(_aDialogCreate, GUI_COUNTOF(_aDialogCreate), _cbDialog, WM_HBKWIN, 0, 0);
return hWin;
}
/*********************************************************************
*
* MainTask
*/
void MainTask(void)
{
/* 初始化 */
GUI_Init();
/* 窗口自动使用存储设备 */
WM_SetCreateFlags(WM_CF_MEMDEV);
/* 创建对话框,使用GUIBulder5.32生成的对话框创建函数 */
CreateFramewin();
while(1)
{
/* 每50ms给绘图控件添加一次新的数据 */
GRAPH_DATA_YT_AddValue(ahData, rand()%100); //--------------(14)
GUI_Delay(50);
}
}
/*************************** End of file ****************************/ |