expedite/src/bin/cxx/widgets_list_4.cc

168 lines
3.2 KiB
C++

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "Eo.h"
#include "Evas.h"
#include "Eo.hh"
#include "Eina.hh"
#include "Evas.hh"
#include "main.h"
#define EXPEDITE_CXX_TEST_IMPL
#include "widgets_list_4_capi.h"
/* standard var */
static int done = 0;
/* private data */
#define NUM 512
#define ICON_SIZE 32
static efl::eina::list<evas::image> images;
static efl::eina::list<evas::image> icons;
static efl::eina::list<evas::text> texts;
static const char *_icons[] = // XXX
{
"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"
};
static const char *labels[] =
{
"Andrew",
"Alex",
"Amanda",
"Arthur",
"Astrid",
"Avery",
"Beethoven",
"Billy",
"Bob",
"Bundy",
"Candy",
"Carsten",
"Danny",
"Dennis",
"Dirk",
"Doug",
"Edmond",
"Erik",
"Fernando",
"Frank",
"Frederick",
"Gabby",
"George",
"Gilroy",
"Goodrich",
"Gumby",
};
/* setup */
static void _setup(void)
{
#if 0
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, evas_obj_image_filled_set(1),
evas_obj_image_border_set(2, 2, 2, 2),
efl_file_set(build_path("pan.png"), NULL),
evas_obj_size_set(win_w, ICON_SIZE),
evas_obj_visibility_set(EINA_TRUE));
o = eo_add(EVAS_IMAGE_CLASS, G_evas);
o_icons[i] = o;
eo_do(o, evas_obj_image_filled_set(1),
evas_obj_image_border_set(2, 2, 2, 2),
efl_file_set(build_path(_icons[i % 13]), NULL),
evas_obj_size_set(ICON_SIZE - 8, ICON_SIZE - 8),
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(labels[i % 26]),
evas_obj_color_set(0, 0, 0, 255),
evas_obj_visibility_set(EINA_TRUE));
}
done = 0;
#endif // XXX
}
/* cleanup */
static void _cleanup(void)
{
for (evas::image& i : images)
i.parent_set(efl::eo::base(nullptr));
images.clear();
for (evas::image& i : icons)
i.parent_set(efl::eo::base(nullptr));
icons.clear();
for (evas::text& t : texts)
t.parent_set(efl::eo::base(nullptr));
texts.clear();
}
/* loop - do things */
static void _loop(double t, int f)
{
#if 0
int i;
Evas_Coord x, y, tw, th, cent;
x = 0;
y = 0 - f;
for (i = 0; i < NUM; i++)
{
eo_do(o_images[i], evas_obj_position_set(x, y));
eo_do(o_icons[i], evas_obj_position_set(x + 4, y + 4));
eo_do(o_texts[i], evas_obj_size_get(&tw, &th));
cent = (ICON_SIZE - th) / 2;
eo_do(o_texts[i], evas_obj_position_set(x + 8 + ICON_SIZE + 8, y + cent));
y += ICON_SIZE;
}
FPS_STD(NAME);
#endif
FPS_STD(NAME);
}
static void _key(char *key)
{
KEY_STD;
}
extern "C" void FNAME(void)
{
ui_func_set(_key, _loop);
_setup();
}