src/lib/Makefile
src/lib/Elementary.h
src/bin/Makefile
+src/modules/Makefile
+src/modules/test_entry/Makefile
data/Makefile
data/themes/Makefile
data/images/Makefile
AUTOMAKE_OPTIONS = 1.4 foreign
MAINTAINERCLEANFILES = Makefile.in
-SUBDIRS = lib bin
+SUBDIRS = lib bin modules
elm_win_rotation_set(win, 270);
}
+static void
+my_win_move(void *data, Evas_Object *obj, void *event_info)
+{
+ Evas_Coord x, y;
+ elm_win_screen_position_get(obj, &x, &y);
+ printf("MOVE - win geom: %4i %4i\n", x, y);
+}
+
+static void
+_win_resize(void *data, Evas *e, Evas_Object *obj, void *event_info)
+{
+ Evas_Coord w, h;
+ evas_object_geometry_get(obj, NULL, NULL, &w, &h);
+ printf("RESIZE - win geom: %4ix%4i\n", w, h);
+}
+
void
test_win_state(void *data, Evas_Object *obj, void *event_info)
{
win = elm_win_add(NULL, "window-state", ELM_WIN_BASIC);
elm_win_title_set(win, "Window States");
+ evas_object_smart_callback_add(win, "moved", my_win_move, NULL);
+ evas_object_event_callback_add(win, EVAS_CALLBACK_RESIZE, _win_resize, NULL);
elm_win_autodel_set(win, 1);
bg = elm_bg_add(win);
*/
EAPI void elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode);
EAPI void elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard);
-
+
+ EAPI void elm_win_screen_position_get(Evas_Object *obj, int *x, int *y);
+
EAPI Evas_Object *elm_win_inwin_add(Evas_Object *obj);
EAPI void elm_win_inwin_activate(Evas_Object *obj);
EINA_DEPRECATED EAPI void elm_win_inwin_style_set(Evas_Object *obj, const char *style);
* "delete,request" - the user requested to delete the window
* "focus,on" - window got focus
* "focus,out" - window lost focus
+ * "moved" - window that holds the canvas was moved
*/
EAPI Evas_Object *elm_bg_add(Evas_Object *parent);
EAPI void elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable);
EAPI void elm_entry_select_none(Evas_Object *obj);
EAPI void elm_entry_select_all(Evas_Object *obj);
-#if 0
- //next char (char # -= 1)
- //prev char (char # += 1)
- //get cur char pos (char #)
- //set cur char pos (char #)
- //get char len (# of chars)
- //get cur char (utf8)
- //get text from char pos 1 to char pos 2 (inclusive)
- //sel text from char pos 1 to char pos 2 (inclusive)
- //clean sel (already have with select_abort)
-#endif
+ EAPI Eina_Bool elm_entry_cursor_next(Evas_Object *obj);
+ EAPI Eina_Bool elm_entry_cursor_prev(Evas_Object *obj);
+ EAPI Eina_Bool elm_entry_cursor_up(Evas_Object *obj);
+ EAPI Eina_Bool elm_entry_cursor_down(Evas_Object *obj);
+ EAPI void elm_entry_cursor_begin_set(Evas_Object *obj);
+ EAPI void elm_entry_cursor_end_set(Evas_Object *obj);
+ EAPI void elm_entry_cursor_line_begin_set(Evas_Object *obj);
+ EAPI void elm_entry_cursor_line_end_set(Evas_Object *obj);
+ EAPI void elm_entry_cursor_selection_begin(Evas_Object *obj);
+ EAPI void elm_entry_cursor_selection_end(Evas_Object *obj);
+ EAPI Eina_Bool elm_entry_cursor_is_format_get(Evas_Object *obj);
+ EAPI Eina_Bool elm_entry_cursor_is_visible_format_get(Evas_Object *obj);
+ EAPI const char *elm_entry_cursor_content_get(Evas_Object *obj);
+ EAPI void elm_entry_selection_cut(Evas_Object *obj);
+ EAPI void elm_entry_selection_copy(Evas_Object *obj);
+ EAPI void elm_entry_selection_paste(Evas_Object *obj);
EAPI void elm_entry_context_menu_clear(Evas_Object *obj);
EAPI void elm_entry_context_menu_item_add(Evas_Object *obj, const char *label, const char *icon_file, Elm_Icon_Type icon_type, void (*func) (void *data, Evas_Object *obj, void *event_info), const void *data);
EAPI void elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled);
* "cursor,changed" - the cursor changed position
* "anchor,clicked" - achor called was clicked | event_info = Elm_Entry_Anchor_Info
* "activated" - when the enter key is pressed (useful for single line)
+ * "press" - when finger/mouse is pressed down
+ * "clicked" - when finger/mouse is pressed and released (without a drag etc.)
+ * "clicked,double" - when finger/mouse is double-pressed
+ * "longpressed" - the entry has been longpressed
*/
/* composite widgets - these basically put together basic widgets above
#include <Elementary.h>
#include "elm_priv.h"
+typedef struct _Mod_Api Mod_Api;
+
typedef struct _Widget_Data Widget_Data;
typedef struct _Elm_Entry_Context_Menu_Item Elm_Entry_Context_Menu_Item;
Evas_Coord downx, downy;
Evas_Coord cx, cy, cw, ch;
Eina_List *items;
+ Mod_Api *api; // module api if supplied
Eina_Bool changed : 1;
Eina_Bool linewrap : 1;
Eina_Bool char_linewrap : 1;
static Eina_List *entries = NULL;
+struct _Mod_Api
+{
+ void (*obj_hook) (Evas_Object *obj);
+ void (*obj_unhook) (Evas_Object *obj);
+ void (*obj_longpress) (Evas_Object *obj);
+};
+
+static Mod_Api *
+_module(Evas_Object *obj)
+{
+ static Elm_Module *m = NULL;
+ if (m) goto ok; // already found - just use
+ if (!(m = _elm_module_find_as("entry/api"))) return NULL;
+ // get module api
+ m->api = malloc(sizeof(Mod_Api));
+ if (!m->api) return NULL;
+ ((Mod_Api *)(m->api) )->obj_hook = // called on creation
+ _elm_module_symbol_get(m, "obj_hook");
+ ((Mod_Api *)(m->api) )->obj_unhook = // called on deletion
+ _elm_module_symbol_get(m, "obj_unhook");
+ ((Mod_Api *)(m->api) )->obj_longpress = // called on long press menu
+ _elm_module_symbol_get(m, "obj_longpress");
+ ok: // ok - return api
+ return m->api;
+}
+
static void
_del_hook(Evas_Object *obj)
{
Eina_List *l;
Elm_Entry_Context_Menu_Item *it;
+ if ((wd->api) && (wd->api->obj_unhook)) wd->api->obj_unhook(obj); // module - unhook
+
entries = eina_list_remove(entries, obj);
#ifdef HAVE_ELEMENTARY_X
ecore_event_handler_del(wd->sel_notify_handler);
const Eina_List *l;
const Elm_Entry_Context_Menu_Item *it;
- if (wd->hoversel) evas_object_del(wd->hoversel);
- else elm_widget_scroll_freeze_push(data);
- wd->hoversel = elm_hoversel_add(data);
- elm_object_style_set(wd->hoversel, "entry");
- elm_widget_sub_object_add(data, wd->hoversel);
- elm_hoversel_label_set(wd->hoversel, "Text");
- top = elm_widget_top_get(data);
- if (top) elm_hoversel_hover_parent_set(wd->hoversel, top);
- evas_object_smart_callback_add(wd->hoversel, "dismissed", _dismissed, data);
- if (!wd->selmode)
+ if ((wd->api) && (wd->api->obj_longpress))
{
- elm_hoversel_item_add(wd->hoversel, "Select", NULL, ELM_ICON_NONE,
- _select, data);
- if (wd->editable)
- elm_hoversel_item_add(wd->hoversel, "Paste", NULL, ELM_ICON_NONE,
- _paste, data);
+ wd->api->obj_longpress(data);
}
else
{
- elm_hoversel_item_add(wd->hoversel, "Copy", NULL, ELM_ICON_NONE,
- _copy, data);
- if (wd->editable)
- elm_hoversel_item_add(wd->hoversel, "Cut", NULL, ELM_ICON_NONE,
- _cut, data);
- elm_hoversel_item_add(wd->hoversel, "Cancel", NULL, ELM_ICON_NONE,
- _cancel, data);
- }
- EINA_LIST_FOREACH(wd->items, l, it)
- {
- elm_hoversel_item_add(wd->hoversel, it->label, it->icon_file,
- it->icon_type, _item_clicked, it);
- }
- if (wd->hoversel)
- {
- _hoversel_position(data);
- evas_object_show(wd->hoversel);
- elm_hoversel_hover_begin(wd->hoversel);
+ if (wd->hoversel) evas_object_del(wd->hoversel);
+ else elm_widget_scroll_freeze_push(data);
+ wd->hoversel = elm_hoversel_add(data);
+ elm_object_style_set(wd->hoversel, "entry");
+ elm_widget_sub_object_add(data, wd->hoversel);
+ elm_hoversel_label_set(wd->hoversel, "Text");
+ top = elm_widget_top_get(data);
+ if (top) elm_hoversel_hover_parent_set(wd->hoversel, top);
+ evas_object_smart_callback_add(wd->hoversel, "dismissed", _dismissed, data);
+ if (!wd->selmode)
+ {
+ elm_hoversel_item_add(wd->hoversel, "Select", NULL, ELM_ICON_NONE,
+ _select, data);
+ if (wd->editable)
+ elm_hoversel_item_add(wd->hoversel, "Paste", NULL, ELM_ICON_NONE,
+ _paste, data);
+ }
+ else
+ {
+ elm_hoversel_item_add(wd->hoversel, "Copy", NULL, ELM_ICON_NONE,
+ _copy, data);
+ if (wd->editable)
+ elm_hoversel_item_add(wd->hoversel, "Cut", NULL, ELM_ICON_NONE,
+ _cut, data);
+ elm_hoversel_item_add(wd->hoversel, "Cancel", NULL, ELM_ICON_NONE,
+ _cancel, data);
+ }
+ EINA_LIST_FOREACH(wd->items, l, it)
+ {
+ elm_hoversel_item_add(wd->hoversel, it->label, it->icon_file,
+ it->icon_type, _item_clicked, it);
+ }
+ if (wd->hoversel)
+ {
+ _hoversel_position(data);
+ evas_object_show(wd->hoversel);
+ elm_hoversel_hover_begin(wd->hoversel);
+ }
}
wd->longpress_timer = NULL;
edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
edje_object_part_text_select_abort(wd->ent, "elm.text");
+ evas_object_smart_callback_call(data, "longpressed", NULL);
return 0;
}
_signal_key_enter(void *data, Evas_Object *obj, const char *emission, const char *source)
{
Widget_Data *wd = elm_widget_data_get(data);
-
evas_object_smart_callback_call(data, "activated", NULL);
}
+static void
+_signal_mouse_down(void *data, Evas_Object *obj, const char *emission, const char *source)
+{
+ Widget_Data *wd = elm_widget_data_get(data);
+ evas_object_smart_callback_call(data, "press", NULL);
+}
+
+static void
+_signal_mouse_up(void *data, Evas_Object *obj, const char *emission, const char *source)
+{
+ Widget_Data *wd = elm_widget_data_get(data);
+ evas_object_smart_callback_call(data, "clicked", NULL);
+}
+
+static void
+_signal_mouse_double(void *data, Evas_Object *obj, const char *emission, const char *source)
+{
+ Widget_Data *wd = elm_widget_data_get(data);
+ evas_object_smart_callback_call(data, "clicked,double", NULL);
+}
+
#ifdef HAVE_ELEMENTARY_X
static int
_event_selection_notify(void *data, int type, void *event)
_signal_anchor_out, obj);
edje_object_signal_callback_add(wd->ent, "entry,key,enter", "elm.text",
_signal_key_enter, obj);
+ edje_object_signal_callback_add(wd->ent, "mouse,down,1", "elm.text",
+ _signal_mouse_down, obj);
+ edje_object_signal_callback_add(wd->ent, "mouse,up,1", "elm.text",
+ _signal_mouse_up, obj);
+ edje_object_signal_callback_add(wd->ent, "mouse,down,1,double", "elm.text",
+ _signal_mouse_double, obj);
edje_object_part_text_set(wd->ent, "elm.text", "<br>");
elm_widget_resize_object_set(obj, wd->ent);
_sizing_eval(obj);
#endif
entries = eina_list_prepend(entries, obj);
+
+ // module - find module for entry
+ wd->api = _module(obj);
+ // if found - hook in
+ if ((wd->api) && (wd->api->obj_hook)) wd->api->obj_hook(obj);
+
return obj;
}
if (!entry) entry = "<br>";
edje_object_part_text_set(wd->ent, "elm.text", entry);
- // debug
-#if 0
- {
- const Eina_List *l, *an;
- const char *anchor;
-
- an = edje_object_part_text_anchor_list_get(wd->ent, "elm.text");
- EINA_LIST_FOREACH(an, l, anchor)
- printf("ANCHOR: %s\n", anchor);
- }
-#endif
wd->changed = EINA_TRUE;
_sizing_eval(obj);
}
edje_object_part_text_select_all(wd->ent, "elm.text");
}
+EAPI Eina_Bool
+elm_entry_cursor_next(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ return edje_object_part_text_cursor_next(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI Eina_Bool
+elm_entry_cursor_prev(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ return edje_object_part_text_cursor_prev(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI Eina_Bool
+elm_entry_cursor_up(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ return edje_object_part_text_cursor_up(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI Eina_Bool
+elm_entry_cursor_down(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ return edje_object_part_text_cursor_down(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI void
+elm_entry_cursor_begin_set(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ edje_object_part_text_cursor_begin_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI void
+elm_entry_cursor_end_set(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ edje_object_part_text_cursor_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI void
+elm_entry_cursor_line_begin_set(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ edje_object_part_text_cursor_line_begin_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI void
+elm_entry_cursor_line_end_set(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ edje_object_part_text_cursor_line_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI void
+elm_entry_cursor_selection_begin(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ edje_object_part_text_select_all(wd->ent, "elm.text");
+ edje_object_part_text_cursor_copy(wd->ent, "elm.text", EDJE_CURSOR_MAIN, EDJE_CURSOR_SELECTION_BEGIN);
+ edje_object_part_text_cursor_copy(wd->ent, "elm.text", EDJE_CURSOR_MAIN, EDJE_CURSOR_SELECTION_END);
+}
+
+EAPI void
+elm_entry_cursor_selection_end(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ edje_object_part_text_cursor_copy(wd->ent, "elm.text", EDJE_CURSOR_MAIN, EDJE_CURSOR_SELECTION_END);
+}
+
+EAPI Eina_Bool
+elm_entry_cursor_is_format_get(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ return edje_object_part_text_cursor_is_format_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI Eina_Bool
+elm_entry_cursor_is_visible_format_get(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ return edje_object_part_text_cursor_is_visible_format_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI const char *
+elm_entry_cursor_content_get(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ return edje_object_part_text_cursor_content_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
+}
+
+EAPI void
+elm_entry_selection_cut(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ _cut(obj, NULL, NULL);
+}
+
+EAPI void
+elm_entry_selection_copy(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ _copy(obj, NULL, NULL);
+}
+
+EAPI void
+elm_entry_selection_paste(Evas_Object *obj)
+{
+ Widget_Data *wd = elm_widget_data_get(obj);
+ _paste(obj, NULL, NULL);
+}
+
EAPI void
elm_entry_context_menu_clear(Evas_Object *obj)
{
static Ecore_Event_Handler *_elm_event_property_change = NULL;
#ifdef HAVE_ELEMENTARY_X
static Ecore_X_Atom _elm_atom_enlightenment_scale = 0;
+static Ecore_X_Atom _elm_atom_enlightenment_finger_size = 0;
+static Ecore_X_Atom _elm_atom_enlightenment_theme = 0;
#endif
static int
if (pscale != _elm_config->scale) _elm_rescale();
}
}
+ else if (event->atom == _elm_atom_enlightenment_finger_size)
+ {
+ int val = 1000;
+
+ if (ecore_x_window_prop_card32_get(event->win,
+ event->atom,
+ &val, 1) > 0)
+ {
+ int pfinger_size;
+
+ pfinger_size = _elm_config->finger_size;
+ _elm_config->finger_size = val;
+ if (pfinger_size != _elm_config->finger_size) _elm_rescale();
+ }
+ }
+ else if (event->atom == _elm_atom_enlightenment_theme)
+ {
+ char *val = NULL;
+
+ val = ecore_x_window_prop_string_get(event->win,
+ event->atom);
+ if (val)
+ {
+ _elm_theme_parse(val);
+ free(val);
+ _elm_rescale();
+ }
+ }
}
return 1;
}
if (!_elm_lib_dir)
_elm_lib_dir = eina_stringshare_add("/");
- // FIXME: actually load config
+ // FIXME: actually load config from file - use eet. also for X properties,
+ // reduce to single x property with eet data encoded in it.
_elm_config = ELM_NEW(Elm_Config);
_elm_config->engine = ELM_SOFTWARE_X11;
_elm_config->thumbscroll_enable = 1;
else _elm_theme_parse("default");
_elm_config->font_hinting = 2;
- s= getenv("ELM_FONT_HINTING");
+ s = getenv("ELM_FONT_HINTING");
if (s)
{
- if (!strcasecmp(s, "none"))
- _elm_config->font_hinting = 0;
- else if (!strcasecmp(s, "auto"))
- _elm_config->font_hinting = 1;
- else if (!strcasecmp(s, "bytecode"))
- _elm_config->font_hinting = 2;
+ if (!strcasecmp(s, "none")) _elm_config->font_hinting = 0;
+ else if (!strcasecmp(s, "auto")) _elm_config->font_hinting = 1;
+ else if (!strcasecmp(s, "bytecode")) _elm_config->font_hinting = 2;
}
s = getenv("ELM_FONT_PATH");
ecore_animator_frametime_set(1.0 / _elm_config->fps);
edje_frametime_set(1.0 / 60.0);
edje_scale_set(_elm_config->scale);
+
+ s = getenv("ELM_MODULES");
+ if (s) _elm_module_parse(s);
}
EAPI void
}
if (!ecore_x_screen_is_composited(0))
_elm_config->compositing = 0;
- _elm_atom_enlightenment_scale = ecore_x_atom_get("ENLIGHTENMENT_SCALE");
+
+ _elm_atom_enlightenment_scale = ecore_x_atom_get("ENLIGHTENMENT_SCALE");
+ _elm_atom_enlightenment_finger_size = ecore_x_atom_get("ENLIGHTENMENT_FINGER_SIZE");
+ _elm_atom_enlightenment_theme = ecore_x_atom_get("ENLIGHTENMENT_THEME");
+
ecore_x_event_mask_set(ecore_x_window_root_first_get(),
ECORE_X_EVENT_MASK_WINDOW_PROPERTY);
_elm_event_property_change = ecore_event_handler_add
}
}
}
+ if (!getenv("ELM_FINGER_SIZE"))
+ {
+ if (ecore_x_window_prop_card32_get(ecore_x_window_root_first_get(),
+ _elm_atom_enlightenment_finger_size,
+ &val, 1) > 0)
+ {
+ if (val > 0)
+ {
+ _elm_config->finger_size = val;
+ }
+ }
+ }
+ if (!getenv("ELM_THEME"))
+ {
+ char *s;
+
+ s = ecore_x_window_prop_string_get(ecore_x_window_root_first_get(),
+ _elm_atom_enlightenment_theme);
+ if (s)
+ {
+ _elm_theme_parse(s);
+ free(s);
+ }
+ }
#endif
}
}
#include <Elementary.h>
#include "elm_priv.h"
+/* what are moodules in elementary for? for modularising behavior and features
+ * so they can be plugged in and out where you dont want the core source to
+ * alwyas behave like that or do it that way. plug it at runtime!
+ *
+ * they have module names (in config) and "slots" to plug that module into
+ * to server a purpose. eg you plug plugin "xx" into the "entry-copy-paste"
+ * slot so it would provide replacement copy & paste ui functionality and
+ * specific symbols
+ *
+ * config is something like:
+ *
+ * export ELM_MODULES="xx>slot1:yy>slot2"
+ *
+ * where a module named xx is plugged into slot1 & yy is plugged into slot2
+ *
+ * real examples:
+ *
+ * export ELM_MODULES="my_module>entry/api"
+ *
+ * this loads the module called "my_module" into the slot "entry/api" which
+ * is an api slot for entry modules to modify behavior and hook to
+ * creation/deletion of the entry as well as replace the longpress behavior.
+ */
+
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#include <dlfcn.h> /* dlopen,dlclose,etc */
static Eina_Hash *modules = NULL;
+static Eina_Hash *modules_as = NULL;
void
_elm_module_init(void)
{
modules = eina_hash_string_small_new(NULL);
+ modules_as = eina_hash_string_small_new(NULL);
}
void
// FIXME: unload all modules
eina_hash_free(modules);
modules = NULL;
+ eina_hash_free(modules_as);
+ modules_as = NULL;
+}
+
+void
+_elm_module_parse(const char *s)
+{
+ Eina_List *names = NULL;
+ const char *p, *pe;
+
+ p = s;
+ pe = p;
+ for (;;)
+ {
+ if ((*pe == ':') || (*pe == 0))
+ { // p -> pe == 'name:'
+ if (pe > p)
+ {
+ char *n = malloc(pe - p + 1);
+ if (n)
+ {
+ char *nn;
+
+ strncpy(n, p, pe - p);
+ n[pe - p] = 0;
+ nn = strchr(n, '>');
+ if (nn)
+ {
+ *nn = 0;
+ nn++;
+ _elm_module_add(n, nn);
+ }
+ free(n);
+ }
+ }
+ if (*pe == 0) break;
+ p = pe + 1;
+ pe = p;
+ }
+ else
+ pe++;
+ }
+}
+
+Elm_Module *
+_elm_module_find_as(const char *as)
+{
+ Elm_Module *m;
+
+ m = eina_hash_find(modules_as, as);
+ return m;
}
Elm_Module *
-_elm_module_add(const char *name)
+_elm_module_add(const char *name, const char *as)
{
Elm_Module *m;
char buf[PATH_MAX];
}
m->references = 1;
eina_hash_direct_add(modules, m->name, m);
+ m->as = eina_stringshare_add(as);
+ eina_hash_direct_add(modules_as, m->as, m);
return m;
}
if (m->references > 0) return;
if (m->shutdown_func) m->shutdown_func(m);
eina_hash_del(modules, m->name, m);
- dlclose(m->handle);
+ eina_hash_del(modules_as, m->as, m);
+ if (m->api) free(m->api);
eina_stringshare_del(m->name);
+ eina_stringshare_del(m->as);
eina_stringshare_del(m->so_path);
eina_stringshare_del(m->data_dir);
eina_stringshare_del(m->bin_dir);
+ dlclose(m->handle);
free(m);
}
{
int version;
const char *name;
+ const char *as;
const char *so_path;
const char *data_dir;
const char *bin_dir;
void *handle;
void *data;
+ void *api;
int (*init_func) (Elm_Module *m);
int (*shutdown_func) (Elm_Module *m);
int references;
void _elm_module_init(void);
void _elm_module_shutdown(void);
-Elm_Module *_elm_module_add(const char *name);
+void _elm_module_parse(const char *s);
+Elm_Module *_elm_module_find_as(const char *as);
+Elm_Module *_elm_module_add(const char *name, const char *as);
void _elm_module_del(Elm_Module *m);
const void *_elm_module_symbol_get(Elm_Module *m, const char *name);
for (;;)
{
if ((*pe == ':') || (*pe == 0))
- { // p -> pe == 'name/'
+ { // p -> pe == 'name:'
if (pe > p)
{
char *n = malloc(pe - p + 1);
Elm_Win_Keyboard_Mode kbdmode;
Eina_Bool autodel : 1;
int *autodel_clear, rot;
+ struct {
+ int x, y;
+ } screen;
};
static void _elm_win_obj_callback_del(void *data, Evas *e, Evas_Object *obj, void *event_info);
static void _elm_win_obj_intercept_show(void *data, Evas_Object *obj);
+static void _elm_win_move(Ecore_Evas *ee);
static void _elm_win_resize(Ecore_Evas *ee);
static void _elm_win_delete_request(Ecore_Evas *ee);
static void _elm_win_resize_job(void *data);
static Eina_List *_elm_win_list = NULL;
static void
+_elm_win_move(Ecore_Evas *ee)
+{
+ Evas_Object *obj = ecore_evas_object_associate_get(ee);
+ Elm_Win *win;
+ int x, y;
+ if (strcmp(elm_widget_type_get(obj), "win")) return;
+ win = elm_widget_data_get(obj);
+ if (!win) return;
+ ecore_evas_geometry_get(ee, &x, &y, NULL, NULL);
+ win->screen.x = x;
+ win->screen.y = y;
+ evas_object_smart_callback_call(win->win_obj, "moved", NULL);
+}
+
+static void
_elm_win_resize(Ecore_Evas *ee)
{
Evas_Object *obj = ecore_evas_object_associate_get(ee);
ecore_evas_callback_resize_set(win->ee, _elm_win_resize);
ecore_evas_callback_focus_in_set(win->ee, _elm_win_focus_in);
ecore_evas_callback_focus_out_set(win->ee, _elm_win_focus_out);
+ ecore_evas_callback_move_set(win->ee, _elm_win_move);
evas_image_cache_set(win->evas, (_elm_config->image_cache * 1024));
evas_font_cache_set(win->evas, (_elm_config->font_cache * 1024));
EINA_LIST_FOREACH(_elm_config->font_dirs, l, fontpath)
#endif
}
+EAPI void
+elm_win_screen_position_get(Evas_Object *obj, int *x, int *y)
+{
+ Elm_Win *win;
+ if (strcmp(elm_widget_type_get(obj), "win")) return;
+ win = elm_widget_data_get(obj);
+ if (!win) return;
+ if (x) *x = win->screen.x;
+ if (y) *y = win->screen.y;
+}
+
typedef struct _Widget_Data Widget_Data;
struct _Widget_Data
--- /dev/null
+AUTOMAKE_OPTIONS = 1.4 foreign
+MAINTAINERCLEANFILES = Makefile.in
+
+SUBDIRS = \
+test_entry
--- /dev/null
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I. \
+-I$(top_builddir) \
+-I$(top_srcdir) \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \
+-DPACKAGE_LIB_DIR=\"$(libdir)\" \
+@ELEMENTARY_CFLAGS@ \
+@ELEMENTARY_X_CFLAGS@ \
+@ELEMENTARY_FB_CFLAGS@ \
+@ELEMENTARY_WIN32_CFLAGS@ \
+@ELEMENTARY_WINCE_CFLAGS@ \
+@ELEMENTARY_EDBUS_CFLAGS@ \
+@ELEMENTARY_EFREET_CFLAGS@
+
+if ELEMENTARY_WINDOWS_BUILD
+AM_CPPFLAGS += -DELEMENTARY_BUILD
+endif
+
+pkgdir = $(libdir)/elementary/modules/test_entry/$(MODULE_ARCH)
+pkg_LTLIBRARIES = module.la
+
+module_la_SOURCES = mod.c
+
+module_la_LIBADD = $(top_builddir)/src/lib/libelementary.la
+module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version
+module_la_LIBTOOLFLAGS = --tag=disable-static
--- /dev/null
+#include <Elementary.h>
+
+// module api funcs needed
+EAPI int
+elm_modapi_init(void *m)
+{
+ return 1; // succeed always
+}
+
+EAPI int
+elm_modapi_shutdown(void *m)
+{
+ return 1; // succeed always
+}
+
+// module fucns for the specific module type
+EAPI void
+obj_hook(Evas_Object *obj)
+{
+ printf("hook: %p\n", obj);
+}
+
+EAPI void
+obj_unhook(Evas_Object *obj)
+{
+ printf("unhook: %p\n", obj);
+}
+
+EAPI void
+obj_longpress(Evas_Object *obj)
+{
+ printf("longpress: %p\n", obj);
+}