提交 e86f3405 编写于 作者: B bernard.xiong@gmail.com

fixed RT-Thread/GUI building warning.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2079 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 016aeaf2
......@@ -64,47 +64,47 @@ void rtgui_system_image_init(void)
#endif
}
static struct rtgui_image_engine* rtgui_image_get_engine_by_filename(const char* fn)
static struct rtgui_image_engine* rtgui_image_get_engine(const char* type)
{
struct rtgui_list_node *node;
struct rtgui_image_engine *engine;
const char* ext;
ext = fn + rt_strlen(fn);
while (ext != fn)
{
if (*ext == '.') { ext ++; break; }
ext --;
}
if (ext == fn) return RT_NULL; /* no ext */
rtgui_list_foreach(node, &_rtgui_system_image_list)
{
engine = rtgui_list_entry(node, struct rtgui_image_engine, list);
if (strncasecmp(engine->name, ext, strlen(engine->name)) == 0)
if (strncasecmp(engine->name, type, strlen(engine->name)) ==0)
return engine;
}
return RT_NULL;
}
static struct rtgui_image_engine* rtgui_image_get_engine(const char* type)
#if defined(RTGUI_USING_DFS_FILERW) || defined(RTGUI_USING_STDIO_FILERW)
static struct rtgui_image_engine* rtgui_image_get_engine_by_filename(const char* fn)
{
struct rtgui_list_node *node;
struct rtgui_image_engine *engine;
const char* ext;
ext = fn + rt_strlen(fn);
while (ext != fn)
{
if (*ext == '.') { ext ++; break; }
ext --;
}
if (ext == fn) return RT_NULL; /* no ext */
rtgui_list_foreach(node, &_rtgui_system_image_list)
{
engine = rtgui_list_entry(node, struct rtgui_image_engine, list);
if (strncasecmp(engine->name, type, strlen(engine->name)) ==0)
if (strncasecmp(engine->name, ext, strlen(engine->name)) == 0)
return engine;
}
return RT_NULL;
}
#if defined(RTGUI_USING_DFS_FILERW) || defined(RTGUI_USING_STDIO_FILERW)
struct rtgui_image* rtgui_image_create_from_file(const char* type, const char* filename, rt_bool_t load)
{
struct rtgui_filerw* filerw;
......
......@@ -21,7 +21,7 @@
#include <rtgui/widgets/window.h>
#include <rtgui/rtgui_theme.h>
// #define RTGUI_EVENT_DEBUG
#define RTGUI_EVENT_DEBUG
#ifdef _WIN32
#define RTGUI_EVENT_DEBUG
......
......@@ -59,7 +59,7 @@ struct rtgui_list_view
/* the number of item in a page */
rt_uint16_t page_items;
/* current item */
rt_uint16_t current_item;
rt_int16_t current_item;
/* icon layout */
rt_uint8_t row_items, col_items;
......
......@@ -96,7 +96,7 @@ static void rtgui_list_view_onicondraw(struct rtgui_list_view* view, struct rtgu
}
}
static void rtgui_list_view_update_icon(struct rtgui_list_view* view, rt_uint16_t old_item)
static void rtgui_list_view_update_icon(struct rtgui_list_view* view, rt_int16_t old_item)
{
struct rtgui_rect rect, item_rect, drawing_rect;
rt_ubase_t c, r; /* col and row index */
......@@ -230,7 +230,7 @@ static void rtgui_list_view_onlistdraw(struct rtgui_list_view* view, struct rtgu
}
}
void rtgui_list_view_update_list(struct rtgui_list_view* view, rt_uint16_t old_item)
void rtgui_list_view_update_list(struct rtgui_list_view* view, rt_int16_t old_item)
{
struct rtgui_dc* dc;
const struct rtgui_list_item* item;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册