mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-29 18:48:09 +08:00
53 lines
1.5 KiB
C
53 lines
1.5 KiB
C
/**
|
|
* File: resource.c
|
|
* Author: Li XianJing <xianjimli@hotmail.com>
|
|
* Brief: resource init
|
|
*
|
|
* Copyright (c) 2018 - 2018 Li XianJing <xianjimli@hotmail.com>
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* License file for more details.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* History:
|
|
* ================================================================
|
|
* 2018-02-03 Li XianJing <xianjimli@hotmail.com> created
|
|
*
|
|
*/
|
|
|
|
#include "res/font20.data"
|
|
#include "res/images/checked.data"
|
|
#include "res/images/earth.data"
|
|
#include "res/images/info.data"
|
|
#include "res/images/radio_checked.data"
|
|
#include "res/images/radio_unchecked.data"
|
|
#include "res/images/unchecked.data"
|
|
#include "res/theme.data"
|
|
|
|
#include "base/font_manager.h"
|
|
#include "base/image_manager.h"
|
|
#include "base/theme.h"
|
|
#include "font/font_bitmap.h"
|
|
#include "image_loader/image_loader_bitmap.h"
|
|
|
|
ret_t resource_init() {
|
|
default_theme_init(theme_data);
|
|
image_loader_t* bitmap_loader = image_loader_bitmap_create(10);
|
|
font_manager_add(default_fm(), font_bitmap_create(font_font20));
|
|
|
|
image_loader_bitmap_add(bitmap_loader, earth);
|
|
image_loader_bitmap_add(bitmap_loader, info);
|
|
image_loader_bitmap_add(bitmap_loader, checked);
|
|
image_loader_bitmap_add(bitmap_loader, unchecked);
|
|
image_loader_bitmap_add(bitmap_loader, radio_checked);
|
|
image_loader_bitmap_add(bitmap_loader, radio_unchecked);
|
|
|
|
image_manager_add_loader(default_im(), bitmap_loader);
|
|
|
|
return RET_OK;
|
|
}
|