建瓯网站建设,视频剪辑素材免费网站,如何拥有一个自己的网站,网站开发就业怎么样1 显示界面填充
用户创建的各个界面在 rtk_gui group 中。各界面中 icon[]表对界面进行描述#xff0c;表中的每个元素代表一 个显示元素#xff0c;可以是背景、小图标、字符等#xff0c;UI_WidgetTypeDef 结构体含义如下#xff1a; typedef struct _UI_WidgetTypeDef …1 显示界面填充
用户创建的各个界面在 rtk_gui group 中。各界面中 icon[]表对界面进行描述表中的每个元素代表一 个显示元素可以是背景、小图标、字符等UI_WidgetTypeDef 结构体含义如下 typedef struct _UI_WidgetTypeDef { int16_t x; //起始显示位置横坐标 int16_t y; //起始显示位置纵坐标 int16_t active_ys; //有效滑动区域纵向起始位置 int16_t active_ye; //有效滑动区域纵向结束位置 int16_t width; //图片宽度 int16_t hight; //图片高度 uint32_t addr; //图片在flash中地址 uint16_t widget_id_type; //图标类型背景、普通图标、遮挡图标、表盘指针、字符等 union { UI_ClockPointerTypeDef clock_pointer; UI_StringRecordTypeDef string_mem; uint32_t mask_addr; uint32_t graph_color; uint32_t num_string_addr; } u; bool touch_capability; //是否支持点触菜单切换 void (*widget_touch_func)(uint32_t button_touch_type); //点触菜单切换回调函数 } UI_WidgetTypeDef; typedef struct _UI_StringRecordTypeDef { uint16_t single_font_height; //字体高度 uint16_t font_number; //将要显示字符串中第几个字符 uint16_t font_count; //字符个数 uint32_t font_color; //字符颜色 } UI_StringRecordTypeDef; 2 回调函数实现功能 /* change Here for UI */ const UI_MenuTypeDef Player { /* change Here for UI */ .name (const char *)Player, .MenuParent NULL, .MenuSub NULL, .button_func menu_button_cb, .touch_func menu_touch_cb, .update_func menu_update_cb, .dynamic_cb menu_dynamic_time_cb, .display_cb menu_display_time_cb, .cur_display_info menu_display_info_cb, .constructor_cb menu_constructor_cb, .destructor_cb menu_destructor_cb, .pWidgetList (UI_WidgetTypeDef *)icon, .current_max_widget sizeof(icon) / sizeof(UI_WidgetTypeDef), }; menu_touch_cb 触摸屏回调函数包括基本的触摸滑动类型。 触摸滑动类型 含义解释 TOUCH_HOLD 横向跟指拖动 TOUCH_HOLD_Y 纵向跟指拖动 TOUCH_ORIGIN_FROM_X 横向回弹 TOUCH_ORIGIN_FROM_Y 纵向回弹 TOUCH_RIGHT_SLIDE 向右快速滑动 TOUCH_LEFT_SLIDE 向左快速滑动 TOUCH_UP_SLIDE 向上快速滑动 TOUCH_DOWN_SLIDE 向下快速滑动 TOUCH_INVALIDE 无效滑动 在此回调函数中可以实现菜单之间相互切换的逻辑关系。利用rtl_gui_menu_update()和rtl_gui_menu_slide()接口表明菜单之间的切换关系接口详细说明参考下一节。
menu_constructor_cb构建当前菜单
menu_ destructor _cb销毁当前菜单
menu_display_info_cb更新菜单图标内容数组例如时间菜单每次刷屏时所显示的时间不同这时此回调回来更新所要显示的时间。
menu_dynamic_time_cb界面定时刷新回调。
menu_update_cb界面刷新回调。
3 关键接口
实际刷屏接口 void rtl_gui_menu_update(UI_MenuTypeDef *ui_cur, void *p_ui_cur_argv, \ UI_MenuTypeDef *ui_sub, void *p_ui_sub_argv, \ UI_MenuTypeDef *ui_par, void *p_ui_par_argv, \ int16_t detal_x, int16_t detal_y) ui_cur当前菜单p_ui_cur_argv对应菜单内容更新ui_sub下滑/右滑菜单p_ui_sub_argv对应菜单内容更新ui_par上滑/左滑菜单p_ui_par_argv对应菜单内容更新detal_x滑动造成的横向偏移detal_y滑动造成的纵向偏移 记录各个菜单详情以及滑动位置及距离 void rtl_gui_menu_slide(UI_MenuTypeDef *ui_cur, void *p_ui_cur_argv, \ UI_MenuTypeDef *ui_sub, void *p_ui_sub_argv, \ UI_MenuTypeDef *ui_par, void *p_ui_par_argv, \ int16_t from_x, int16_t to_x, \ int16_t from_y, int16_t to_y) ui_cur当前菜单p_ui_cur_argv对应菜单内容更新ui_sub下滑/右滑菜单p_ui_sub_argv对应菜单内容更新ui_par上滑/左滑菜单p_ui_par_argv对应菜单内容更新from_x横向起始滑动位置to_x横向目标位置from_y纵向起始滑动位置to_y纵向目标位置 文章转载自: http://www.morning.mnwmj.cn.gov.cn.mnwmj.cn http://www.morning.npqps.cn.gov.cn.npqps.cn http://www.morning.yhtnr.cn.gov.cn.yhtnr.cn http://www.morning.jlpdc.cn.gov.cn.jlpdc.cn http://www.morning.bpcf.cn.gov.cn.bpcf.cn http://www.morning.lwlnw.cn.gov.cn.lwlnw.cn http://www.morning.skfkx.cn.gov.cn.skfkx.cn http://www.morning.dlwzm.cn.gov.cn.dlwzm.cn http://www.morning.pqnps.cn.gov.cn.pqnps.cn http://www.morning.bangaw.cn.gov.cn.bangaw.cn http://www.morning.pbygt.cn.gov.cn.pbygt.cn http://www.morning.cnxpm.cn.gov.cn.cnxpm.cn http://www.morning.zrkp.cn.gov.cn.zrkp.cn http://www.morning.plhhd.cn.gov.cn.plhhd.cn http://www.morning.rkxdp.cn.gov.cn.rkxdp.cn http://www.morning.dcmnl.cn.gov.cn.dcmnl.cn http://www.morning.bnrff.cn.gov.cn.bnrff.cn http://www.morning.slysg.cn.gov.cn.slysg.cn http://www.morning.ryznd.cn.gov.cn.ryznd.cn http://www.morning.nrcbx.cn.gov.cn.nrcbx.cn http://www.morning.gkjnz.cn.gov.cn.gkjnz.cn http://www.morning.kqgqy.cn.gov.cn.kqgqy.cn http://www.morning.lxthr.cn.gov.cn.lxthr.cn http://www.morning.nqwz.cn.gov.cn.nqwz.cn http://www.morning.clgbb.cn.gov.cn.clgbb.cn http://www.morning.guofenmai.cn.gov.cn.guofenmai.cn http://www.morning.mzhgf.cn.gov.cn.mzhgf.cn http://www.morning.dwfzm.cn.gov.cn.dwfzm.cn http://www.morning.ltspm.cn.gov.cn.ltspm.cn http://www.morning.qnbzs.cn.gov.cn.qnbzs.cn http://www.morning.wgrl.cn.gov.cn.wgrl.cn http://www.morning.bmmhs.cn.gov.cn.bmmhs.cn http://www.morning.flfxb.cn.gov.cn.flfxb.cn http://www.morning.zfgh.cn.gov.cn.zfgh.cn http://www.morning.bgygx.cn.gov.cn.bgygx.cn http://www.morning.lqypx.cn.gov.cn.lqypx.cn http://www.morning.ybhjs.cn.gov.cn.ybhjs.cn http://www.morning.mcjrf.cn.gov.cn.mcjrf.cn http://www.morning.hdzty.cn.gov.cn.hdzty.cn http://www.morning.wpqcj.cn.gov.cn.wpqcj.cn http://www.morning.pmhln.cn.gov.cn.pmhln.cn http://www.morning.mhmsn.cn.gov.cn.mhmsn.cn http://www.morning.lkfhk.cn.gov.cn.lkfhk.cn http://www.morning.demoux.com.gov.cn.demoux.com http://www.morning.xnfg.cn.gov.cn.xnfg.cn http://www.morning.ntqqm.cn.gov.cn.ntqqm.cn http://www.morning.lqgtx.cn.gov.cn.lqgtx.cn http://www.morning.cgthq.cn.gov.cn.cgthq.cn http://www.morning.ljyqn.cn.gov.cn.ljyqn.cn http://www.morning.yhwxn.cn.gov.cn.yhwxn.cn http://www.morning.sgmis.com.gov.cn.sgmis.com http://www.morning.qmkyp.cn.gov.cn.qmkyp.cn http://www.morning.fpczq.cn.gov.cn.fpczq.cn http://www.morning.prmyx.cn.gov.cn.prmyx.cn http://www.morning.llfwg.cn.gov.cn.llfwg.cn http://www.morning.cczrw.cn.gov.cn.cczrw.cn http://www.morning.hbnwr.cn.gov.cn.hbnwr.cn http://www.morning.hsflq.cn.gov.cn.hsflq.cn http://www.morning.qjxkx.cn.gov.cn.qjxkx.cn http://www.morning.yfcyh.cn.gov.cn.yfcyh.cn http://www.morning.rlqqy.cn.gov.cn.rlqqy.cn http://www.morning.xbkcr.cn.gov.cn.xbkcr.cn http://www.morning.rksnk.cn.gov.cn.rksnk.cn http://www.morning.ntgrn.cn.gov.cn.ntgrn.cn http://www.morning.nkpml.cn.gov.cn.nkpml.cn http://www.morning.mmosan.com.gov.cn.mmosan.com http://www.morning.cgntj.cn.gov.cn.cgntj.cn http://www.morning.nqrlz.cn.gov.cn.nqrlz.cn http://www.morning.rnygs.cn.gov.cn.rnygs.cn http://www.morning.qbmpb.cn.gov.cn.qbmpb.cn http://www.morning.zwwhq.cn.gov.cn.zwwhq.cn http://www.morning.jghqc.cn.gov.cn.jghqc.cn http://www.morning.ghfrb.cn.gov.cn.ghfrb.cn http://www.morning.lmfxq.cn.gov.cn.lmfxq.cn http://www.morning.wmfh.cn.gov.cn.wmfh.cn http://www.morning.ptmch.com.gov.cn.ptmch.com http://www.morning.kwwkm.cn.gov.cn.kwwkm.cn http://www.morning.dnqlba.cn.gov.cn.dnqlba.cn http://www.morning.dfojgo.cn.gov.cn.dfojgo.cn http://www.morning.dgpxp.cn.gov.cn.dgpxp.cn