simplegui/HMI/src/HMI_Demo01_Text.c

235 lines
9.3 KiB
C
Raw Normal View History

/*************************************************************************/
/** Copyright. **/
/** FileName: HMI_Demo01_Text.c **/
/** Author: Polarix **/
/** Version: 1.0.0.0 **/
/** Description: HMI demo for list control interface. **/
/*************************************************************************/
//=======================================================================//
//= Include files. =//
//=======================================================================//
#include "HMI_Demo01_Text.h"
#include "GUI_Text.h"
#include "GUI_Frame.h"
#include "HMI_Process.h"
#include <stdio.h>
//=======================================================================//
//= User Macro definition. =//
//=======================================================================//
#define HMI_TEXT_DEMO_FRAME_EDGE_LAYERS (2)
#if(HMI_TEXT_DEMO_FRAME_EDGE_LAYERS == 0)
#define HMI_FRAMR_EDGE_WIDTH (0)
#else
#define HMI_TEXT_DEMO_FRAMR_EDGE_WIDTH (HMI_TEXT_DEMO_FRAME_EDGE_LAYERS*2-1)
#endif
#define HMI_TEXT_DEMO_FRAME_TEXT_POSX (HMI_TEXT_DEMO_FRAMR_EDGE_WIDTH+1)
#define HMI_TEXT_DEMO_FRAME_TEXT_POSY (HMI_TEXT_DEMO_FRAMR_EDGE_WIDTH+1)
#define HMI_TEXT_DEMO_FRAME_TEXT_WIDTH (LCD_SIZE_WIDTH-(HMI_TEXT_DEMO_FRAMR_EDGE_WIDTH+1)*2)
#define HMI_TEXT_DEMO_FRAME_TEXT_HEIGHT (LCD_SIZE_HEIGHT-(HMI_TEXT_DEMO_FRAMR_EDGE_WIDTH+1)*2)
//=======================================================================//
//= Static variable declaration. =//
//=======================================================================//
// Demo text.
static char szDemoText[] =
{
" 欢迎来到SimpleGUI演示工程本工程用于演示SimpleGUI各API的显示效果、\
使SimpleGUI演示工\
\n\
"
};
GUI_BOX_FRAME_STRUCT stTextFrame = { {HMI_TEXT_DEMO_FRAME_EDGE_LAYERS, GUI_FONT_SIZE_H12},
{NULL}};
static int32_t iTextOffset;
static int32_t iTextHeight;
static RECTANGLE stTextDisplayArea;
//=======================================================================//
//= Static function declaration. =//
//=======================================================================//
static int32_t HMI_DemoText_Initialize(void);
static int32_t HMI_DemoText_PreProcess(const void* pstParameters);
static int32_t HMI_DemoText_RefreshScreen(void);
static int32_t HMI_DemoText_OnExternalEvent(uint32_t uiScreenID, const void* pstParameters);
static int32_t HMI_DemoText_OnInternalEvent(uint32_t uiScreenID, const void* pstParameters);
static int32_t HMI_DemoText_PostProcess(int32_t iActionResult);
//=======================================================================//
//= Global variable declaration. =//
//=======================================================================//
HMI_SCREEN_ACTION stHMI_DemoTextActions = { HMI_DemoText_Initialize,
HMI_DemoText_PreProcess,
HMI_DemoText_RefreshScreen,
HMI_DemoText_OnInternalEvent,
HMI_DemoText_OnExternalEvent,
HMI_DemoText_PostProcess,
};
HMI_SCREEN g_stHMI_DemoText = { HMI_SCREEN_ID_ANY,
&stHMI_DemoTextActions
};
//=======================================================================//
//= Function implementation. =//
//=======================================================================//
/*****************************************************************************/
/** Function Name: HMI_DemoText_Initialize **/
/** Purpose: Initialize screen data. **/
/** Resources: Current screen display or control data. **/
/** Parameters: None. **/
/** Return: Initialize process result. **/
/** Limitation: None. **/
/*****************************************************************************/
int32_t HMI_DemoText_Initialize(void)
{
iTextOffset = HMI_TEXT_DEMO_FRAME_TEXT_HEIGHT;
iTextHeight = GUI_Text_GetMultiLineTextLines(szDemoText, (HMI_TEXT_DEMO_FRAME_TEXT_WIDTH/g_stFontSize[GUI_FONT_SIZE_H12].Width))*g_stFontSize[GUI_FONT_SIZE_H12].Height;
stTextDisplayArea.PosX = HMI_TEXT_DEMO_FRAME_TEXT_POSX;
stTextDisplayArea.PosY = HMI_TEXT_DEMO_FRAME_TEXT_POSY;
stTextDisplayArea.Width = HMI_TEXT_DEMO_FRAME_TEXT_WIDTH;
stTextDisplayArea.Height = HMI_TEXT_DEMO_FRAME_TEXT_HEIGHT;
return HMI_RESULT_NORMAL;
}
/*****************************************************************************/
/** Function Name: HMI_DemoText_PreProcess **/
/** Purpose: Preprocess after initialize. **/
/** Resources: None. **/
/** Parameters: None. **/
/** Return: Preprocess result. **/
/** Limitation: None. **/
/*****************************************************************************/
int32_t HMI_DemoText_PreProcess(const void* pstParameters)
{
GUI_Frame_DrawFullScreenFrame(&stTextFrame);
return HMI_RESULT_NORMAL;
}
/*****************************************************************************/
/** Function Name: HMI_DemoText_RefreshScreen **/
/** Purpose: Refresh current screen. **/
/** Resources: None. **/
/** Parameters: None. **/
/** Return: Refresh process result. **/
/** Limitation: None. **/
/*****************************************************************************/
int32_t HMI_DemoText_RefreshScreen(void)
{
GUI_Frame_DrawFullScreenFrame(&stTextFrame);
GUI_Text_DrawMultipleLinesText(szDemoText, GUI_FONT_SIZE_H12, &stTextDisplayArea, iTextOffset, GUI_DRAW_NORMAL);
return HMI_RESULT_NORMAL;
}
/*****************************************************************************/
/** Function Name: HMI_DemoText_OnExternalEvent **/
/** Purpose: Process with user actions. **/
/** Resources: List data structure and bind data if existed. **/
/** Parameters: **/
/** @[in]uiScreenID: Matched screen ID. **/
/** @[in]pstParameters: User event data pointer. **/
/** Return: User event process result. **/
/** Limitation: Parameter pointer is a void type, convert to the **/
/** appropriate type before use. **/
/*****************************************************************************/
int32_t HMI_DemoText_OnExternalEvent(uint32_t uiScreenID, const void* pstParameters)
{
/*----------------------------------*/
/* Variable Declaration */
/*----------------------------------*/
int32_t iProcessResult;
uint16_t uiKeyValue;
USER_ACT_KEYPRESS* pstUserEvent;
/*----------------------------------*/
/* Initialize */
/*----------------------------------*/
iProcessResult = HMI_RESULT_NORMAL;
pstUserEvent = (USER_ACT_KEYPRESS*)pstParameters;
/*----------------------------------*/
/* Process */
/*----------------------------------*/
uiKeyValue = pstUserEvent->KeyValue[0];
if(KEY_VALUE_SPACE == uiKeyValue)
{
iProcessResult = HMI_RESULT_CONFIRM;
}
else
{
iProcessResult = HMI_RESULT_NOACTION;
}
return iProcessResult;
}
/*****************************************************************************/
/** Function Name: HMI_DemoText_OnInternalEvent **/
/** Purpose: Update data and refresh screen display. **/
/** Resources: List data structure and bind data if existed. **/
/** Parameters: **/
/** @[in]uiScreenID: Matched screen ID. **/
/** @[in]pstParameters: User event data pointer. **/
/** Return: Internal event process result. **/
/** Limitation: Parameter pointer is a void type, convert to the **/
/** appropriate type before use. **/
/*****************************************************************************/
int32_t HMI_DemoText_OnInternalEvent(uint32_t uiScreenID, const void* pstParameters)
{
/*----------------------------------*/
/* Variable Declaration */
/*----------------------------------*/
int32_t iProcessResult;
static uint32_t uiTimer = 3;
/*----------------------------------*/
/* Process */
/*----------------------------------*/
if(g_stHMI_DemoText.ScreenID == uiScreenID)
{
if(uiTimer > 0)
{
uiTimer--;
}
else
{
GUI_Text_DrawMultipleLinesText(szDemoText, GUI_FONT_SIZE_H12, &stTextDisplayArea, iTextOffset, GUI_DRAW_NORMAL);
if(iTextOffset + iTextHeight == 0)
{
iTextOffset = HMI_TEXT_DEMO_FRAME_TEXT_HEIGHT;
}
else
{
iTextOffset--;
}
uiTimer = 3;
}
iProcessResult = HMI_RESULT_NORMAL;
}
else
{
iProcessResult = HMI_RESULT_NOACTION;
}
return iProcessResult;
}
/*****************************************************************************/
/** Function Name: HMI_DemoList_PostProcess **/
/** Purpose: Do something after user action or update screen. **/
/** Resources: List data structure and bind data if existed. **/
/** Parameters: **/
/** @[in]iActionResult: User action or system action process result. **/
/** Return: Post process result. **/
/** Limitation: None. **/
/*****************************************************************************/
int32_t HMI_DemoText_PostProcess(int32_t iActionResult)
{
if(HMI_RESULT_CONFIRM == iActionResult)
{
// Go to main list.
HMI_Action_Goto(1, NULL);
}
return HMI_RESULT_NORMAL;
}