expedite/src/bin/cxx/widgets_file_icons_3.cc

82 lines
1.6 KiB
C++

#undef FNAME
#undef NAME
#undef ICON
/* metadata */
#define FNAME widgets_file_icons_3_start
#define NAME "Widgets File Icons 3"
#define ICON "widgets.png"
#ifndef PROTO
# ifndef UI
# include "main.h"
/* standard var */
static int done = 0;
/* private data */
#define NUM 512
#define ICON_SIZE 16
static efl::eina::list<evas::image> images;
static Evas_Object *o_texts[NUM];
static const char *icons[] =
{
"bug.png",
"bulb.png",
"camera.png",
"colorbox.png",
"e.png",
"error.png",
"flower.png",
"house.png",
"mushroom.png",
"pulse.png",
"typewriter.png",
"warning.png",
"watch.png"
};
/* setup */
static void _setup(void)
{
int i;
evas::canvas canvas(::eo_ref(G_evas));
for (i = 0; i < NUM; i++)
{
evas::image o(efl::eo::parent = canvas);
images.push_back(o);
eo_do(o, efl_file_set(build_path(icons[i % 13]), NULL),
evas_obj_image_fill_set(0, 0, ICON_SIZE, ICON_SIZE),
evas_obj_size_set(ICON_SIZE, ICON_SIZE),
evas_obj_visibility_set(EINA_TRUE));
o = eo_add(EVAS_TEXT_CLASS, G_evas);
o_texts[i] = o;
eo_do(o, efl_text_properties_font_set("Vera-Bold", 10),
efl_text_set(icons[i % 13]),
evas_obj_color_set(0, 0, 0, 255),
evas_obj_visibility_set(EINA_TRUE));
}
done = 0;
}
/* cleanup */
static void _cleanup(void)
{
int i;
for (i = 0; i < NUM; i++)
{
eo_del(images[i]);
eo_del(o_texts[i]);
}
}
extern "C" static void _key(char *key)
{
KEY_STD;
}