|
|
|
#include "ephoto.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
_editor_reset(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
|
|
|
|
void *event_info EINA_UNUSED)
|
|
|
|
{
|
|
|
|
ecore_event_add(EPHOTO_EVENT_EDITOR_RESET, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_editor_apply(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
|
|
|
|
void *event_info EINA_UNUSED)
|
|
|
|
{
|
|
|
|
ecore_event_add(EPHOTO_EVENT_EDITOR_APPLY, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_editor_cancel(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
|
|
|
|
void *event_info EINA_UNUSED)
|
|
|
|
{
|
|
|
|
ecore_event_add(EPHOTO_EVENT_EDITOR_CANCEL, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
Evas_Object *
|
|
|
|
ephoto_editor_add(Ephoto *ephoto, Evas_Object *parent, const char *title,
|
|
|
|
const char *data_name, void *data)
|
|
|
|
{
|
|
|
|
Evas_Object *frame, *box, *ic, *button;
|
|
|
|
|
|
|
|
frame = elm_frame_add(parent);
|
|
|
|
elm_object_text_set(frame, title);
|
|
|
|
EPHOTO_WEIGHT(frame, ephoto->config->right_size, EVAS_HINT_EXPAND);
|
|
|
|
EPHOTO_FILL(frame);
|
|
|
|
evas_object_data_set(frame, data_name, data);
|
|
|
|
elm_box_pack_end(parent, frame);
|
|
|
|
evas_object_show(frame);
|
|
|
|
|
|
|
|
box = elm_box_add(frame);
|
|
|
|
elm_box_horizontal_set(box, EINA_FALSE);
|
|
|
|
EPHOTO_EXPAND(box);
|
|
|
|
EPHOTO_FILL(box);
|
|
|
|
evas_object_data_set(box, data_name, data);
|
|
|
|
evas_object_data_set(box, "frame", frame);
|
|
|
|
elm_object_content_set(frame, box);
|
|
|
|
evas_object_show(box);
|
|
|
|
|
|
|
|
ic = elm_icon_add(box);
|
|
|
|
evas_object_size_hint_min_set(ic, 20 * elm_config_scale_get(),
|
|
|
|
20 * elm_config_scale_get());
|
|
|
|
evas_object_size_hint_aspect_set(ic, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
|
|
|
|
elm_icon_standard_set(ic, "edit-undo");
|
|
|
|
|
|
|
|
button = elm_button_add(box);
|
|
|
|
elm_object_text_set(button, _("Reset"));
|
|
|
|
elm_object_part_content_set(button, "icon", ic);
|
|
|
|
evas_object_smart_callback_add(button, "clicked", _editor_reset, box);
|
|
|
|
EPHOTO_WEIGHT(button, EVAS_HINT_EXPAND, EVAS_HINT_FILL);
|
|
|
|
EPHOTO_FILL(button);
|
|
|
|
elm_box_pack_end(box, button);
|
|
|
|
evas_object_show(button);
|
|
|
|
|
|
|
|
ic = elm_icon_add(box);
|
|
|
|
evas_object_size_hint_min_set(ic, 20 * elm_config_scale_get(),
|
|
|
|
20 * elm_config_scale_get());
|
|
|
|
evas_object_size_hint_aspect_set(ic, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
|
|
|
|
elm_icon_standard_set(ic, "document-save");
|
|
|
|
|
|
|
|
button = elm_button_add(box);
|
|
|
|
elm_object_text_set(button, _("Apply"));
|
|
|
|
elm_object_part_content_set(button, "icon", ic);
|
|
|
|
evas_object_smart_callback_add(button, "clicked", _editor_apply, ephoto);
|
|
|
|
EPHOTO_WEIGHT(button, EVAS_HINT_EXPAND, EVAS_HINT_FILL);
|
|
|
|
EPHOTO_FILL(button);
|
|
|
|
elm_box_pack_end(box, button);
|
|
|
|
evas_object_show(button);
|
|
|
|
|
|
|
|
ic = elm_icon_add(box);
|
|
|
|
evas_object_size_hint_min_set(ic, 20 * elm_config_scale_get(),
|
|
|
|
20 * elm_config_scale_get());
|
|
|
|
evas_object_size_hint_aspect_set(ic, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
|
|
|
|
elm_icon_standard_set(ic, "window-close");
|
|
|
|
|
|
|
|
button = elm_button_add(box);
|
|
|
|
elm_object_text_set(button, _("Cancel"));
|
|
|
|
elm_object_part_content_set(button, "icon", ic);
|
|
|
|
evas_object_smart_callback_add(button, "clicked", _editor_cancel, ephoto);
|
|
|
|
EPHOTO_WEIGHT(button, EVAS_HINT_EXPAND, EVAS_HINT_FILL);
|
|
|
|
EPHOTO_FILL(button);
|
|
|
|
elm_box_pack_end(box, button);
|
|
|
|
evas_object_show(button);
|
|
|
|
|
|
|
|
return box;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ephoto_editor_del(Evas_Object *obj, Evas_Object *parent EINA_UNUSED)
|
|
|
|
{
|
|
|
|
Evas_Object *frame = evas_object_data_get(obj, "frame");
|
|
|
|
|
|
|
|
if (frame)
|
|
|
|
evas_object_del(frame);
|
|
|
|
|
|
|
|
ecore_event_add(EPHOTO_EVENT_EDITOR_BACK, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|