OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 8422|回复: 6

想用UCGUI建立一个新的窗口,出现几个错误,求高手指教!

[复制链接]

10

主题

46

帖子

0

精华

初级会员

Rank: 2

积分
106
金钱
106
注册时间
2014-2-27
在线时间
0 小时
发表于 2014-5-7 20:24:29 | 显示全部楼层 |阅读模式
5金钱
#include "led.h"
#include "delay.h"
#include "key.h"
#include "sys.h"
#include "tft.h"
#include "usart.h"  
#include "gui.h" 
#include "math.h"
#include "includes.h"

static void cbBackgroundWin(WM_MESSAGE* pMsg)
{
switch(pMsg->MsgId)
{
case WM_PAINT:  GUI_Clear();
default:   WM_DefaultProc(pMsg);
}
}

static void cbForegroundWin(WM_MESSAGE* pMsg)
{
switch(pMsg->MsgId)
{
 case WM_PAINT:
     GUI_SetBkColor(GUI_GREEN);
 GUI_Clear();
 GUI_DispString("Foreground window");
 break;
      default:
     WM_DefaultProc(pMsg);  
}
}
static void DemoRedraw(void)
{
GUI_HWIN hWnd;
while(1)
{
hWnd=WM_CreateWindow(10,10,100,100,WM_CF_SHOW,cbForegroundWin,0);
delay_us(1000);
WM_DeleteWindow(hWnd);
GUI_DispStringAt("Background of window has not been redraw",10,10);
delay_us(1000);
GUI_Clear;
WM_SetCallback(WM_HBKWIN,cbBackgroundWin);
hWnd=WM_CreateWindow(10,10,100,100,WM_CF_SHOW,cbForegroundWin,0);
delay_us(1000);
WM_DeleteWindow(hWnd);
delay_us(1000);
WM_SetCallBack(WM_HBKWIN,0);


}
}
void main(void)
{
    delay_init();
   NVIC_Configuration();
   uart_init(9600);
   GUI_Init();
   DemoRedraw();
}


编译后出现下面的错误!
Build target 'Template'
compiling main.c...
main.c(227): error:  #20: identifier "WM_MESSAGE" is undefined
main.c(229): error:  #132: expression must have pointer-to-struct-or-union type
main.c(231): error:  #20: identifier "WM_PAINT" is undefined
main.c(232): warning:  #223-D: function "WM_DefaultProc" declared implicitly
main.c(236): error:  #20: identifier "WM_MESSAGE" is undefined
main.c(238): error:  #132: expression must have pointer-to-struct-or-union type
main.c(240): error:  #20: identifier "WM_PAINT" is undefined
main.c(246): warning:  #223-D: function "WM_DefaultProc" declared implicitly
main.c(254): warning:  #223-D: function "WM_CreateWindow" declared implicitly
main.c(254): error:  #20: identifier "WM_CF_SHOW" is undefined
main.c(256): warning:  #223-D: function "WM_DeleteWindow" declared implicitly
main.c(259): warning:  #174-D: expression has no effect
main.c(260): warning:  #223-D: function "WM_SetCallback" declared implicitly
main.c(260): error:  #20: identifier "WM_HBKWIN" is undefined
main.c(265): warning:  #223-D: function "WM_SetCallBack" declared implicitly
main.c(270): warning:  #951-D: return type of function "main" must be "int"
Target not created
求高手帮帮忙额 !

最佳答案

查看完整内容[请看2#楼]

回复【2楼】正点原子: ---------------------------------额 谢谢原子哥 我找到错误了,guiconf.h里面的那个GUI_WINSUPPORT要设置成1才行,原子哥有没有与UCGUI控件相关的一些学习资料啊 或者连接也可以的哦!跪求!
You canyou up!
正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

10

主题

46

帖子

0

精华

初级会员

Rank: 2

积分
106
金钱
106
注册时间
2014-2-27
在线时间
0 小时
 楼主| 发表于 2014-5-7 20:24:30 | 显示全部楼层
回复【2楼】正点原子:
---------------------------------额 谢谢原子哥 我找到错误了,guiconf.h里面的那个GUI_WINSUPPORT要设置成1才行,原子哥有没有与UCGUI控件相关的一些学习资料啊 或者连接也可以的哦!跪求!
You canyou up!
回复

使用道具 举报

530

主题

11万

帖子

34

精华

管理员

Rank: 12Rank: 12Rank: 12

积分
165225
金钱
165225
注册时间
2010-12-1
在线时间
2107 小时
发表于 2014-5-7 22:59:27 | 显示全部楼层
感觉你是窗体相关的.c文件没加进来似得....
我是开源电子网www.openedv.com站长,有关站务问题请与我联系。
正点原子STM32开发板购买店铺http://openedv.taobao.com
正点原子官方微信公众平台,点击这里关注“正点原子”
回复

使用道具 举报

3

主题

9

帖子

0

精华

初级会员

Rank: 2

积分
110
金钱
110
注册时间
2015-3-20
在线时间
20 小时
发表于 2015-3-21 16:44:33 | 显示全部楼层
回复【3楼】我不后悔:
---------------------------------
好贴,我的问题解决了
回复

使用道具 举报

12

主题

32

帖子

0

精华

初级会员

Rank: 2

积分
121
金钱
121
注册时间
2014-11-5
在线时间
11 小时
发表于 2015-3-23 20:18:30 | 显示全部楼层
请教楼主,怎么在一个窗口显示变量呢?我是要在一个FRAMEWIN窗口上显示时间,日期等信息。
用 GUI_DispDecAt(calendar.hour,60,162,2);   
GUI_DispDecAt(calendar.min,84,162,2);   
GUI_DispDecAt(calendar.sec,108,162,2);
会被那个窗口覆盖掉!!!
回复

使用道具 举报

13

主题

23

帖子

0

精华

初级会员

Rank: 2

积分
113
金钱
113
注册时间
2013-11-8
在线时间
5 小时
发表于 2015-6-20 19:41:41 | 显示全部楼层
为什么我改成了       #define GUI_WINSUPPORT       1 
还是有错误

main.c(105): error:  #268: declaration may not appear after executable statement in block
main.c(105): error:  #20: identifier "PROGBAR_Handle" is undefined
main.c(107): warning:  #223-D: function "PROGBAR_Create" declared implicitly
main.c(107): error:  #20: identifier "WM_CF_SHOW" is undefined
main.c(108): warning:  #223-D: function "WM_Exec" declared implicitly
回复

使用道具 举报

4

主题

34

帖子

1

精华

初级会员

Rank: 2

积分
101
金钱
101
注册时间
2015-9-22
在线时间
57 小时
发表于 2016-2-21 01:38:24 | 显示全部楼层
剑皇 发表于 2015-6-20 19:41
为什么我改成了       #define GUI_WINSUPPORT       1 
还是有错误
...

请问你的问题解决了吗?我也遇到同样的问题
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-1 18:23

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表