2 # include "elementary_config.h"
4 #include <Elementary.h>
11 #ifdef HAVE_ELEMENTARY_X
13 #define ARRAYINIT(foo) [foo] =
18 # define cnp_debug(x...) fprintf(stderr, __FILE__": " x)
20 # define cnp_debug(x...)
23 typedef struct _Cnp_Selection Cnp_Selection;
24 typedef struct _Escape Escape;
25 typedef struct _Tmp_Info Tmp_Info;
26 typedef struct _Cnp_Atom Cnp_Atom;
27 typedef struct _Saved_Type Saved_Type;
28 typedef struct _Dropable Dropable;
30 typedef Eina_Bool (*Converter_Fn_Cb) (char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
31 typedef int (*Response_Handler_Cb) (Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *);
32 typedef int (*Notify_Handler_Cb) (Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *);
38 CNP_ATOM_LISTING_ATOMS = CNP_ATOM_ATOM,
40 CNP_ATOM_text_urilist,
41 CNP_ATOM_text_x_vcard,
52 CNP_ATOM_text_html_utf8,
57 CNP_ATOM_text_plain_utf8,
68 Evas_Object *requestwidget;
70 Elm_Sel_Format requestformat;
72 Eina_Bool (*set) (Ecore_X_Window, const void *data, int size);
73 Eina_Bool (*clear) (void);
74 void (*request) (Ecore_X_Window, const char *target);
76 Elm_Sel_Format format;
77 Ecore_X_Selection ecore_sel;
99 Elm_Sel_Format formats;
100 /* Called by ecore to do conversion */
101 Converter_Fn_Cb converter;
102 Response_Handler_Cb response;
103 Notify_Handler_Cb notify;
114 Eina_Bool textreq: 1;
120 /* FIXME: Cache window */
121 Elm_Sel_Format types;
126 static Tmp_Info *elm_cnp_tempfile_create(int size);
127 static int tmpinfo_free(Tmp_Info *tmp);
129 static Eina_Bool _elm_cnp_init(void);
130 static Eina_Bool selection_clear(void *udata __UNUSED__, int type, void *event);
131 static Eina_Bool selection_notify(void *udata __UNUSED__, int type, void *event);
133 static Eina_Bool targets_converter(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
134 static Eina_Bool text_converter(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
135 static Eina_Bool general_converter(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
136 static Eina_Bool image_converter(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
137 static Eina_Bool vcard_send(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
139 static int response_handler_targets(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *);
141 static int notify_handler_targets(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify);
142 static int notify_handler_text(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify);
143 static int notify_handler_image(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify);
144 static int notify_handler_uri(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify);
145 static int notify_handler_html(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify);
146 static int vcard_receive(Cnp_Selection *sed, Ecore_X_Event_Selection_Notify *notify);
148 static Eina_Bool pasteimage_append(char *file, Evas_Object *entry);
150 static Cnp_Atom atoms[CNP_N_ATOMS] = {
151 [CNP_ATOM_TARGETS] = {
153 ELM_SEL_FORMAT_TARGETS,
155 response_handler_targets,
156 notify_handler_targets,
160 "ATOM", // for opera browser
161 ELM_SEL_FORMAT_TARGETS,
163 response_handler_targets,
164 notify_handler_targets,
168 "application/x-elementary-markup",
169 ELM_SEL_FORMAT_MARKUP,
175 [CNP_ATOM_text_uri] = {
177 ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_IMAGE, /* Either images or entries */
183 [CNP_ATOM_text_urilist] = {
185 ELM_SEL_FORMAT_IMAGE,
191 [CNP_ATOM_text_x_vcard] = {
193 ELM_SEL_FORMAT_VCARD,
197 [CNP_ATOM_image_png] = {
199 ELM_SEL_FORMAT_IMAGE,
202 notify_handler_image,
205 [CNP_ATOM_image_jpeg] = {
207 ELM_SEL_FORMAT_IMAGE,
210 notify_handler_image,/* Raw image data is the same */
213 [CNP_ATOM_image_bmp] = {
215 ELM_SEL_FORMAT_IMAGE,
218 notify_handler_image,/* Raw image data is the same */
221 [CNP_ATOM_image_gif] = {
223 ELM_SEL_FORMAT_IMAGE,
226 notify_handler_image,/* Raw image data is the same */
229 [CNP_ATOM_image_tiff] = {
231 ELM_SEL_FORMAT_IMAGE,
234 notify_handler_image,/* Raw image data is the same */
237 [CNP_ATOM_image_svg] = {
239 ELM_SEL_FORMAT_IMAGE,
242 notify_handler_image,/* Raw image data is the same */
245 [CNP_ATOM_image_xpm] = {
247 ELM_SEL_FORMAT_IMAGE,
250 notify_handler_image,/* Raw image data is the same */
253 [CNP_ATOM_image_tga] = {
255 ELM_SEL_FORMAT_IMAGE,
258 notify_handler_image,/* Raw image data is the same */
261 [CNP_ATOM_image_ppm] = {
262 "image/x-portable-pixmap",
263 ELM_SEL_FORMAT_IMAGE,
266 notify_handler_image,/* Raw image data is the same */
269 [CNP_ATOM_text_html_utf8] = {
270 "text/html;charset=utf-8",
277 [CNP_ATOM_text_html] = {
282 notify_handler_html, /* No encoding: Webkit only */
285 [CNP_ATOM_UTF8STRING] = {
287 ELM_SEL_FORMAT_TEXT | ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_HTML,
293 [CNP_ATOM_STRING] = {
295 ELM_SEL_FORMAT_TEXT | ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_HTML,
303 ELM_SEL_FORMAT_TEXT | ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_HTML,
309 [CNP_ATOM_text_plain_utf8] = {
310 "text/plain;charset=utf-8",
311 ELM_SEL_FORMAT_TEXT | ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_HTML,
317 [CNP_ATOM_text_plain] = {
319 ELM_SEL_FORMAT_TEXT | ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_HTML,
327 static Cnp_Selection selections[ELM_SEL_TYPE_CLIPBOARD + 1] = {
328 ARRAYINIT(ELM_SEL_TYPE_PRIMARY) {
330 .ecore_sel = ECORE_X_SELECTION_PRIMARY,
331 .set = ecore_x_selection_primary_set,
332 .clear = ecore_x_selection_primary_clear,
333 .request = ecore_x_selection_primary_request,
335 ARRAYINIT(ELM_SEL_TYPE_SECONDARY) {
336 .debug = "Secondary",
337 .ecore_sel = ECORE_X_SELECTION_SECONDARY,
338 .set = ecore_x_selection_secondary_set,
339 .clear = ecore_x_selection_secondary_clear,
340 .request = ecore_x_selection_secondary_request,
342 ARRAYINIT(ELM_SEL_TYPE_XDND) {
344 .ecore_sel = ECORE_X_SELECTION_XDND,
345 .request = ecore_x_selection_xdnd_request,
347 ARRAYINIT(ELM_SEL_TYPE_CLIPBOARD) {
348 .debug = "Clipboard",
349 .ecore_sel = ECORE_X_SELECTION_CLIPBOARD,
350 .set = ecore_x_selection_clipboard_set,
351 .clear = ecore_x_selection_clipboard_clear,
352 .request = ecore_x_selection_clipboard_request,
356 /* Data for DND in progress */
357 static Saved_Type savedtypes = { NULL, NULL, 0, 0, 0, EINA_FALSE };
359 static void (*dragdonecb) (void *data, Evas_Object *obj) = NULL;
360 static void *dragdonedata = NULL;
362 static int _elm_cnp_init_count = 0;
365 * Drag & Drop functions
368 /* FIXME: Way too many globals */
369 static Eina_List *drops = NULL;
370 static Evas_Object *dragwin = NULL;
371 static int _dragx = 0, _dragy = 0;
372 static Ecore_Event_Handler *handler_pos = NULL;
373 static Ecore_Event_Handler *handler_drop = NULL;
374 static Ecore_Event_Handler *handler_enter = NULL;
375 static Ecore_Event_Handler *handler_status = NULL;
379 /* Stringshared, so I can just compare pointers later */
380 static const char *text_uri;
383 elm_selection_selection_has_owner(void)
385 #ifdef HAVE_ELEMENTARY_X
386 return !!ecore_x_selection_owner_get(ECORE_X_ATOM_SELECTION_CLIPBOARD);
393 elm_cnp_selection_set(Elm_Sel_Type selection, Evas_Object *obj,
394 Elm_Sel_Format format, const void *selbuf, size_t buflen)
396 #ifdef HAVE_ELEMENTARY_X
397 Evas_Object *top = elm_widget_top_get(obj);
401 if (top) xwin = elm_win_xwindow_get(top);
402 else xwin = elm_win_xwindow_get(obj);
403 if ((!xwin) || (selection > ELM_SEL_TYPE_CLIPBOARD))
405 if (!_elm_cnp_init_count) _elm_cnp_init();
406 if ((!selbuf) && (format != ELM_SEL_FORMAT_IMAGE))
407 return elm_object_cnp_selection_clear(obj, selection);
409 sel = selections + selection;
411 sel->active = EINA_TRUE;
413 sel->set(xwin, &selection, sizeof(Elm_Sel_Type));
414 sel->format = format;
418 if (format == ELM_SEL_FORMAT_IMAGE)
420 sel->selbuf = malloc(buflen+1);
421 memcpy(sel->selbuf, selbuf, buflen);
424 sel->selbuf = strdup((char*)selbuf);
436 elm_object_cnp_selection_clear(Evas_Object *obj, Elm_Sel_Type selection)
438 #ifdef HAVE_ELEMENTARY_X
441 if ((unsigned int)selection > (unsigned int)ELM_SEL_TYPE_CLIPBOARD)
443 if (!_elm_cnp_init_count) _elm_cnp_init();
445 sel = selections + selection;
447 /* No longer this selection: Consider it gone! */
448 if ((!sel->active) || (sel->widget != obj)) return EINA_TRUE;
450 sel->active = EINA_FALSE;
466 elm_cnp_selection_get(Elm_Sel_Type selection, Elm_Sel_Format format,
467 Evas_Object *obj, Elm_Drop_Cb datacb, void *udata)
469 #ifdef HAVE_ELEMENTARY_X
473 if (selection > ELM_SEL_TYPE_CLIPBOARD)
475 if (!_elm_cnp_init_count) _elm_cnp_init();
477 sel = selections + selection;
478 top = elm_widget_top_get(obj);
479 if (!top) return EINA_FALSE;
481 sel->requestformat = format;
482 sel->requestwidget = obj;
483 sel->request(elm_win_xwindow_get(top), ECORE_X_SELECTION_TARGET_TARGETS);
484 sel->datacb = datacb;
493 #ifdef HAVE_ELEMENTARY_X
500 if (_elm_cnp_init_count++) return EINA_TRUE;
501 for (i = 0; i < CNP_N_ATOMS; i++)
503 atoms[i].atom = ecore_x_atom_get(atoms[i].name);
504 ecore_x_selection_converter_atom_add(atoms[i].atom,
508 ecore_event_handler_add(ECORE_X_EVENT_SELECTION_CLEAR, selection_clear, NULL);
509 ecore_event_handler_add(ECORE_X_EVENT_SELECTION_NOTIFY, selection_notify, NULL);
511 text_uri = eina_stringshare_add("text/uri-list");
516 selection_clear(void *udata __UNUSED__, int type __UNUSED__, void *event)
518 Ecore_X_Event_Selection_Clear *ev = event;
522 for (i = 0; i <= ELM_SEL_TYPE_CLIPBOARD; i++)
524 if (selections[i].ecore_sel == ev->selection) break;
526 cnp_debug("selection %d clear\n", i);
527 /* Not me... Don't care */
528 if (i > ELM_SEL_TYPE_CLIPBOARD) return ECORE_CALLBACK_PASS_ON;
530 sel = selections + i;
531 sel->active = EINA_FALSE;
539 return ECORE_CALLBACK_PASS_ON;
544 * Response to a selection notify:
545 * - So we have asked for the selection list.
546 * - If it's the targets list, parse it, and fire of what we want,
547 * else it's the data we want.
550 selection_notify(void *udata __UNUSED__, int type __UNUSED__, void *event)
552 Ecore_X_Event_Selection_Notify *ev = event;
556 cnp_debug("selection notify callback: %d\n",ev->selection);
557 switch (ev->selection)
559 case ECORE_X_SELECTION_PRIMARY:
560 sel = selections + ELM_SEL_TYPE_PRIMARY;
562 case ECORE_X_SELECTION_SECONDARY:
563 sel = selections + ELM_SEL_TYPE_SECONDARY;
565 case ECORE_X_SELECTION_XDND:
566 sel = selections + ELM_SEL_TYPE_XDND;
568 case ECORE_X_SELECTION_CLIPBOARD:
569 sel = selections + ELM_SEL_TYPE_CLIPBOARD;
572 return ECORE_CALLBACK_PASS_ON;
574 cnp_debug("Target is %s\n", ev->target);
576 for (i = 0; i < CNP_N_ATOMS; i++)
578 if (!strcmp(ev->target, atoms[i].name))
582 cnp_debug("Found something: %s\n", atoms[i].name);
583 atoms[i].notify(sel, ev);
587 cnp_debug("Ignored: No handler!\n");
592 return ECORE_CALLBACK_PASS_ON;
595 static Elm_Sel_Format
596 _get_selection_type(void *data, int size)
598 if (size == sizeof(Elm_Sel_Type))
600 Cnp_Selection *sel = selections + *((int *)data);
602 (sel->format >= ELM_SEL_FORMAT_TARGETS) &&
603 (sel->format <= ELM_SEL_FORMAT_HTML))
606 return ELM_SEL_FORMAT_NONE;
610 targets_converter(char *target __UNUSED__, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize)
615 Elm_Sel_Format seltype;
617 if (!data_ret) return EINA_FALSE;
619 if (_get_selection_type(data, size) == ELM_SEL_FORMAT_NONE)
621 /* TODO : fallback into precise type */
622 seltype = ELM_SEL_FORMAT_TEXT;
626 sel = selections + *((int *)data);
627 seltype = sel->format;
630 for (i = 0, count = 0; i < CNP_N_ATOMS ; i++)
632 if (seltype & atoms[i].formats) count++;
635 aret = malloc(sizeof(Ecore_X_Atom) * count);
636 for (i = 0, count = 0; i < CNP_N_ATOMS; i++)
638 if (seltype & atoms[i].formats) aret[count ++] = atoms[i].atom;
642 if (typesize) *typesize = 32 /* urk */;
643 if (ttype) *ttype = ECORE_X_ATOM_ATOM;
644 if (size_ret) *size_ret = count;
650 image_converter(char *target __UNUSED__, void *data __UNUSED__, int size __UNUSED__, void **data_ret __UNUSED__, int *size_ret __UNUSED__, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
652 cnp_debug("Image converter called\n");
657 vcard_send(char *target __UNUSED__, void *data __UNUSED__, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
661 cnp_debug("Vcard send called\n");
663 sel = selections + *((int *)data);
665 if (data_ret) *data_ret = strdup(sel->selbuf);
666 if (size_ret) *size_ret = strlen(sel->selbuf);
672 is_uri_type_data(Cnp_Selection *sel __UNUSED__, Ecore_X_Event_Selection_Notify *notify)
674 Ecore_X_Selection_Data *data;
678 cnp_debug("data->format is %d %p %p\n", data->format, notify, data);
679 if (data->content == ECORE_X_SELECTION_CONTENT_FILES) return EINA_TRUE;
680 p = (char *)data->data;
681 if (!p) return EINA_TRUE;
683 cnp_debug("Got %s\n", p);
684 if (strncmp(p, "file://", 7))
686 if (*p != '/') return EINA_FALSE;
693 * Callback to handle a targets response on a selection request:
694 * So pick the format we'd like; and then request it.
697 notify_handler_targets(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
699 Ecore_X_Selection_Data_Targets *targets;
700 Ecore_X_Atom *atomlist;
704 targets = notify->data;
705 atomlist = (Ecore_X_Atom *)(targets->data.data);
707 for (j = (CNP_ATOM_LISTING_ATOMS+1); j < CNP_N_ATOMS; j++)
709 cnp_debug("\t%s %d\n", atoms[j].name, atoms[j].atom);
710 if (!(atoms[j].formats & sel->requestformat)) continue;
711 for (i = 0; i < targets->data.length; i++)
713 if ((atoms[j].atom == atomlist[i]) && (atoms[j].notify))
715 if ((j == CNP_ATOM_text_uri) ||
716 (j == CNP_ATOM_text_urilist))
718 if(!is_uri_type_data(sel, notify)) continue;
720 cnp_debug("Atom %s matches\n",atoms[j].name);
726 cnp_debug("Couldn't find anything that matches\n");
727 return ECORE_CALLBACK_PASS_ON;
730 top = elm_widget_top_get(sel->requestwidget);
731 if (!top) top = sel->requestwidget;
732 cnp_debug("Sending request for %s\n", atoms[j].name);
733 sel->request(elm_win_xwindow_get(top), atoms[j].name);
735 return ECORE_CALLBACK_PASS_ON;
739 response_handler_targets(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
741 Ecore_X_Selection_Data_Targets *targets;
742 Ecore_X_Atom *atomlist;
746 targets = notify->data;
747 atomlist = (Ecore_X_Atom *)(targets->data.data);
749 for (j = (CNP_ATOM_LISTING_ATOMS+1); j < CNP_N_ATOMS; j++)
751 if (!(atoms[j].formats & sel->requestformat)) continue;
752 for (i = 0 ; i < targets->data.length ; i ++)
754 if ((atoms[j].atom == atomlist[i]) && (atoms[j].response))
756 /* Found a match: Use it */
761 cnp_debug("No matching type found\n");
765 top = elm_widget_top_get(sel->requestwidget);
768 sel->request(elm_win_xwindow_get(top), atoms[j].name);
774 notify_handler_text(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
776 Ecore_X_Selection_Data *data;
783 Elm_Selection_Data ddata;
785 ddata.x = ddata.y = 0;
786 ddata.format = ELM_SEL_FORMAT_TEXT;
787 ddata.data = data->data;
788 ddata.len = data->length;
789 sel->datacb(sel->udata, sel->widget, &ddata);
793 cnp_debug("Notify handler text %d %d %p\n", data->format,data->length, data->data);
794 str = _elm_util_text_to_mkup((const char *) data->data);
795 cnp_debug("String is %s (from %s)\n", str, data->data);
796 _elm_entry_entry_paste(sel->requestwidget, str);
803 * So someone is pasting an image into my entry or widget...
806 notify_handler_uri(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
808 Ecore_X_Selection_Data *data;
809 Ecore_X_Selection_Data_Files *files;
813 cnp_debug("data->format is %d %p %p\n", data->format, notify, data);
814 if (data->content == ECORE_X_SELECTION_CONTENT_FILES)
816 cnp_debug("got a files list\n");
817 files = notify->data;
818 if (files->num_files > 1)
820 /* Don't handle many items */
821 cnp_debug("more then one file: Bailing\n");
824 stripstr = p = strdup(files->files[0]);
828 stripstr = p = malloc(data->length * sizeof(char) + 1);
829 memcpy(stripstr, data->data, data->length);
830 stripstr[data->length] = 0;
835 cnp_debug("Couldn't find a file\n");
838 cnp_debug("Got %s\n",p);
839 if (strncmp(p, "file://", 7))
841 /* Try and continue if it looks sane */
850 p += strlen("file://");
853 if (savedtypes.imgfile) free((void*)savedtypes.imgfile);
854 if (savedtypes.textreq)
856 savedtypes.textreq = 0;
857 savedtypes.imgfile = strdup(p);
861 pasteimage_append(p, sel->requestwidget);
868 * Just receieved an vcard, either through cut and paste, or dnd.
871 vcard_receive(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
875 Ecore_X_Selection_Data *data;
878 cnp_debug("vcard receive\n");
880 if (sel == (selections + ELM_SEL_TYPE_XDND))
882 Elm_Selection_Data ddata;
884 cnp_debug("drag & drop\n");
885 /* FIXME: this needs to be generic: Used for all receives */
886 EINA_LIST_FOREACH(drops, l, dropable)
888 if (dropable->obj == sel->requestwidget) break;
892 cnp_debug("Unable to find drop object");
893 ecore_x_dnd_send_finished();
896 dropable = eina_list_data_get(l);
897 ddata.x = savedtypes.x;
898 ddata.y = savedtypes.y;
899 ddata.format = ELM_SEL_FORMAT_VCARD;
900 ddata.data = data->data;
901 ddata.len = data->length;
902 dropable->dropcb(dropable->cbdata, dropable->obj, &ddata);
903 ecore_x_dnd_send_finished();
905 else if (sel->datacb)
907 Elm_Selection_Data ddata;
908 ddata.x = ddata.y = 0;
909 ddata.format = ELM_SEL_FORMAT_IMAGE;
910 ddata.data = data->data;
911 ddata.len = data->length;
912 sel->datacb(sel->udata, sel->widget, &ddata);
916 cnp_debug("Paste request\n");
925 notify_handler_image(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
927 Ecore_X_Selection_Data *data;
930 cnp_debug("got a image file!\n");
933 cnp_debug("Size if %d\n", data->length);
937 Elm_Selection_Data ddata;
939 ddata.x = ddata.y = 0;
940 ddata.format = ELM_SEL_FORMAT_IMAGE;
941 ddata.data = data->data;
942 ddata.len = data->length;
943 sel->datacb(sel->udata, sel->widget, &ddata);
947 /* generate tmp name */
948 tmp = elm_cnp_tempfile_create(data->length);
949 memcpy(tmp->map, data->data, data->length);
950 munmap(tmp->map, data->length);
952 /* FIXME: Add to paste image data to clean up */
953 pasteimage_append(tmp->filename, sel->requestwidget);
961 * Warning: Generic text/html can';t handle it sanely.
962 * Firefox sends ucs2 (i think).
963 * chrome sends utf8... blerg
966 notify_handler_html(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
968 Ecore_X_Selection_Data *data;
970 cnp_debug("Got some HTML: Checking encoding is useful\n");
975 Elm_Selection_Data ddata;
976 ddata.x = ddata.y = 0;
977 ddata.format = ELM_SEL_FORMAT_HTML;
978 ddata.data = data->data;
979 ddata.len = data->length;
980 sel->datacb(sel->udata, sel->widget, &ddata);
984 char *stripstr = malloc(sizeof(char) * (data->length + 1));
985 strncpy(stripstr, (char *)data->data, data->length);
986 stripstr[data->length] = '\0';
987 cnp_debug("String is %s (%d bytes)\n", stripstr, data->length);
988 _elm_entry_entry_paste(sel->requestwidget, stripstr);
995 text_converter(char *target __UNUSED__, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
999 cnp_debug("text converter\n");
1000 if (_get_selection_type(data, size) == ELM_SEL_FORMAT_NONE)
1004 *data_ret = malloc(size * sizeof(char) + 1);
1005 memcpy(*data_ret, data, size);
1006 ((char**)(data_ret))[0][size] = 0;
1008 if (size_ret) *size_ret = size;
1011 sel = selections + *((int *)data);
1012 if (!sel->active) return EINA_TRUE;
1014 if ((sel->format & ELM_SEL_FORMAT_MARKUP) ||
1015 (sel->format & ELM_SEL_FORMAT_HTML))
1017 *data_ret = _elm_util_mkup_to_text(sel->selbuf);
1018 if (size_ret) *size_ret = strlen(*data_ret);
1020 else if (sel->format & ELM_SEL_FORMAT_TEXT)
1022 *data_ret = strdup(sel->selbuf);
1023 *size_ret = strlen(sel->selbuf);
1025 else if (sel->format & ELM_SEL_FORMAT_IMAGE)
1027 cnp_debug("Image %s\n", evas_object_type_get(sel->widget));
1028 cnp_debug("Elm type: %s\n", elm_object_widget_type_get(sel->widget));
1029 evas_object_image_file_get(elm_photocam_internal_image_get(sel->widget),
1030 (const char **)data_ret, NULL);
1031 if (!*data_ret) *data_ret = strdup("No file");
1032 else *data_ret = strdup(*data_ret);
1033 *size_ret = strlen(*data_ret);
1039 general_converter(char *target __UNUSED__, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
1041 if (_get_selection_type(data, size) == ELM_SEL_FORMAT_NONE)
1045 *data_ret = malloc(size * sizeof(char) + 1);
1046 memcpy(*data_ret, data, size);
1047 ((char**)(data_ret))[0][size] = 0;
1049 if (size_ret) *size_ret = size;
1053 Cnp_Selection *sel = selections + *((int *)data);
1054 if (data_ret) *data_ret = strdup(sel->selbuf);
1055 if (size_ret) *size_ret = strlen(sel->selbuf);
1061 pasteimage_append(char *file, Evas_Object *entry)
1065 static const char *tagstring = "<item absize=240x180 href=file://%s></item>";
1067 if ((!file) || (!entry)) return EINA_FALSE;
1069 len = strlen(tagstring)+strlen(file);
1071 entrytag = alloca(len + 1);
1072 snprintf(entrytag, len + 1, tagstring, file);
1073 _elm_entry_entry_paste(entry, entrytag);
1079 _dnd_enter(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1081 Ecore_X_Event_Xdnd_Enter *enter = ev;
1085 if ((!enter) || (!enter->num_types) || (!enter->types)) return EINA_TRUE;
1087 cnp_debug("Types\n");
1088 savedtypes.ntypes = enter->num_types;
1089 if (savedtypes.types) free(savedtypes.types);
1090 savedtypes.types = malloc(sizeof(char *) * enter->num_types);
1091 if (!savedtypes.types) return EINA_FALSE;
1093 for (i = 0; i < enter->num_types; i++)
1095 savedtypes.types[i] = eina_stringshare_add(enter->types[i]);
1096 cnp_debug("Type is %s %p %p\n", enter->types[i],
1097 savedtypes.types[i],text_uri);
1098 if (savedtypes.types[i] == text_uri)
1100 /* Request it, so we know what it is */
1101 cnp_debug("Sending uri request\n");
1102 savedtypes.textreq = 1;
1103 if (savedtypes.imgfile) free((void*)savedtypes.imgfile);
1104 savedtypes.imgfile = NULL;
1105 ecore_x_selection_xdnd_request(enter->win, text_uri);
1109 /* FIXME: Find an object and make it current */
1114 _dnd_drop(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1116 struct _Ecore_X_Event_Xdnd_Drop *drop;
1120 Ecore_X_Window xwin;
1121 Elm_Selection_Data ddata;
1127 // check we still have something to drop
1128 if (!drops) return EINA_TRUE;
1130 /* Find any widget in our window; then work out geometry rel to our window */
1131 for (l = drops; l; l = l->next)
1134 xwin = (Ecore_X_Window)ecore_evas_window_get
1135 (ecore_evas_ecore_evas_get(evas_object_evas_get
1137 if (xwin == drop->win) break;
1139 /* didn't find a window */
1140 if (!l) return EINA_TRUE;
1142 /* Calculate real (widget relative) position */
1143 // - window position
1144 // - widget position
1145 ee = ecore_evas_ecore_evas_get(evas_object_evas_get(dropable->obj));
1146 ecore_evas_geometry_get(ee, &x, &y, NULL, NULL);
1147 savedtypes.x = drop->position.x - x;
1148 savedtypes.y = drop->position.y - y;
1150 cnp_debug("Drop position is %d,%d\n", savedtypes.x, savedtypes.y);
1152 for (; l; l = l->next)
1155 evas_object_geometry_get(dropable->obj, &x, &y, &w, &h);
1156 if ((savedtypes.x >= x) && (savedtypes.y >= y) &&
1157 (savedtypes.x < x + w) && (savedtypes.y < y + h))
1161 if (!l) return EINA_TRUE; /* didn't find one */
1163 evas_object_geometry_get(dropable->obj, &x, &y, NULL, NULL);
1167 /* Find our type from the previous list */
1168 for (i = 0; i < CNP_N_ATOMS; i++)
1170 for (j = 0; j < savedtypes.ntypes; j++)
1172 if (!strcmp(savedtypes.types[j], atoms[i].name)) goto found;
1176 cnp_debug("Didn't find a target\n");
1180 cnp_debug("Found a target we'd like: %s\n", atoms[i].name);
1181 cnp_debug("0x%x\n",xwin);
1183 if (i == CNP_ATOM_text_urilist)
1185 cnp_debug("We found a URI... (%scached) %s\n",
1186 savedtypes.imgfile ? "" : "not ",
1187 savedtypes.imgfile);
1188 if (savedtypes.imgfile)
1191 static const char *tagstring = "<item absize=240x180 href="
1192 "file://%s></item>";
1193 ddata.x = savedtypes.x;
1194 ddata.y = savedtypes.y;
1196 /* If it's markup that also supports images */
1197 if ((dropable->types & ELM_SEL_FORMAT_MARKUP) &&
1198 (dropable->types & ELM_SEL_FORMAT_IMAGE))
1201 ddata.format = ELM_SEL_FORMAT_MARKUP;
1203 len = strlen(tagstring) + strlen(savedtypes.imgfile);
1204 entrytag = alloca(len + 1);
1205 snprintf(entrytag, len + 1, tagstring, savedtypes.imgfile);
1206 ddata.data = entrytag;
1207 cnp_debug("Insert %s\n", (char *)ddata.data);
1208 dropable->dropcb(dropable->cbdata, dropable->obj, &ddata);
1209 ecore_x_dnd_send_finished();
1210 if (savedtypes.imgfile) free((void*)savedtypes.imgfile);
1211 savedtypes.imgfile = NULL;
1215 else if (dropable->types & ELM_SEL_FORMAT_IMAGE)
1217 cnp_debug("Doing image insert (%s)\n", savedtypes.imgfile);
1218 ddata.format = ELM_SEL_FORMAT_IMAGE;
1219 ddata.data = (char *)savedtypes.imgfile;
1220 dropable->dropcb(dropable->cbdata, dropable->obj, &ddata);
1221 ecore_x_dnd_send_finished();
1222 if (savedtypes.imgfile) free((void*)savedtypes.imgfile);
1223 savedtypes.imgfile = NULL;
1229 cnp_debug("Item doesn't support images... passing\n");
1233 else if (savedtypes.textreq)
1235 /* Already asked: Pretend we asked now, and paste immediately when
1237 savedtypes.textreq = 0;
1238 ecore_x_dnd_send_finished();
1243 cnp_debug("doing a request then\n");
1244 selections[ELM_SEL_TYPE_XDND].requestwidget = dropable->obj;
1245 selections[ELM_SEL_TYPE_XDND].requestformat = ELM_SEL_FORMAT_MARKUP;
1246 selections[ELM_SEL_TYPE_XDND].active = EINA_TRUE;
1248 ecore_x_selection_xdnd_request(xwin, atoms[i].name);
1253 _dnd_position(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1255 struct _Ecore_X_Event_Xdnd_Position *pos;
1256 Ecore_X_Rectangle rect;
1260 /* Need to send a status back */
1261 /* FIXME: Should check I can drop here */
1262 /* FIXME: Should highlight widget */
1263 rect.x = pos->position.x - 5;
1264 rect.y = pos->position.y - 5;
1267 ecore_x_dnd_send_status(EINA_TRUE, EINA_FALSE, rect, pos->action);
1273 * When dragging this is callback response from the destination.
1274 * The important thing we care about: Can we drop; thus update cursor
1278 _dnd_status(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1280 struct _Ecore_X_Event_Xdnd_Status *status = ev;
1282 if (!status) return EINA_TRUE;
1284 /* Only thing we care about: will accept */
1285 if (status->will_accept)
1287 cnp_debug("Will accept\n");
1290 { /* Won't accept */
1291 cnp_debug("Won't accept accept\n");
1297 * Add a widget as drop target.
1300 elm_drop_target_add(Evas_Object *obj, Elm_Sel_Type format, Elm_Drop_Cb dropcb, void *cbdata)
1303 Ecore_X_Window xwin;
1308 if (!obj) return EINA_FALSE;
1309 top = elm_widget_top_get(obj);
1310 if (!top || !elm_win_xwindow_get(top)) return EINA_FALSE;
1311 if (!_elm_cnp_init_count) _elm_cnp_init();
1313 /* Is this the first? */
1314 first = (!drops) ? 1 : 0;
1316 EINA_LIST_FOREACH(drops, item, drop)
1318 if (drop->obj == obj)
1320 /* Update: Not a new one */
1321 drop->dropcb = dropcb;
1322 drop->cbdata = cbdata;
1323 drop->types = format;
1328 /* Create new drop */
1329 drop = calloc(1, sizeof(Dropable));
1330 if (!drop) return EINA_FALSE;
1331 /* FIXME: Check for eina's deranged error method */
1332 drops = eina_list_append(drops, drop);
1334 if (!drops/* || or other error */)
1339 drop->dropcb = dropcb;
1340 drop->cbdata = cbdata;
1341 drop->types = format;
1344 evas_object_event_callback_add(obj, EVAS_CALLBACK_DEL,
1345 /* I love C and varargs */
1346 (Evas_Object_Event_Cb)elm_drop_target_del,
1348 /* FIXME: Handle resizes */
1350 /* If not the first: We're done */
1351 if (!first) return EINA_TRUE;
1353 xwin = (Ecore_X_Window)ecore_evas_window_get
1354 (ecore_evas_ecore_evas_get(evas_object_evas_get(obj)));
1356 ecore_x_dnd_aware_set(xwin, EINA_TRUE);
1358 cnp_debug("Adding drop target calls\n");
1359 handler_enter = ecore_event_handler_add(ECORE_X_EVENT_XDND_ENTER,
1361 handler_pos = ecore_event_handler_add(ECORE_X_EVENT_XDND_POSITION,
1362 _dnd_position, NULL);
1363 handler_drop = ecore_event_handler_add(ECORE_X_EVENT_XDND_DROP,
1370 elm_drop_target_del(Evas_Object *obj)
1372 Dropable *drop,*del;
1374 Ecore_X_Window xwin;
1377 EINA_LIST_FOREACH(drops, item, drop)
1379 if (drop->obj == obj)
1381 drops = eina_list_remove_list(drops, item);
1386 if (!del) return EINA_FALSE;
1388 evas_object_event_callback_del(obj, EVAS_CALLBACK_FREE,
1389 (Evas_Object_Event_Cb)elm_drop_target_del);
1391 /* If still drops there: All fine.. continue */
1392 if (drops) return EINA_TRUE;
1394 cnp_debug("Disabling DND\n");
1395 xwin = (Ecore_X_Window)ecore_evas_window_get
1396 (ecore_evas_ecore_evas_get(evas_object_evas_get(obj)));
1397 ecore_x_dnd_aware_set(xwin, EINA_FALSE);
1399 ecore_event_handler_del(handler_pos);
1400 ecore_event_handler_del(handler_drop);
1401 ecore_event_handler_del(handler_enter);
1403 if (savedtypes.imgfile) free((void*)savedtypes.imgfile);
1404 savedtypes.imgfile = NULL;
1411 _drag_mouse_up(void *un __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj, void *data)
1413 Ecore_X_Window xwin = *((Ecore_X_Window *)data);
1414 evas_object_event_callback_del(obj, EVAS_CALLBACK_MOUSE_UP, _drag_mouse_up);
1416 ecore_x_dnd_aware_set(xwin, EINA_FALSE);
1419 dragdonecb(dragdonedata, selections[ELM_SEL_TYPE_XDND].widget);
1424 evas_object_del(dragwin);
1430 _drag_move(void *data __UNUSED__, Ecore_X_Xdnd_Position *pos)
1432 evas_object_move(dragwin,
1433 pos->position.x - _dragx,
1434 pos->position.y - _dragy);
1439 elm_drag_start(Evas_Object *obj, Elm_Sel_Format format, const char *data, void (*dragdone) (void *data, Evas_Object *), void *donecbdata)
1441 Ecore_X_Window xwin;
1443 Elm_Sel_Type xdnd = ELM_SEL_TYPE_XDND;
1445 int x, y, x2, y2, x3, y3;
1449 if (!_elm_cnp_init_count) _elm_cnp_init();
1451 xwin = elm_win_xwindow_get(obj);
1453 cnp_debug("starting drag...\n");
1457 cnp_debug("another obj is dragging...\n");
1461 ecore_x_dnd_type_set(xwin, "text/uri-list", EINA_TRUE);
1462 sel = selections + ELM_SEL_TYPE_XDND;
1463 sel->active = EINA_TRUE;
1465 sel->format = format;
1466 sel->selbuf = data ? strdup(data) : NULL;
1467 dragdonecb = dragdone;
1468 dragdonedata = donecbdata;
1470 ecore_x_dnd_aware_set(xwin, EINA_TRUE);
1471 ecore_x_dnd_callback_pos_update_set(_drag_move, NULL);
1472 ecore_x_dnd_begin(xwin, (unsigned char *)&xdnd, sizeof(Elm_Sel_Type));
1473 evas_object_event_callback_add(obj, EVAS_CALLBACK_MOUSE_UP,
1474 _drag_mouse_up, (void *)(long)xwin);
1476 handler_status = ecore_event_handler_add(ECORE_X_EVENT_XDND_STATUS,
1479 dragwin = elm_win_add(NULL, "Elm Drag Object", ELM_WIN_UTILITY);
1480 elm_win_override_set(dragwin, EINA_TRUE);
1482 /* FIXME: Images only */
1483 icon = elm_icon_add(dragwin);
1484 elm_icon_file_set(icon, data + 7, NULL); /* 7!? "file://" */
1485 elm_win_resize_object_add(dragwin, icon);
1486 evas_object_size_hint_weight_set(icon, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1487 evas_object_size_hint_align_set(icon, EVAS_HINT_FILL, EVAS_HINT_FILL);
1489 /* Position subwindow appropriately */
1490 ee = ecore_evas_ecore_evas_get(evas_object_evas_get(obj));
1491 ecore_evas_geometry_get(ee, &x, &y, NULL, NULL);
1492 evas_object_geometry_get(obj, &x2, &y2, &w, &h);
1495 evas_object_move(dragwin, x, y);
1496 evas_object_resize(icon, w, h);
1497 evas_object_resize(dragwin, w, h);
1499 evas_object_show(icon);
1500 evas_object_show(dragwin);
1502 evas_pointer_canvas_xy_get(evas_object_evas_get(obj), &x3, &y3);
1510 elm_cnp_tempfile_create(int size)
1514 const char *tmppath;
1517 info = malloc(sizeof(Tmp_Info));
1518 if (!info) return NULL;
1520 tmppath = getenv("TMP");
1521 if (!tmppath) tmppath = P_tmpdir;
1522 len = snprintf(NULL, 0, "%s/%sXXXXXX", tmppath, "elmcnpitem-");
1529 info->filename = malloc(len);
1530 if (!info->filename)
1535 snprintf(info->filename,len,"%s/%sXXXXXX", tmppath, "elmcnpitem-");
1537 info->fd = mkstemp(info->filename);
1542 /* And before someone says anything see POSIX 1003.1-2008 page 400 */
1545 pid = (long)getpid();
1546 /* Use pid instead of /proc/self: That way if can be passed around */
1547 len = snprintf(NULL,0,"/proc/%li/fd/%i", pid, info->fd);
1552 snprintf(tmp,len, "/proc/%li/fd/%i", pid, info->fd);
1553 unlink(info->filename);
1554 free(info->filename);
1555 info->filename = tmp;
1560 cnp_debug("filename is %s\n", info->filename);
1563 /* Set map to NULL and return */
1570 if (ftruncate(info->fd, size))
1572 perror("ftruncate");
1578 eina_mmap_safety_enabled_set(EINA_TRUE);
1580 info->map = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, info->fd, 0);
1581 if (info->map == MAP_FAILED)
1597 tmpinfo_free(Tmp_Info *info)
1599 if (!info) return 0;
1600 free(info->filename);
1606 /* Stubs for windows */
1608 elm_drag_start(Evas_Object *o, Elm_Sel_Format f, const char *d, void (*donecb)(void *, Evas_Object *),void *cbdata)
1614 elm_drop_target_add(Evas_Object *obj, Elm_Sel_Type format, Elm_Drop_Cb dropcb, void *cbdata)
1620 elm_drop_target_del(Evas_Object *o)
1626 /* vim:set ts=8 sw=3 sts=3 expandtab cino=>5n-3f0^-2{2(0W1st0 :*/