efl/src/examples/eolian_cxx/colourable.c

128 lines
3.2 KiB
C

#include <stdio.h>
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "Eo.h"
#include "Eina.h"
#include "ns_colourable.eo.h"
#define MY_CLASS NS_COLOURABLE_CLASS
static int _ns_colourable_impl_logdomain;
#ifdef DBG
#undef DBG
#endif
#define DBG(...) EINA_LOG_DOM_DBG(_ns_colourable_impl_logdomain, __VA_ARGS__)
struct _Colourable_Data
{
int r;
int g;
int b;
};
typedef struct _Colourable_Data Colourable_Data;
Eo *
_ns_colourable_efl_object_constructor(Eo *obj, Colourable_Data *self EINA_UNUSED)
{
if(!_ns_colourable_impl_logdomain)
{
_ns_colourable_impl_logdomain
= eina_log_domain_register("colourable", EINA_COLOR_BLUE);
}
DBG("_ns_colourable_constructor(%p, %p)\n", obj, MY_CLASS);
return efl_constructor(efl_super(obj, MY_CLASS));
}
void
_ns_colourable_efl_object_destructor(Eo *obj, Colourable_Data *self EINA_UNUSED)
{
if(_ns_colourable_impl_logdomain)
{
eina_log_domain_unregister(_ns_colourable_impl_logdomain);
_ns_colourable_impl_logdomain = 0;
}
DBG("_ns_colourable_destructor()\n");
efl_destructor(efl_super(obj, MY_CLASS));
}
void
_ns_colourable_rgb_24bits_constructor(Eo *obj EINA_UNUSED, Colourable_Data *self, int rgb)
{
if(!_ns_colourable_impl_logdomain)
{
_ns_colourable_impl_logdomain
= eina_log_domain_register("colourable", EINA_COLOR_BLUE);
}
self->r = (rgb & 0x00ff0000) >> 16;
self->g = (rgb & 0x0000ff00) >> 8;
self->b = rgb & 0x000000ff;
DBG("_ns_colourable_rgb_24bits_constructor(0x%.6x)\n", (int)rgb);
}
void
_ns_colourable_print_colour(Eo *obj EINA_UNUSED, Colourable_Data *self EINA_UNUSED)
{
DBG("_ns_colourable_print_colour() ==> 0x%2.x 0x%2.x 0x%2.x\n", self->r, self->g, self->b);
}
int
_ns_colourable_colour_mask(Eo *obj EINA_UNUSED, Colourable_Data *self, int mask)
{
int masked_rgb =
(((self->r << 16)& 0x00ff0000) |
((self->g << 8) & 0x0000ff00) |
(self->b & 0x000000ff)) & mask;
DBG("_ns_colourable_colour_mask() ==> 0x%2.x\n", (unsigned int)masked_rgb);
return masked_rgb;
}
void
_ns_colourable_composite_colour_get(const Eo *obj EINA_UNUSED, Colourable_Data *self, int* r, int* g, int* b)
{
*r = self->r;
*g = self->g;
*b = self->b;
DBG("_ns_colourable_composite_colour_get() ==> 0x%2.x 0x%2.x 0x%2.x\n", *r, *g, *b);
return;
}
void
_ns_colourable_composite_colour_set(Eo *obj EINA_UNUSED, Colourable_Data *self, int r, int g, int b)
{
self->r = r;
self->g = g;
self->b = b;
DBG("_ns_colourable_composite_colour_set(0x%2.x, 0x%2.x, 0x%2.x)\n",
(int)self->r, (int)self->g, (int)self->b);
return;
}
int
_ns_colourable_colour_get(const Eo *obj EINA_UNUSED, Colourable_Data *self)
{
int rgb =
((self->r << 16)& 0x00ff0000) |
((self->g << 8) & 0x0000ff00) |
(self->b & 0x000000ff);
DBG("_ns_colourable_colour_get() ==> 0x%.6x\n", (unsigned int)rgb);
return rgb;
}
void
_ns_colourable_colour_set(Eo *obj EINA_UNUSED, Colourable_Data *self, int rgb)
{
self->r = (rgb & 0x00ff0000) >> 16;
self->g = (rgb & 0x0000ff00) >> 8;
self->b = rgb & 0x000000ff;
DBG("_ns_colourable_colour_set(0x%.6x)\n", (unsigned int)rgb);
return;
}
#include "ns_colourable.eo.c"