enlightenment/src/text.c

168 lines
2.8 KiB
C

#include "text.h"
E_Text *
e_text_new(Evas evas, char *text, char *class)
{
E_Text *t;
t = NEW(E_Text, 1);
ZERO(t, E_Text, 1);
t->state = strdup("normal");
if (class) t->class = strdup(class);
else t->class = strdup("");
if (text) t->text = strdup(text);
else t->text = strdup("");
t->evas = evas;
t->obj = evas_add_text(t->evas, "borzoib", 8, t->text);
evas_set_color(t->evas, t->obj, 0, 0, 0, 255);
t->color.r = 0;
t->color.g = 0;
t->color.b = 0;
t->color.a = 255;
t->w = evas_get_text_width(t->evas, t->obj);
t->h = evas_get_text_height(t->evas, t->obj);
t->min.w = t->w;
t->min.h = t->h;
t->max.w = t->w;
t->max.h = t->h;
return t;
}
void
e_text_free(E_Text *t)
{
IF_FREE(t->state);
IF_FREE(t->class);
IF_FREE(t->text);
if ((t->evas) && (t->obj))
{
evas_del_object(t->evas, t->obj);
}
FREE(t);
}
void
e_text_set_text(E_Text *t, char *text)
{
if (!text) text = "";
if (!strcmp(t->text, text)) return;
IF_FREE(t->text);
t->text = strdup(text);
evas_set_text(t->evas, t->obj, t->text);
}
void
e_text_set_layer(E_Text *t, int l)
{
if (t->layer == l) return;
t->layer = l;
evas_set_layer(t->evas, t->obj, t->layer);
}
void
e_text_set_clip(E_Text *t, Evas_Object clip)
{
evas_set_clip(t->evas, t->obj, clip);
}
void
e_text_unset_clip(E_Text *t)
{
evas_unset_clip(t->evas, t->obj);
}
void
e_text_raise(E_Text *t)
{
evas_raise(t->evas, t->obj);
}
void
e_text_lower(E_Text *t)
{
evas_lower(t->evas, t->obj);
}
void
e_text_show(E_Text *t)
{
if (t->visible) return;
t->visible = 1;
evas_show(t->evas, t->obj);
}
void
e_text_hide(E_Text *t)
{
if (!t->visible) return;
t->visible = 0;
evas_hide(t->evas, t->obj);
}
void
e_text_set_color(E_Text *t, int r, int g, int b, int a)
{
if ((r == t->color.r) &&
(g == t->color.g) &&
(b == t->color.b) &&
(a == t->color.a)) return;
t->color.r = r;
t->color.g = g;
t->color.b = b;
t->color.a = a;
evas_set_color(t->evas, t->obj, t->color.r, t->color.g, t->color.b, t->color.a);
}
void
e_text_move(E_Text *t, double x, double y)
{
if ((t->x == x) && (t->y == y)) return;
t->x = x;
t->y = y;
evas_move(t->evas, t->obj, t->x, t->y);
}
void
e_text_resize(E_Text *t, double w, double h)
{
}
void
e_text_get_geometry(E_Text *t, double *x, double *y, double *w, double *h)
{
if (x) *x = t->x;
if (y) *y = t->y;
if (w) *w = t->w;
if (h) *h = t->h;
}
void
e_text_get_min_size(E_Text *t, double *w, double *h)
{
if (w) *w = t->min.w;
if (h) *h = t->min.h;
}
void
e_text_get_max_size(E_Text *t, double *w, double *h)
{
if (w) *w = t->max.w;
if (h) *h = t->max.h;
}
void
e_text_set_state(E_Text *t, char *state)
{
}
void
e_text_set_class(E_Text *t, char *class)
{
}
void
e_text_update_class(E_Text *t)
{
}