summaryrefslogtreecommitdiff
path: root/src/examples/eo/evas/evas_elw_boxedbutton.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/examples/eo/evas/evas_elw_boxedbutton.c')
-rw-r--r--src/examples/eo/evas/evas_elw_boxedbutton.c57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/examples/eo/evas/evas_elw_boxedbutton.c b/src/examples/eo/evas/evas_elw_boxedbutton.c
deleted file mode 100644
index 62842771ab..0000000000
--- a/src/examples/eo/evas/evas_elw_boxedbutton.c
+++ /dev/null
@@ -1,57 +0,0 @@
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <Elementary.h>
-
-#include "Eo.h"
-#include "evas_evas_obj.h"
-#include "evas_elw_box.h"
-#include "evas_elw_button.h"
-#include "evas_elw_boxedbutton.h"
-
-typedef struct
-{
-// Evas_Object *bx;
-} Widget_Data;
-
-#define MY_CLASS ELW_BOXEDBUTTON_CLASS
-
-static void
-_constructor(Eo *obj, void *class_data EINA_UNUSED, va_list *list EINA_UNUSED)
-{
- eo_constructor(eo_super(obj, MY_CLASS));
-
- Eo *bt = eo_add(ELW_BUTTON_CLASS, obj);
- eo_composite_attach(obj, bt);
- eo_event_callback_forwarder_add(bt, EV_CLICKED, obj);
- exevas_obj_visibility_set(bt, EINA_TRUE);
-
- elw_box_pack_end(obj, bt);
- eo_unref(bt);
-}
-
-static void
-_class_constructor(Eo_Class *klass)
-{
- const Eo_Op_Func_Description func_desc[] = {
- EO_OP_FUNC(EO_BASE_ID(EO_BASE_SUB_ID_CONSTRUCTOR), _constructor),
- EO_OP_FUNC_SENTINEL
- };
-
- eo_class_funcs_set(klass, func_desc);
-}
-
-static const Eo_Class_Description class_desc = {
- EO_VERSION,
- "Elw BoxedButton",
- EO_CLASS_TYPE_REGULAR,
- EO_CLASS_DESCRIPTION_OPS(NULL, NULL, 0),
- NULL,
- sizeof(Widget_Data),
- _class_constructor,
- NULL
-};
-
-EO_DEFINE_CLASS(elw_boxedbutton_class_get, &class_desc, ELW_BOX_CLASS, ELW_BUTTON_CLASS, NULL)
-