expedite/src/bin/cxx/proxy_text_fixed.cc

103 lines
2.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 "proxy_text_fixed_capi.h"
/* standard var */
static int done = 0;
/* private data */
static efl::eina::array<evas::object> texts;
/* setup */
static void _setup(void)
{
evas::canvas canvas(::eo_ref(G_evas));
int w, h, i = 0;
Evas_Text_Style_Type st = EVAS_TEXT_STYLE_SHADOW;
for (; st <= EVAS_TEXT_STYLE_FAR_SOFT_SHADOW; ++i)
{
evas::text o(efl::eo::parent = canvas);
texts.push_back(o);
o.font_set("Vera-Bold", 20);
o.text_set("This is a test string");
o.style_set(st);
o.evas::object::color_set(255, 255, 255, 255);
o.shadow_color_set(0, 0, 0, 24);
o.glow_color_set(100, 80, 40, 100);
o.glow2_color_set(50, 10, 5, 50);
o.outline_color_set(0, 0, 0, 255);
o.visibility_set(true);
st = static_cast<Evas_Text_Style_Type>(static_cast<int>(st) + 1);
}
st = static_cast<Evas_Text_Style_Type>(i);
for ( ; i < OBNUM ; ++i)
{
evas::image o(efl::eo::parent = canvas);
evas::object s = texts[i % st];
texts.push_back(o);
o.source_set(s);
s.size_get(&w, &h);
o.evas::object::size_set(w, h);
o.fill_set(0, 0, w, h);
o.evas::object::visibility_set(true);
}
done = 0;
}
/* cleanup */
static void _cleanup(void)
{
for (evas::object& obj : texts)
{
obj.visibility_set(false); // XXX
obj.parent_set(efl::eo::base(nullptr));
}
texts.clear();
}
/* loop - do things */
static void _loop(double t, int f)
{
Evas_Coord x, y, w, h;
int i = 0;
for (evas::object& text : texts)
{
text.size_get(&w, &h);
x = (win_w / 2) - (w / 2);
x += ::sin((double)(f + (i * 13)) / (36.7 * SLOW)) * (w / 2);
y = (win_h / 2) - (h / 2);
y += ::cos((double)(f + (i * 28)) / (43.8 * SLOW)) * (w / 2);
text.position_set(x, y);
++i;
}
FPS_STD(NAME);
}
/* prepend special key handlers if interactive (before STD) */
static void _key(char *key)
{
KEY_STD;
}
extern "C" void FNAME(void)
{
ui_func_set(_key, _loop);
_setup();
}