#ifdef HAVE_CONFIG_H
#include "config.h"
#else
#define PACKAGE_EXAMPLES_DIR "."
#endif
#include <Ecore.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define WIDTH (640)
#define HEIGHT (480)
static const char *border_img_path = PACKAGE_EXAMPLES_DIR "/red.png";
static const char *commands = \
"commands are:\n"
"\ta - change the box's alignment values\n"
"\tp - change the box's padding values\n"
"\t1 - change the box's layout to horizontal\n"
"\t2 - change the box's layout to vertical\n"
"\t3 - change the box's layout to horizontal homogeneous\n"
"\t4 - change the box's layout to vertical homogeneous\n"
"\t5 - change the box's layout to horizontal maximum size homogeneous\n"
"\t6 - change the box's layout to vertical maximum size homogeneous\n"
"\t7 - change the box's layout to horizontal flow\n"
"\t8 - change the box's layout to vertical flow\n"
"\t9 - change the box's layout to stack\n"
"\t0 - change the box's layout to a custom-made one\n"
"\tCtrl + NUMBER - insert a new child object at that position in the box\n"
"\tShift + NUMBER - remove the child object at that position in the box\n"
"\th - print help\n";
struct exemple_data
{
Ecore_Evas *ee;
};
static struct exemple_data d;
static void
{
int x, y, w, h;
int xx, yy, ww, hh;
int count;
ww = w / (count ? : 1);
hh = h / (count ? : 1);
if (ww < 1) ww = 1;
if (hh < 1) hh = 1;
xx = x;
yy = y;
{
xx += ww;
yy += hh;
}
}
_new_rectangle_add(
Evas *e)
{
return o;
}
static void
_on_keydown(void *data EINA_UNUSED,
void *einfo)
{
if (strcmp(ev->
key,
"h") == 0)
{
fprintf(stdout, "%s", commands);
return;
}
{
int pos;
if (!obj) goto list_free;
list_free:
return;
}
{
int pos;
o = _new_rectangle_add(d.evas);
return;
}
if (strcmp(ev->
key,
"a") == 0)
{
double h, v;
if (h == 0.5)
h = v = 1.0;
else if (h == 1.0)
h = v = -1.0;
else if (h == -1.0)
h = v = 0.0;
else if (h == 0.0)
h = v = 0.5;
fprintf(stdout, "Applying new alignment values (%.1f, %.1f)"
" on the box\n", h, v);
return;
}
if (strcmp(ev->
key,
"p") == 0)
{
int h, v;
if (h == 0)
h = v = 50;
else
h = v = 0;
fprintf(stdout, "Applying new padding values (%d, %d)"
" on the box\n", h, v);
return;
}
if (strcmp(ev->
key,
"1") == 0)
{
fprintf(stdout, "Applying '%s' layout on the box\n", "horizontal");
return;
}
if (strcmp(ev->
key,
"2") == 0)
{
fprintf(stdout, "Applying '%s' layout on the box\n", "vertical");
return;
}
if (strcmp(ev->
key,
"3") == 0)
{
NULL);
fprintf(stdout, "Applying '%s' layout on the box\n",
"horizontal homogeneous");
return;
}
if (strcmp(ev->
key,
"4") == 0)
{
fprintf(stdout, "Applying '%s' layout on the box\n",
"vertical homogeneous");
return;
}
if (strcmp(ev->
key,
"5") == 0)
{
NULL, NULL);
fprintf(stdout, "Applying '%s' layout on the box\n",
"horizontal maximum size homogeneous");
return;
}
if (strcmp(ev->
key,
"6") == 0)
{
NULL, NULL);
fprintf(stdout, "Applying '%s' layout on the box\n",
"vertical maximum size homogeneous");
return;
}
if (strcmp(ev->
key,
"7") == 0)
{
fprintf(stdout, "Applying '%s' layout on the box\n", "horizontal flow");
return;
}
if (strcmp(ev->
key,
"8") == 0)
{
fprintf(stdout, "Applying '%s' layout on the box\n", "vertical flow");
return;
}
if (strcmp(ev->
key,
"9") == 0)
{
fprintf(stdout, "Applying '%s' layout on the box\n", "stack");
return;
}
if (strcmp(ev->
key,
"0") == 0)
{
fprintf(stdout, "Applying '%s' layout on the box\n", "CUSTOM");
return;
}
}
static void
_on_delete(Ecore_Evas *ee EINA_UNUSED)
{
}
static void
_canvas_resize_cb(Ecore_Evas *ee)
{
int w, h;
}
int
main(void)
{
int i;
srand(time(NULL));
return EXIT_FAILURE;
if (!d.ee)
goto panic;
for (i = 1; i <= 5; i++)
{
o, rand() % 256, rand() % 256, rand() % 256, 255);
{
fprintf(stderr, "Error appending child object on the box!\n");
goto error;
}
}
fprintf(stdout, "%s", commands);
_canvas_resize_cb(d.ee);
return 0;
error:
return -1;
panic:
fprintf(stderr, "You got to have at least one evas engine built and linked"
" up to ecore-evas for this example to run properly.\n");
return -2;
}