copy from inlined wins works. copy to.. doesn't.
[framework/uifw/elementary.git] / src / lib / elm_cnp_helper.c
1 #ifdef HAVE_CONFIG_H
2 # include "elementary_config.h"
3 #endif
4 #include <Elementary.h>
5 #include "elm_priv.h"
6
7 #include <sys/mman.h>
8
9 #ifdef HAVE_ELEMENTARY_X
10
11 #define ARRAYINIT(foo)  [foo] =
12
13 //#define DEBUGON 1
14
15
16 #ifdef DEBUGON
17 # define cnp_debug(x...) fprintf(stderr, __FILE__": " x)
18 #else
19 # define cnp_debug(x...)
20 #endif
21
22 #define PROVIDER_SET "__elm_cnp_provider_set"
23
24 typedef struct _Paste_Image   Paste_Image;
25 typedef struct _Cnp_Selection Cnp_Selection;
26 typedef struct _Escape        Escape;
27 typedef struct _Tmp_Info      Tmp_Info;
28 typedef struct _Cnp_Atom      Cnp_Atom;
29 typedef struct _Saved_Type    Saved_Type;
30 typedef struct _Dropable      Dropable;
31
32 typedef Eina_Bool (*Converter_Fn_Cb)     (char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
33 typedef int       (*Response_Handler_Cb) (Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *);
34 typedef int       (*Notify_Handler_Cb)   (Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *);
35
36 enum
37 {
38    CNP_ATOM_TARGETS = 0,
39    CNP_ATOM_text_uri,
40    CNP_ATOM_text_urilist,
41    CNP_ATOM_text_x_vcard,
42    CNP_ATOM_image_png,
43    CNP_ATOM_image_jpeg,
44    CNP_ATOM_image_bmp,
45    CNP_ATOM_image_gif,
46    CNP_ATOM_image_tiff,
47    CNP_ATOM_image_svg,
48    CNP_ATOM_image_xpm,
49    CNP_ATOM_image_tga,
50    CNP_ATOM_image_ppm,
51    CNP_ATOM_XELM,
52    CNP_ATOM_text_html_utf8,
53    CNP_ATOM_text_html,
54    CNP_ATOM_UTF8STRING,
55    CNP_ATOM_STRING,
56    CNP_ATOM_TEXT,
57    CNP_ATOM_text_plain_utf8,
58    CNP_ATOM_text_plain,
59
60    CNP_N_ATOMS,
61 };
62
63 struct _Paste_Image
64 {
65    Evas_Object *entry;
66    const char  *tag;
67    const char  *file;
68    Evas_Object *img;
69 };
70
71 struct _Cnp_Selection
72 {
73    const char      *debug;
74    Evas_Object     *widget;
75    char            *selbuf;
76    Evas_Object     *requestwidget;
77    void            *udata;
78    Elm_Sel_Format   requestformat;
79    Elm_Drop_Cb      datacb;
80    Eina_Bool      (*set)     (Ecore_X_Window, const void *data, int size);
81    Eina_Bool      (*clear)   (void);
82    void           (*request) (Ecore_X_Window, const char *target);
83
84    Elm_Sel_Format    format;
85    Ecore_X_Selection ecore_sel;
86
87    Eina_Bool         active : 1;
88 };
89
90 struct _Escape
91 {
92    const char *escape;
93    const char  value;
94 };
95
96 struct _Tmp_Info
97 {
98    char *filename;
99    void *map;
100    int   fd;
101    int   len;
102 };
103
104 struct _Cnp_Atom
105 {
106    const char          *name;
107    Elm_Sel_Format       formats;
108    /* Called by ecore to do conversion */
109    Converter_Fn_Cb      converter;
110    Response_Handler_Cb  response;
111    Notify_Handler_Cb    notify;
112    /* Atom */
113    Ecore_X_Atom         atom;
114 };
115
116 struct _Saved_Type
117 {
118    const char  **types;
119    Paste_Image  *pi;
120    int           ntypes;
121    int           x, y;
122    Eina_Bool     textreq: 1;
123 };
124
125 struct _Dropable
126 {
127    Evas_Object     *obj;
128    /* FIXME: Cache window */
129    Elm_Sel_Format   types;
130    Elm_Drop_Cb      dropcb;
131    void            *cbdata;
132 };
133
134 static Tmp_Info *elm_cnp_tempfile_create(int size);
135 static int tmpinfo_free(Tmp_Info *tmp);
136
137 static Eina_Bool _elm_cnp_init(void);
138 static Eina_Bool selection_clear(void *udata __UNUSED__, int type, void *event);
139 static Eina_Bool selection_notify(void *udata __UNUSED__, int type, void *event);
140 static char *remove_tags(const char *p, int *len);
141 static char *mark_up(const char *start, int inlen, int *lenp);
142
143 static Evas_Object *image_provider(void *images, Evas_Object *entry, const char *item);
144 static void entry_deleted(void *images, Evas *e, Evas_Object *entry, void *unused);
145
146
147 static Eina_Bool targets_converter(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
148 static Eina_Bool text_converter(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
149 static Eina_Bool html_converter(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
150 static Eina_Bool edje_converter(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
151 static Eina_Bool uri_converter(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
152 static Eina_Bool image_converter(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
153 static Eina_Bool vcard_send(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize);
154
155 static int response_handler_targets(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *);
156
157 static int notify_handler_targets(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify);
158 static int notify_handler_text(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify);
159 static int notify_handler_image(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify);
160 static int notify_handler_uri(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify);
161 static int notify_handler_html(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify);
162 static int vcard_receive(Cnp_Selection *sed, Ecore_X_Event_Selection_Notify *notify);
163
164 static Paste_Image *pasteimage_alloc(const char *file, int pathlen);
165 static Eina_Bool pasteimage_append(Paste_Image *pi, Evas_Object *entry);
166 static void pasteimage_free(Paste_Image *pi);
167
168 /* Optimisation: Turn this into a 256 byte table:
169  *      then can lookup in one index, not N checks */
170 static const Escape escapes[] = {
171        { "<br>",   '\n' },
172        { "<\t>",   '\t' },
173        { "gt;",    '>'  },
174        { "lt;",    '<'  },
175        { "amp;",   '&'  },
176        { "quot;",  '\'' },
177        { "dquot;", '"'  }
178 };
179 #define N_ESCAPES ((int)(sizeof(escapes) / sizeof(escapes[0])))
180
181 static Cnp_Atom atoms[CNP_N_ATOMS] = {
182      [CNP_ATOM_TARGETS] = {
183           "TARGETS",
184           (Elm_Sel_Format) -1, // everything
185           targets_converter,
186           response_handler_targets,
187           notify_handler_targets,
188           0
189      },
190      [CNP_ATOM_XELM] =  {
191           "application/x-elementary-markup",
192           ELM_SEL_FORMAT_MARKUP,
193           edje_converter,
194           NULL,
195           NULL,
196           0
197      },
198      [CNP_ATOM_text_uri] = {
199           "text/uri",
200           ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_IMAGE, /* Either images or entries */
201           uri_converter,
202           NULL,
203           notify_handler_uri,
204           0
205      },
206      [CNP_ATOM_text_urilist] = {
207           "text/uri-list",
208           ELM_SEL_FORMAT_IMAGE,
209           uri_converter,
210           NULL,
211           notify_handler_uri,
212           0
213      },
214      [CNP_ATOM_text_x_vcard] = {
215           "text/x-vcard",
216           ELM_SEL_FORMAT_VCARD,
217           vcard_send, NULL,
218           vcard_receive, 0
219      },
220      [CNP_ATOM_image_png] = {
221           "image/png",
222           ELM_SEL_FORMAT_IMAGE,
223           image_converter,
224           NULL,
225           notify_handler_image,
226           0
227      },
228      [CNP_ATOM_image_jpeg] = {
229           "image/jpeg",
230           ELM_SEL_FORMAT_IMAGE,
231           image_converter,
232           NULL,
233           notify_handler_image,/* Raw image data is the same */
234           0
235      },
236      [CNP_ATOM_image_bmp] = {
237           "image/x-ms-bmp",
238           ELM_SEL_FORMAT_IMAGE,
239           image_converter,
240           NULL,
241           notify_handler_image,/* Raw image data is the same */
242           0
243      },
244      [CNP_ATOM_image_gif] = {
245           "image/gif",
246           ELM_SEL_FORMAT_IMAGE,
247           image_converter,
248           NULL,
249           notify_handler_image,/* Raw image data is the same */
250           0
251      },
252      [CNP_ATOM_image_tiff] = {
253           "image/tiff",
254           ELM_SEL_FORMAT_IMAGE,
255           image_converter,
256           NULL,
257           notify_handler_image,/* Raw image data is the same */
258           0
259      },
260      [CNP_ATOM_image_svg] = {
261           "image/svg+xml",
262           ELM_SEL_FORMAT_IMAGE,
263           image_converter,
264           NULL,
265           notify_handler_image,/* Raw image data is the same */
266           0
267      },
268      [CNP_ATOM_image_xpm] = {
269           "image/x-xpixmap",
270           ELM_SEL_FORMAT_IMAGE,
271           image_converter,
272           NULL,
273           notify_handler_image,/* Raw image data is the same */
274           0
275      },
276      [CNP_ATOM_image_tga] = {
277           "image/x-tga",
278           ELM_SEL_FORMAT_IMAGE,
279           image_converter,
280           NULL,
281           notify_handler_image,/* Raw image data is the same */
282           0
283      },
284      [CNP_ATOM_image_ppm] = {
285           "image/x-portable-pixmap",
286           ELM_SEL_FORMAT_IMAGE,
287           image_converter,
288           NULL,
289           notify_handler_image,/* Raw image data is the same */
290           0
291      },
292      [CNP_ATOM_text_html_utf8] = {
293           "text/html;charset=utf-8",
294           ELM_SEL_FORMAT_HTML,
295           html_converter,
296           NULL,
297           notify_handler_html,
298           0
299      },
300      [CNP_ATOM_text_html] = {
301           "text/html",
302           ELM_SEL_FORMAT_HTML,
303           html_converter,
304           NULL,
305           notify_handler_html, /* No encoding: Webkit only */
306           0
307      },
308      [CNP_ATOM_UTF8STRING] = {
309           "UTF8_STRING",
310           ELM_SEL_FORMAT_TEXT | ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_HTML,
311           text_converter,
312           NULL,
313           notify_handler_text,
314           0
315      },
316      [CNP_ATOM_STRING] = {
317           "STRING",
318           ELM_SEL_FORMAT_TEXT | ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_HTML,
319           text_converter,
320           NULL,
321           notify_handler_text,
322           0
323      },
324      [CNP_ATOM_TEXT] = {
325           "TEXT",
326           ELM_SEL_FORMAT_TEXT | ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_HTML,
327           text_converter,
328           NULL,
329           NULL,
330           0
331      },
332      [CNP_ATOM_text_plain_utf8] = {
333           "text/plain;charset=utf-8",
334           ELM_SEL_FORMAT_TEXT | ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_HTML,
335           text_converter,
336           NULL,
337           NULL,
338           0
339      },
340      [CNP_ATOM_text_plain] = {
341           "text/plain",
342           ELM_SEL_FORMAT_TEXT | ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_HTML,
343           text_converter,
344           NULL,
345           NULL,
346           0
347      },
348 };
349
350 static Cnp_Selection selections[ELM_SEL_MAX] = {
351      ARRAYINIT(ELM_SEL_PRIMARY) {
352           .debug = "Primary",
353           .ecore_sel = ECORE_X_SELECTION_PRIMARY,
354           .set = ecore_x_selection_primary_set,
355           .clear = ecore_x_selection_primary_clear,
356           .request = ecore_x_selection_primary_request,
357      },
358      ARRAYINIT(ELM_SEL_SECONDARY) {
359           .debug = "Secondary",
360           .ecore_sel = ECORE_X_SELECTION_SECONDARY,
361           .set = ecore_x_selection_secondary_set,
362           .clear = ecore_x_selection_secondary_clear,
363           .request = ecore_x_selection_secondary_request,
364      },
365      ARRAYINIT(ELM_SEL_CLIPBOARD) {
366           .debug = "Clipboard",
367           .ecore_sel = ECORE_X_SELECTION_CLIPBOARD,
368           .set = ecore_x_selection_clipboard_set,
369           .clear = ecore_x_selection_clipboard_clear,
370           .request = ecore_x_selection_clipboard_request,
371      },
372      ARRAYINIT(ELM_SEL_XDND) {
373           .debug = "XDnD",
374           .ecore_sel = ECORE_X_SELECTION_XDND,
375           .request = ecore_x_selection_xdnd_request,
376      },
377 };
378
379 /* Data for DND in progress */
380 static Saved_Type savedtypes =  { NULL, NULL, 0, 0, 0, EINA_FALSE };
381
382 static void (*dragdonecb) (void *data, Evas_Object *obj) = NULL;
383 static void *dragdonedata = NULL;
384
385 static int _elm_cnp_init_count = 0;
386 /* FIXME: who left this out of XAtoms.h */
387 static Ecore_X_Atom clipboard_atom;
388
389 static Eina_List *pastedimages = NULL;
390
391 /**
392  * Drag & Drop functions
393  */
394
395 /* FIXME: Way too many globals */
396 static Eina_List *drops = NULL;
397 static Evas_Object *dragwin = NULL;
398 static int _dragx = 0, _dragy = 0;
399 static Ecore_Event_Handler *handler_pos = NULL;
400 static Ecore_Event_Handler *handler_drop = NULL;
401 static Ecore_Event_Handler *handler_enter = NULL;
402 static Ecore_Event_Handler *handler_status = NULL;
403
404 #endif
405
406 /* Stringshared, so I can just compare pointers later */
407 static const char *text_uri;
408
409 Eina_Bool
410 elm_selection_set(Elm_Sel_Type selection, Evas_Object *widget, Elm_Sel_Format format, const char *selbuf)
411 {
412 #ifdef HAVE_ELEMENTARY_X
413    Evas_Object *top = elm_widget_top_get(widget);
414    Ecore_X_Window xwin;
415    Cnp_Selection *sel;
416
417    if (top) xwin = elm_win_xwindow_get(top);
418    else xwin = elm_win_xwindow_get(widget);
419    if (!xwin) return EINA_FALSE;
420    if ((unsigned int)selection >= (unsigned int)ELM_SEL_MAX) return EINA_FALSE;
421    if (!_elm_cnp_init_count) _elm_cnp_init();
422    if ((!selbuf) && (format != ELM_SEL_FORMAT_IMAGE))
423      return elm_selection_clear(selection, widget);
424
425    sel = selections + selection;
426
427    sel->active = 1;
428    sel->widget = widget;
429
430    sel->set(xwin, &selection, sizeof(Elm_Sel_Type));
431    sel->format = format;
432    sel->selbuf = selbuf ? strdup(selbuf) : NULL;
433
434    return EINA_TRUE;
435 #else
436    return EINA_FALSE;
437 #endif
438 }
439
440 Eina_Bool
441 elm_selection_clear(Elm_Sel_Type selection, Evas_Object *widget)
442 {
443 #ifdef HAVE_ELEMENTARY_X
444    Cnp_Selection *sel;
445
446    if ((unsigned int)selection >= (unsigned int)ELM_SEL_MAX) return EINA_FALSE;
447    if (!_elm_cnp_init_count) _elm_cnp_init();
448
449    sel = selections + selection;
450
451    /* No longer this selection: Consider it gone! */
452    if ((!sel->active) || (sel->widget != widget)) return EINA_TRUE;
453
454    sel->active = 0;
455    sel->widget = NULL;
456    sel->clear();
457
458    return EINA_TRUE;
459 #else
460    return EINA_FALSE;
461 #endif
462 }
463
464 Eina_Bool
465 elm_selection_get(Elm_Sel_Type selection, Elm_Sel_Format format,
466                   Evas_Object *widget, Elm_Drop_Cb datacb, void *udata)
467 {
468 #ifdef HAVE_ELEMENTARY_X
469    Evas_Object *top;
470    Cnp_Selection *sel;
471
472    if ((unsigned int)selection >= (unsigned int)ELM_SEL_MAX) return EINA_FALSE;
473    if (!_elm_cnp_init_count) _elm_cnp_init();
474
475    sel = selections + selection;
476    top = elm_widget_top_get(widget);
477    if (!top) return EINA_FALSE;
478
479    sel->requestformat = format;
480    sel->requestwidget = widget;
481    sel->request(elm_win_xwindow_get(top), ECORE_X_SELECTION_TARGET_TARGETS);
482    sel->datacb = datacb;
483    sel->udata = udata;
484
485    return EINA_TRUE;
486 #else
487    return EINA_FALSE;
488 #endif
489 }
490
491 #ifdef HAVE_ELEMENTARY_X
492
493 static Eina_Bool
494 _elm_cnp_init(void)
495 {
496    int i;
497
498    if (_elm_cnp_init_count++) return EINA_TRUE;
499    for (i = 0; i < CNP_N_ATOMS; i++)
500      {
501         atoms[i].atom = ecore_x_atom_get(atoms[i].name);
502         ecore_x_selection_converter_atom_add(atoms[i].atom,
503                                              atoms[i].converter);
504      }
505    clipboard_atom = ecore_x_atom_get("CLIPBOARD");
506
507    ecore_event_handler_add(ECORE_X_EVENT_SELECTION_CLEAR, selection_clear, NULL);
508    ecore_event_handler_add(ECORE_X_EVENT_SELECTION_NOTIFY, selection_notify, NULL);
509
510    text_uri = eina_stringshare_add("text/uri-list");
511    return EINA_TRUE;
512 }
513
514 static Eina_Bool
515 selection_clear(void *udata __UNUSED__, int type __UNUSED__, void *event)
516 {
517    Ecore_X_Event_Selection_Clear *ev = event;
518    Cnp_Selection *sel;
519    int i;
520
521    for (i = 0; i < ELM_SEL_MAX; i++)
522      {
523         if (selections[i].ecore_sel == ev->selection) break;
524      }
525    cnp_debug("selection %d clear\n", i);
526    /* Not me... Don't care */
527    if (i == ELM_SEL_MAX) return ECORE_CALLBACK_PASS_ON;
528
529    sel = selections + i;
530    sel->active = 0;
531    sel->widget = NULL;
532    sel->selbuf = NULL;
533
534    return ECORE_CALLBACK_PASS_ON;
535 }
536
537
538 /*
539  * Response to a selection notify:
540  *      - So we have asked for the selection list.
541  *      - If it's the targets list, parse it, and fire of what we want,
542  *      else it's the data we want.
543  */
544 static Eina_Bool
545 selection_notify(void *udata __UNUSED__, int type __UNUSED__, void *event)
546 {
547    Ecore_X_Event_Selection_Notify *ev = event;
548    Cnp_Selection *sel;
549    int i;
550
551    cnp_debug("selection notify callback: %d\n",ev->selection);
552    switch (ev->selection)
553      {
554       case ECORE_X_SELECTION_CLIPBOARD:
555          sel = selections + ELM_SEL_CLIPBOARD;
556          break;
557       case ECORE_X_SELECTION_PRIMARY:
558          sel = selections + ELM_SEL_PRIMARY;
559          break;
560       case ECORE_X_SELECTION_SECONDARY:
561          sel = selections + ELM_SEL_SECONDARY;
562          break;
563       case ECORE_X_SELECTION_XDND:
564          sel = selections + ELM_SEL_XDND;
565          break;
566       default:
567          return ECORE_CALLBACK_PASS_ON;
568      }
569    cnp_debug("Target is %s\n", ev->target);
570
571    for (i = 0; i < CNP_N_ATOMS; i++)
572      {
573         if (!strcmp(ev->target, atoms[i].name))
574           {
575              if (atoms[i].notify)
576                {
577                   cnp_debug("Found something: %s\n", atoms[i].name);
578                   atoms[i].notify(sel, ev);
579                }
580              else
581                {
582                   cnp_debug("Ignored: No handler!\n");
583                }
584           }
585      }
586
587    return ECORE_CALLBACK_PASS_ON;
588 }
589
590
591
592 static Eina_Bool
593 targets_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize)
594 {
595    int i,count;
596    Ecore_X_Atom *aret;
597    Cnp_Selection *sel;
598
599    if (!data_ret) return EINA_FALSE;
600
601    sel = selections + *((int *)data);
602
603    for (i = 0, count = 0; i < CNP_N_ATOMS ; i++)
604      {
605         if (sel->format & atoms[i].formats) count++;
606      }
607
608    aret = malloc(sizeof(Ecore_X_Atom) * count);
609    for (i = 0, count = 0; i < CNP_N_ATOMS; i++)
610      {
611         if (sel->format & atoms[i].formats) aret[count ++] = atoms[i].atom;
612      }
613
614    *data_ret = aret;
615    if (typesize) *typesize = 32 /* urk */;
616    if (ttype) *ttype = ECORE_X_ATOM_ATOM;
617    if (size_ret) *size_ret = count;
618
619    return EINA_TRUE;
620 }
621
622 static Eina_Bool
623 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__)
624 {
625    cnp_debug("Image converter called\n");
626    return EINA_TRUE;
627 }
628
629 static Eina_Bool
630 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__)
631 {
632    Cnp_Selection *sel;
633
634    cnp_debug("Vcard send called\n");
635
636    sel = selections + *((int *)data);
637
638    if (data_ret) *data_ret = strdup(sel->selbuf);
639    if (size_ret) *size_ret = strlen(sel->selbuf);
640
641    return EINA_TRUE;
642 }
643 /*
644  * Callback to handle a targets response on a selection request:
645  * So pick the format we'd like; and then request it.
646  */
647 static int
648 notify_handler_targets(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
649 {
650    Ecore_X_Selection_Data_Targets *targets;
651    Ecore_X_Atom *atomlist;
652    int i, j;
653
654    targets = notify->data;
655    atomlist = (Ecore_X_Atom *)(targets->data.data);
656
657    for (j = 1; j < CNP_N_ATOMS; j++)
658      {
659         cnp_debug("\t%s %d\n", atoms[j].name, atoms[j].atom);
660         if (!(atoms[j].formats & sel->requestformat)) continue;
661         for (i = 0; i < targets->data.length; i++)
662           {
663              if ((atoms[j].atom == atomlist[i]) && (atoms[j].notify))
664                {
665                   cnp_debug("Atom %s matches\n",atoms[j].name);
666                   goto done;
667                }
668           }
669      }
670
671    cnp_debug("Couldn't find anything that matches\n");
672    return ECORE_CALLBACK_PASS_ON;
673
674 done:
675    cnp_debug("Sending request for %s\n",atoms[j].name);
676    sel->request(elm_win_xwindow_get(sel->requestwidget), atoms[j].name);
677
678    return ECORE_CALLBACK_PASS_ON;
679 }
680
681 static int
682 response_handler_targets(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
683 {
684    Ecore_X_Selection_Data_Targets *targets;
685    Ecore_X_Atom *atomlist;
686    Evas_Object *top;
687    int i,j;
688
689    targets = notify->data;
690    atomlist = (Ecore_X_Atom *)(targets->data.data);
691
692    /* Start from 1: Skip targets */
693    for (j = 1 ; j < CNP_N_ATOMS ; j ++)
694      {
695         if (!(atoms[j].formats & sel->requestformat)) continue;
696         for (i = 0 ; i < targets->data.length ; i ++)
697           {
698              if ((atoms[j].atom == atomlist[i]) && (atoms[j].response))
699                {
700                   /* Found a match: Use it */
701                   goto found;
702                }
703           }
704      }
705 found:
706    if (j == CNP_N_ATOMS)
707      {
708         cnp_debug("No matching type found\n");
709         return 0;
710      }
711
712    top = elm_widget_top_get(sel->requestwidget);
713    if (!top) return 0;
714
715    sel->request(elm_win_xwindow_get(top), atoms[j].name);
716    return 0;
717 }
718
719
720 static int
721 notify_handler_text(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
722 {
723    Ecore_X_Selection_Data *data;
724    char *str;
725
726    data = notify->data;
727    cnp_debug("Notify handler text %d %d %p\n", data->format,data->length, data->data);
728    str = mark_up((char *)data->data, data->length, NULL);
729    cnp_debug("String is %s (from %s)\n", str, data->data);
730    elm_entry_entry_insert(sel->requestwidget, str);
731    free(str);
732    return 0;
733 }
734
735
736 /**
737  * So someone is pasting an image into my entry or widget...
738  */
739 static int
740 notify_handler_uri(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
741 {
742    Ecore_X_Selection_Data *data;
743    Ecore_X_Selection_Data_Files *files;
744    Paste_Image *pi;
745    char *p;
746
747    data = notify->data;
748    cnp_debug("data->format is %d %p %p\n", data->format, notify, data);
749    if (data->content == ECORE_X_SELECTION_CONTENT_FILES)
750      {
751         cnp_debug("got a files list\n");
752         files = notify->data;
753         if (files->num_files > 1)
754           {
755              /* Don't handle many items */
756              cnp_debug("more then one file: Bailing\n");
757              return 0;
758           }
759         p = files->files[0];
760      }
761    else
762      {
763         p = (char *)data->data;
764      }
765
766    if (!p)
767      {
768         cnp_debug("Couldn't find a file\n");
769         return 0;
770      }
771    cnp_debug("Got %s\n",p);
772    if (strncmp(p, "file://", 7))
773      {
774         /* Try and continue if it looks sane */
775         if (*p != '/') return 0;
776      }
777    else
778      {
779         p += strlen("file://");
780      }
781
782    if (savedtypes.pi) pasteimage_free(savedtypes.pi);
783    pi = pasteimage_alloc(p, strlen(p));
784    if (savedtypes.textreq)
785      {
786         savedtypes.textreq = 0;
787         savedtypes.pi = pi;
788      }
789    else
790      {
791         pasteimage_append(pi, sel->requestwidget);
792         savedtypes.pi = NULL;
793      }
794    return 0;
795 }
796
797 /**
798  * Just receieved an vcard, either through cut and paste, or dnd.
799  */
800 static int
801 vcard_receive(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
802 {
803    Dropable *dropable;
804    Eina_List *l;
805    Ecore_X_Selection_Data *data;
806
807    data = notify->data;
808    cnp_debug("vcard receive\n");
809
810    if (sel == (selections + ELM_SEL_XDND))
811      {
812         Elm_Selection_Data ddata;
813
814         cnp_debug("drag & drop\n");
815         /* FIXME: this needs to be generic: Used for all receives */
816         EINA_LIST_FOREACH(drops, l, dropable)
817           {
818              if (dropable->obj == sel->requestwidget) break;
819           }
820         if (!dropable)
821           {
822              cnp_debug("Unable to find drop object");
823              ecore_x_dnd_send_finished();
824              return 0;
825           }
826         dropable = eina_list_data_get(l);
827         ddata.x = savedtypes.x;
828         ddata.y = savedtypes.y;
829         ddata.format = ELM_SEL_FORMAT_VCARD;
830         ddata.data = data->data;
831         ddata.len = data->length;
832         dropable->dropcb(dropable->cbdata, dropable->obj, &ddata);
833         ecore_x_dnd_send_finished();
834      }
835    else if (sel->datacb)
836      {
837         Elm_Selection_Data ddata;
838         ddata.x = ddata.y = 0;
839         ddata.format = ELM_SEL_FORMAT_IMAGE;
840         ddata.data = data->data;
841         ddata.len = data->length;
842         sel->datacb(sel->udata, sel->widget, &ddata);
843      }
844    else
845      {
846         cnp_debug("Paste request\n");
847      }
848
849    return 0;
850
851 }
852
853
854 static int
855 notify_handler_image(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
856 {
857    Ecore_X_Selection_Data *data;
858    Tmp_Info *tmp;
859    Paste_Image *pi;
860
861    cnp_debug("got a png (or a jpeg)!\n");
862    data = notify->data;
863
864    cnp_debug("Size if %d\n", data->length);
865
866    if (sel->datacb)
867      {
868         Elm_Selection_Data ddata;
869
870         ddata.x = ddata.y = 0;
871         ddata.format = ELM_SEL_FORMAT_IMAGE;
872         ddata.data = data->data;
873         ddata.len = data->length;
874         sel->datacb(sel->udata, sel->widget, &ddata);
875         return 0;
876      }
877
878    /* generate tmp name */
879    tmp = elm_cnp_tempfile_create(data->length);
880    memcpy(tmp->map, data->data, data->length);
881    munmap(tmp->map,data->length);
882
883    /* FIXME: Add to paste image data to clean up */
884    pi = pasteimage_alloc(tmp->filename, strlen(tmp->filename));
885    pasteimage_append(pi, sel->requestwidget);
886
887    tmpinfo_free(tmp);
888    return 0;
889 }
890
891
892 /**
893  *    Warning: Generic text/html can';t handle it sanely.
894  *    Firefox sends ucs2 (i think).
895  *       chrome sends utf8... blerg
896  */
897 static int
898 notify_handler_html(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
899 {
900    Ecore_X_Selection_Data *data;
901
902    cnp_debug("Got some HTML: Checking encoding is useful\n");
903    data = notify->data;
904
905    if (sel->datacb)
906      {
907         Elm_Selection_Data ddata;
908         ddata.x = ddata.y = 0;
909         ddata.format = ELM_SEL_FORMAT_HTML;
910         ddata.data = data->data;
911         ddata.len = data->length;
912         sel->datacb(sel->udata, sel->widget, &ddata);
913         return 0;
914      }
915
916    char *stripstr = NULL;
917    stripstr = malloc(sizeof(char) * (data->length + 1));
918    strncpy(stripstr, (char *)data->data, data->length);
919    stripstr[data->length] = '\0';
920    cnp_debug("String is %s (%d bytes)\n", stripstr, data->length);
921    elm_entry_entry_insert(sel->requestwidget, stripstr);
922    free(stripstr);
923    return 0;
924 }
925
926
927 static Eina_Bool
928 text_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
929 {
930    Cnp_Selection *sel;
931
932    cnp_debug("text converter\n");
933    sel = selections + *((int *)data);
934    if (!sel->active) return EINA_TRUE;
935
936    if ((sel->format & ELM_SEL_FORMAT_MARKUP) ||
937        (sel->format & ELM_SEL_FORMAT_HTML))
938      {
939         *data_ret = remove_tags(sel->selbuf, size_ret);
940      }
941    else if (sel->format & ELM_SEL_FORMAT_TEXT)
942      {
943         *data_ret = strdup(sel->selbuf);
944         *size_ret = strlen(sel->selbuf);
945      }
946    else if (sel->format & ELM_SEL_FORMAT_IMAGE)
947      {
948         cnp_debug("Image %s\n", evas_object_type_get(sel->widget));
949         cnp_debug("Elm type: %s\n", elm_object_widget_type_get(sel->widget));
950         evas_object_image_file_get(elm_photocam_internal_image_get(sel->widget), (const char **)data_ret, NULL);
951         if (!*data_ret) *data_ret = strdup("No file");
952         else *data_ret = strdup(*data_ret);
953         *size_ret = strlen(*data_ret);
954      }
955    return EINA_TRUE;
956 }
957
958 static Eina_Bool
959 edje_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
960 {
961    Cnp_Selection *sel;
962
963    sel = selections + *((int *)data);
964    if (data_ret) *data_ret = strdup(sel->selbuf);
965    if (size_ret) *size_ret = strlen(sel->selbuf);
966
967    return EINA_TRUE;
968 }
969
970
971 static Eina_Bool
972 html_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
973 {
974    Cnp_Selection *sel;
975
976    sel = selections + *(int *)data;
977    if (data_ret) *data_ret = strdup(sel->selbuf);
978    if (size_ret) *size_ret = strlen(sel->selbuf);
979
980    return EINA_TRUE;
981 }
982
983 static Eina_Bool
984 uri_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
985 {
986    Cnp_Selection *sel;
987    sel = selections + *((int *)data);
988    cnp_debug("Uri converter\n");
989    if (data_ret) *data_ret = strdup(sel->selbuf);
990    if (size_ret) *size_ret = strlen(sel->selbuf);
991    return EINA_TRUE;
992 }
993
994 /*
995  * Image paste provide
996  */
997
998 /* FIXME: Should add provider for each pasted item: Use data to store it
999  * much easier */
1000 static Evas_Object *
1001 image_provider(void *images __UNUSED__, Evas_Object *entry, const char *item)
1002 {
1003    Paste_Image *pi;
1004    Eina_List *l;
1005
1006    cnp_debug("image provider for %s called\n", item);
1007    EINA_LIST_FOREACH(pastedimages, l, pi)
1008      {
1009         cnp_debug("is it %s?\n",pi->tag);
1010         if (!strcmp(pi->tag, item))
1011           {
1012              /* Found it */
1013              Evas_Object *o;
1014              o = evas_object_image_filled_add(evas_object_evas_get(entry));
1015              /* FIXME: Handle eets */
1016              cnp_debug("file is %s (object is %p)\n", pi->file, o);
1017              evas_object_image_file_set(o, pi->file, NULL);
1018              evas_object_show(o);
1019              return o;
1020           }
1021      }
1022    return NULL;
1023 }
1024
1025
1026 static Paste_Image *
1027 pasteimage_alloc(const char *file, int pathlen)
1028 {
1029    Paste_Image *pi;
1030    int len;
1031    char *buf, *filebuf;
1032    int prefixlen = strlen("file://");
1033
1034    pi = calloc(1, sizeof(Paste_Image));
1035    if (!pi) return NULL;
1036
1037    len = snprintf(NULL, 0, "pasteimage-%p", pi);
1038    len++;
1039    buf = malloc(len);
1040    if (!buf)
1041      {
1042         free(pi);
1043         return NULL;
1044      }
1045    snprintf(buf, len, "pasteimage-%p", pi);
1046    pi->tag = buf;
1047
1048    if (file)
1049      {
1050         if (strstr(file,"file://")) file += prefixlen;
1051         filebuf = alloca(pathlen + 1);
1052         strncpy(filebuf, file, pathlen);
1053         filebuf[pathlen] = 0;
1054         pi->file = strdup(filebuf);
1055      }
1056
1057    return pi;
1058 }
1059
1060 static void
1061 pasteimage_free(Paste_Image *pi)
1062 {
1063    if (!pi) return;
1064    if (pi->file) free((void*)pi->file);
1065    if (pi->tag) free((void*)pi->tag);
1066    free(pi);
1067 }
1068
1069 static Eina_Bool
1070 pasteimage_provider_set(Evas_Object *entry)
1071 {
1072    void *v;
1073    const char *type;
1074
1075    if (!entry) return EINA_FALSE;
1076    type = elm_widget_type_get(entry);
1077    cnp_debug("type is %s\n", type);
1078    if ((!type) || (strcmp(type, "entry"))) return EINA_FALSE;
1079
1080    v = evas_object_data_get(entry, PROVIDER_SET);
1081    if (!v)
1082      {
1083         evas_object_data_set(entry, PROVIDER_SET, pasteimage_provider_set);
1084         elm_entry_item_provider_append(entry, image_provider, NULL);
1085         evas_object_event_callback_add(entry, EVAS_CALLBACK_FREE,
1086                                        entry_deleted, NULL);
1087      }
1088    return EINA_TRUE;
1089 }
1090
1091
1092 static Eina_Bool
1093 pasteimage_append(Paste_Image *pi, Evas_Object *entry)
1094 {
1095    char *entrytag;
1096    int len;
1097    static const char *tagstring = "<item absize=240x180 href=file://%s></item>";
1098
1099    if (!pi) return EINA_FALSE;
1100    if (!entry) return EINA_FALSE;
1101
1102    pasteimage_provider_set(entry);
1103
1104    len = strlen(tagstring)+strlen(pi->file);
1105
1106    pastedimages = eina_list_append(pastedimages, pi);
1107    entrytag = alloca(len + 1);
1108    snprintf(entrytag, len + 1, tagstring, pi->file);
1109    elm_entry_entry_insert(entry, entrytag);
1110
1111    return EINA_TRUE;
1112 }
1113
1114 static void
1115 entry_deleted(void *images __UNUSED__, Evas *e __UNUSED__, Evas_Object *entry, void *unused __UNUSED__)
1116 {
1117    Paste_Image *pi;
1118    Eina_List *l,*next;
1119
1120    EINA_LIST_FOREACH_SAFE(pastedimages, l, next, pi)
1121      {
1122         if (pi->entry == entry)
1123           pastedimages = eina_list_remove_list(pastedimages, l);
1124      }
1125 }
1126
1127
1128 static char *
1129 remove_tags(const char *p, int *len)
1130 {
1131    char *q,*ret;
1132    int i;
1133    if (!p) return NULL;
1134
1135    q = malloc(strlen(p) + 1);
1136    if (!q) return NULL;
1137    ret = q;
1138
1139    while (*p)
1140      {
1141         if ((*p != '<') && (*p != '&')) *q++ = *p++;
1142         else if (*p == '<')
1143           {
1144              if ((p[1] == 'b') && (p[2] == 'r') &&
1145                  ((p[3] == ' ') || (p[3] == '/') || (p[3] == '>')))
1146                *q++ = '\n';
1147              while ((*p) && (*p != '>')) p++;
1148              p++;
1149           }
1150         else if (*p == '&')
1151           {
1152              p++;
1153              for (i = 0 ; i < N_ESCAPES ; i++)
1154                {
1155                   if (!strncmp(p,escapes[i].escape, strlen(escapes[i].escape)))
1156                     {
1157                        p += strlen(escapes[i].escape);
1158                        *q = escapes[i].value;
1159                        q++;
1160                        break;
1161                     }
1162                }
1163              if (i == N_ESCAPES) *q ++= '&';
1164           }
1165      }
1166    *q = 0;
1167    if (len) *len = q - ret;
1168    return ret;
1169 }
1170
1171 /* Mark up */
1172 static char *
1173 mark_up(const char *start, int inlen, int *lenp)
1174 {
1175    int l, i;
1176    const char *p;
1177    char *q, *ret;
1178    const char *endp = NULL;
1179
1180    if (!start) return NULL;
1181    if (inlen >= 0) endp = start + inlen;
1182    /* First pass: Count characters */
1183    for (l = 0, p = start; ((!endp) || (p < endp)) && (*p); p++)
1184      {
1185         for (i = 0 ; i < N_ESCAPES ; i ++)
1186           {
1187              if (*p == escapes[i].value)
1188                {
1189                   l += strlen(escapes[i].escape);
1190                   break;
1191                }
1192           }
1193         if (i == N_ESCAPES) l++;
1194      }
1195
1196    q = ret = malloc(l + 1);
1197
1198    /* Second pass: Change characters */
1199    for (p = start; *p; )
1200      {
1201         for (i = 0; i < N_ESCAPES; i++)
1202           {
1203              if (*p == escapes[i].value)
1204                {
1205                   strcpy(q, escapes[i].escape);
1206                   q += strlen(escapes[i].escape);
1207                   p ++;
1208                   break;
1209                }
1210           }
1211         if (i == N_ESCAPES) *q++ = *p++;
1212      }
1213    *q = 0;
1214
1215    if (lenp) *lenp = l;
1216    return ret;
1217 }
1218
1219
1220 static Eina_Bool
1221 _dnd_enter(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1222 {
1223    Ecore_X_Event_Xdnd_Enter *enter = ev;
1224    int i;
1225
1226    /* Skip it */
1227    if ((!enter) || (!enter->num_types) || (!enter->types)) return EINA_TRUE;
1228
1229    cnp_debug("Types\n");
1230    savedtypes.ntypes = enter->num_types;
1231    if (savedtypes.types) free(savedtypes.types);
1232    savedtypes.types = malloc(sizeof(char *) * enter->num_types);
1233    if (!savedtypes.types) return EINA_FALSE;
1234
1235    for (i = 0; i < enter->num_types; i++)
1236      {
1237         savedtypes.types[i] = eina_stringshare_add(enter->types[i]);
1238         cnp_debug("Type is %s %p %p\n", enter->types[i],
1239                   savedtypes.types[i],text_uri);
1240         if (savedtypes.types[i] == text_uri)
1241           {
1242              /* Request it, so we know what it is */
1243              cnp_debug("Sending uri request\n");
1244              savedtypes.textreq = 1;
1245              savedtypes.pi = NULL; /* FIXME: Free? */
1246              ecore_x_selection_xdnd_request(enter->win, text_uri);
1247           }
1248      }
1249
1250    /* FIXME: Find an object and make it current */
1251    return EINA_TRUE;
1252 }
1253
1254 static Eina_Bool
1255 _dnd_drop(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1256 {
1257    struct _Ecore_X_Event_Xdnd_Drop *drop;
1258    Dropable *dropable;
1259    Eina_List *l;
1260    Ecore_Evas *ee;
1261    Ecore_X_Window xwin;
1262    Elm_Selection_Data ddata;
1263    int x, y, w, h;
1264    int i, j;
1265
1266    drop = ev;
1267
1268    // check we still have something to drop
1269    if (!drops) return EINA_TRUE;
1270
1271    /* Find any widget in our window; then work out geometry rel to our window */
1272    for (l = drops; l; l = l->next)
1273      {
1274         dropable = l->data;
1275         xwin = (Ecore_X_Window)ecore_evas_window_get
1276            (ecore_evas_ecore_evas_get(evas_object_evas_get
1277                                       (dropable->obj)));
1278         if (xwin == drop->win) break;
1279      }
1280    /* didn't find a window */
1281    if (!l) return EINA_TRUE;
1282
1283    /* Calculate real (widget relative) position */
1284    // - window position
1285    // - widget position
1286    ee = ecore_evas_ecore_evas_get(evas_object_evas_get(dropable->obj));
1287    ecore_evas_geometry_get(ee, &x, &y, NULL, NULL);
1288    savedtypes.x = drop->position.x - x;
1289    savedtypes.y = drop->position.y - y;
1290
1291    cnp_debug("Drop position is %d,%d\n", savedtypes.x, savedtypes.y);
1292
1293    for (; l; l = l->next)
1294      {
1295         dropable = l->data;
1296         evas_object_geometry_get(dropable->obj, &x, &y, &w, &h);
1297         if ((savedtypes.x >= x) && (savedtypes.y >= y) &&
1298             (savedtypes.x < x + w) && (savedtypes.y < y + h))
1299           break; /* found! */
1300      }
1301
1302    if (!l) return EINA_TRUE; /* didn't find one */
1303
1304    evas_object_geometry_get(dropable->obj, &x, &y, NULL, NULL);
1305    savedtypes.x -= x;
1306    savedtypes.y -= y;
1307
1308    /* Find our type from the previous list */
1309    for (i = 0; i < CNP_N_ATOMS; i++)
1310      {
1311         for (j = 0; j < savedtypes.ntypes; j++)
1312           {
1313              if (!strcmp(savedtypes.types[j], atoms[i].name)) goto found;
1314           }
1315      }
1316
1317    cnp_debug("Didn't find a target\n");
1318    return EINA_TRUE;
1319
1320 found:
1321    cnp_debug("Found a target we'd like: %s\n", atoms[i].name);
1322    cnp_debug("0x%x\n",xwin);
1323
1324    if (i == CNP_ATOM_text_urilist)
1325      {
1326         cnp_debug("We found a URI... (%scached) %s\n",
1327                   savedtypes.pi ? "" : "not ",
1328                   savedtypes.pi->file);
1329         if (savedtypes.pi)
1330           {
1331              char *entrytag;
1332              static const char *tagstring = "<item absize=240x180 href="
1333                 "file://%s></item>";
1334              ddata.x = savedtypes.x;
1335              ddata.y = savedtypes.y;
1336
1337              /* If it's markup that also supports images */
1338              if ((dropable->types & ELM_SEL_FORMAT_MARKUP) &&
1339                  (dropable->types & ELM_SEL_FORMAT_IMAGE))
1340                {
1341                   int len;
1342                   ddata.format = ELM_SEL_FORMAT_MARKUP;
1343                   pasteimage_provider_set(dropable->obj);
1344
1345                   pastedimages = eina_list_append(pastedimages, savedtypes.pi);
1346                   len = strlen(tagstring) + strlen(savedtypes.pi->file);
1347                   entrytag = alloca(len + 1);
1348                   snprintf(entrytag, len + 1, tagstring, savedtypes.pi->file);
1349                   ddata.data = entrytag;
1350                   cnp_debug("Insert %s\n", (char *)ddata.data);
1351                   dropable->dropcb(dropable->cbdata, dropable->obj, &ddata);
1352                   ecore_x_dnd_send_finished();
1353                   return EINA_TRUE;
1354                }
1355              else if (dropable->types & ELM_SEL_FORMAT_IMAGE)
1356                {
1357                   cnp_debug("Doing image insert (%s)\n", savedtypes.pi->file);
1358                   ddata.format = ELM_SEL_FORMAT_IMAGE;
1359                   ddata.data = (char *)savedtypes.pi->file;
1360                   dropable->dropcb(dropable->cbdata, dropable->obj, &ddata);
1361                   ecore_x_dnd_send_finished();
1362
1363                   pasteimage_free(savedtypes.pi);
1364                   savedtypes.pi = NULL;
1365
1366                   return EINA_TRUE;
1367                }
1368              else
1369                {
1370                   cnp_debug("Item doesn't support images... passing\n");
1371                   pasteimage_free(savedtypes.pi);
1372                   return EINA_TRUE;
1373                }
1374           }
1375         else if (savedtypes.textreq)
1376           {
1377              /* Already asked: Pretend we asked now, and paste immediately when
1378               * it comes in */
1379              savedtypes.textreq = 0;
1380              ecore_x_dnd_send_finished();
1381              return EINA_TRUE;
1382           }
1383      }
1384
1385    cnp_debug("doing a request then\n");
1386    selections[ELM_SEL_XDND].requestwidget = dropable->obj;
1387    selections[ELM_SEL_XDND].requestformat = ELM_SEL_FORMAT_MARKUP;
1388    selections[ELM_SEL_XDND].active = EINA_TRUE;
1389
1390    ecore_x_selection_xdnd_request(xwin, atoms[i].name);
1391
1392    return EINA_TRUE;
1393 }
1394 static Eina_Bool
1395 _dnd_position(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1396 {
1397    struct _Ecore_X_Event_Xdnd_Position *pos;
1398    Ecore_X_Rectangle rect;
1399
1400    pos = ev;
1401
1402    /* Need to send a status back */
1403    /* FIXME: Should check I can drop here */
1404    /* FIXME: Should highlight widget */
1405    rect.x = pos->position.x - 5;
1406    rect.y = pos->position.y - 5;
1407    rect.width = 10;
1408    rect.height = 10;
1409    ecore_x_dnd_send_status(EINA_TRUE, EINA_FALSE, rect, pos->action);
1410
1411    return EINA_TRUE;
1412 }
1413
1414 /**
1415  * When dragging this is callback response from the destination.
1416  * The important thing we care about: Can we drop; thus update cursor
1417  * appropriately.
1418  */
1419 static Eina_Bool
1420 _dnd_status(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1421 {
1422    struct _Ecore_X_Event_Xdnd_Status *status = ev;
1423
1424    if (!status) return EINA_TRUE;
1425
1426    /* Only thing we care about: will accept */
1427    if (status->will_accept)
1428      {
1429         cnp_debug("Will accept\n");
1430      }
1431    else
1432      { /* Won't accept */
1433         cnp_debug("Won't accept accept\n");
1434      }
1435    return EINA_TRUE;
1436 }
1437
1438 /**
1439  * Add a widget as drop target.
1440  */
1441 Eina_Bool
1442 elm_drop_target_add(Evas_Object *obj, Elm_Sel_Type format, Elm_Drop_Cb dropcb, void *cbdata)
1443 {
1444    Dropable *drop;
1445    Ecore_X_Window xwin;
1446    Eina_List *item;
1447    int first;
1448
1449    if (!obj) return EINA_FALSE;
1450    if (!_elm_cnp_init_count) _elm_cnp_init();
1451
1452    /* Is this the first? */
1453    first = (!drops) ? 1 : 0;
1454
1455    EINA_LIST_FOREACH(drops, item, drop)
1456      {
1457         if (drop->obj == obj)
1458           {
1459              /* Update: Not a new one */
1460              drop->dropcb = dropcb;
1461              drop->cbdata = cbdata;
1462              drop->types = format;
1463              return EINA_TRUE;
1464           }
1465      }
1466
1467    /* Create new drop */
1468    drop = calloc(1, sizeof(Dropable));
1469    if (!drop) return EINA_FALSE;
1470    /* FIXME: Check for eina's deranged error method */
1471    drops = eina_list_append(drops, drop);
1472
1473    if (!drops/* || or other error */)
1474      {
1475         free(drop);
1476         return EINA_FALSE;
1477      }
1478    drop->dropcb = dropcb;
1479    drop->cbdata = cbdata;
1480    drop->types = format;
1481    drop->obj = obj;
1482
1483    evas_object_event_callback_add(obj, EVAS_CALLBACK_DEL,
1484                                   /* I love C and varargs */
1485                                   (Evas_Object_Event_Cb)elm_drop_target_del,
1486                                   obj);
1487    /* FIXME: Handle resizes */
1488
1489    /* If not the first: We're done */
1490    if (!first) return EINA_TRUE;
1491
1492    xwin = (Ecore_X_Window)ecore_evas_window_get
1493       (ecore_evas_ecore_evas_get(evas_object_evas_get(obj)));
1494
1495    ecore_x_dnd_aware_set(xwin, EINA_TRUE);
1496
1497    cnp_debug("Adding drop target calls\n");
1498    handler_enter = ecore_event_handler_add(ECORE_X_EVENT_XDND_ENTER,
1499                                            _dnd_enter, NULL);
1500    handler_pos = ecore_event_handler_add(ECORE_X_EVENT_XDND_POSITION,
1501                                          _dnd_position, NULL);
1502    handler_drop = ecore_event_handler_add(ECORE_X_EVENT_XDND_DROP,
1503                                           _dnd_drop, NULL);
1504
1505    return EINA_TRUE;
1506 }
1507
1508 Eina_Bool
1509 elm_drop_target_del(Evas_Object *obj)
1510 {
1511    Dropable *drop,*del;
1512    Eina_List *item;
1513    Ecore_X_Window xwin;
1514
1515    del = NULL;
1516    EINA_LIST_FOREACH(drops, item, drop)
1517      {
1518         if (drop->obj == obj)
1519           {
1520              drops = eina_list_remove_list(drops, item);
1521              del = drop;
1522              break;
1523           }
1524      }
1525    if (!del) return EINA_FALSE;
1526
1527    evas_object_event_callback_del(obj, EVAS_CALLBACK_FREE,
1528                                   (Evas_Object_Event_Cb)elm_drop_target_del);
1529    free(drop);
1530    /* If still drops there: All fine.. continue */
1531    if (drops) return EINA_TRUE;
1532
1533    cnp_debug("Disabling DND\n");
1534    xwin = (Ecore_X_Window)ecore_evas_window_get
1535       (ecore_evas_ecore_evas_get(evas_object_evas_get(obj)));
1536    ecore_x_dnd_aware_set(xwin, EINA_FALSE);
1537
1538    ecore_event_handler_del(handler_pos);
1539    ecore_event_handler_del(handler_drop);
1540    ecore_event_handler_del(handler_enter);
1541
1542    if (savedtypes.pi)
1543      {
1544         pasteimage_free(savedtypes.pi);
1545         savedtypes.pi = NULL;
1546      }
1547
1548    return EINA_TRUE;
1549 }
1550
1551
1552 static void
1553 _drag_mouse_up(void *un __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj, void *data __UNUSED__)
1554 {
1555    evas_object_event_callback_del(obj, EVAS_CALLBACK_MOUSE_UP, _drag_mouse_up);
1556    ecore_x_dnd_drop();
1557    if (dragdonecb)
1558      {
1559         dragdonecb(dragdonecb,selections[ELM_SEL_XDND].widget);
1560         dragdonecb = NULL;
1561      }
1562    if (dragwin)
1563      {
1564         evas_object_del(dragwin);
1565         dragwin = NULL;
1566      }
1567 }
1568
1569 static void
1570 _drag_move(void *data __UNUSED__, Ecore_X_Xdnd_Position *pos)
1571 {
1572    evas_object_move(dragwin,
1573                     pos->position.x - _dragx,
1574                     pos->position.y - _dragy);
1575 }
1576
1577
1578 Eina_Bool
1579 elm_drag_start(Evas_Object *obj, Elm_Sel_Format format, const char *data, void (*dragdone) (void *data, Evas_Object *), void *donecbdata)
1580 {
1581    Ecore_X_Window xwin;
1582    Cnp_Selection *sel;
1583    Elm_Sel_Type xdnd = ELM_SEL_XDND;
1584    Ecore_Evas *ee;
1585    int x, y, x2, y2, x3, y3;
1586    Evas_Object *icon;
1587    int w, h;
1588
1589    if (!_elm_cnp_init_count) _elm_cnp_init();
1590
1591    xwin = elm_win_xwindow_get(obj);
1592
1593    cnp_debug("starting drag...\n");
1594
1595    ecore_x_dnd_type_set(xwin, "text/uri-list", 1);
1596    sel = selections + ELM_SEL_XDND;
1597    sel->active = 1;
1598    sel->widget = obj;
1599    sel->format = format;
1600    sel->selbuf = data ? strdup(data) : NULL;
1601    dragdonecb = dragdone;
1602    dragdonedata = donecbdata;
1603
1604    ecore_x_dnd_callback_pos_update_set(_drag_move, NULL);
1605    ecore_x_dnd_begin(xwin, (unsigned char *)&xdnd, sizeof(Elm_Sel_Type));
1606    evas_object_event_callback_add(obj, EVAS_CALLBACK_MOUSE_UP,
1607                                   _drag_mouse_up, NULL);
1608
1609    handler_status = ecore_event_handler_add(ECORE_X_EVENT_XDND_STATUS,
1610                                             _dnd_status, NULL);
1611
1612    dragwin = elm_win_add(NULL, "Elm Drag Object", ELM_WIN_UTILITY);
1613    elm_win_override_set(dragwin, 1);
1614
1615    /* FIXME: Images only */
1616    icon = elm_icon_add(dragwin);
1617    elm_icon_file_set(icon, data + 7, NULL); /* 7!? "file://" */
1618    elm_win_resize_object_add(dragwin,icon);
1619    evas_object_size_hint_weight_set(icon, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1620    evas_object_size_hint_align_set(icon, EVAS_HINT_FILL, EVAS_HINT_FILL);
1621
1622    /* Position subwindow appropriately */
1623    ee = ecore_evas_ecore_evas_get(evas_object_evas_get(obj));
1624    ecore_evas_geometry_get(ee, &x, &y, NULL, NULL);
1625    evas_object_geometry_get(obj, &x2, &y2, &w, &h);
1626    x += x2;
1627    y += y2;
1628    evas_object_move(dragwin, x, y);
1629    evas_object_resize(icon, w, h);
1630    evas_object_resize(dragwin, w, h);
1631
1632    evas_object_show(icon);
1633    evas_object_show(dragwin);
1634
1635    evas_pointer_canvas_xy_get(evas_object_evas_get(obj), &x3, &y3);
1636    _dragx = x3 - x2;
1637    _dragy = y3 - y2;
1638
1639    return EINA_TRUE;
1640 }
1641
1642 static Tmp_Info *
1643 elm_cnp_tempfile_create(int size)
1644 {
1645    Tmp_Info *info;
1646    const char *tmppath;
1647    int len;
1648
1649    info = malloc(sizeof(Tmp_Info));
1650    if (!info) return NULL;
1651
1652    tmppath = getenv("TMP");
1653    if (!tmppath) tmppath = P_tmpdir;
1654    if (!tmppath) tmppath = "/tmp";
1655    len = snprintf(NULL, 0, "%s/%sXXXXXX", tmppath, "elmcnpitem-");
1656    if (len < 0)
1657      {
1658         free(info);
1659         return NULL;
1660      }
1661    len++;
1662    info->filename = malloc(len);
1663    if (!info->filename)
1664      {
1665         free(info);
1666         return NULL;
1667      }
1668    snprintf(info->filename,len,"%s/%sXXXXXX", tmppath, "elmcnpitem-");
1669
1670    info->fd = mkstemp(info->filename);
1671
1672 # ifdef __linux__
1673      {
1674         char *tmp;
1675         /* And before someone says anything see POSIX 1003.1-2008 page 400 */
1676         long pid;
1677
1678         pid = (long)getpid();
1679         /* Use pid instead of /proc/self: That way if can be passed around */
1680         len = snprintf(NULL,0,"/proc/%li/fd/%i", pid, info->fd);
1681         len++;
1682         tmp = malloc(len);
1683         if (tmp)
1684           {
1685              snprintf(tmp,len, "/proc/%li/fd/%i", pid, info->fd);
1686              unlink(info->filename);
1687              free(info->filename);
1688              info->filename = tmp;
1689           }
1690      }
1691 # endif
1692
1693    cnp_debug("filename is %s\n", info->filename);
1694    if (size < 1)
1695      {
1696         /* Set map to NULL and return */
1697         info->map = NULL;
1698         info->len = 0;
1699         return info;
1700      }
1701
1702    /* Map it in */
1703    if (ftruncate(info->fd, size))
1704      {
1705         perror("ftruncate");
1706         info->map = NULL;
1707         info->len = 0;
1708         return info;
1709      }
1710
1711    info->map = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, info->fd, 0);
1712    if (info->map == MAP_FAILED)
1713      {
1714         perror("mmap");
1715         info->map = NULL;
1716         info->len = 0;
1717      }
1718
1719    return info;
1720 }
1721
1722
1723 static int
1724 tmpinfo_free(Tmp_Info *info)
1725 {
1726    if (!info) return 0;
1727    free(info->filename);
1728    free(info);
1729    return 0;
1730 }
1731
1732 #else
1733 /* Stubs for windows */
1734 Eina_Bool
1735 elm_drag_start(Evas_Object *o, Elm_Sel_Format f, const char *d, void (*donecb)(void *, Evas_Object *),void *cbdata)
1736 {
1737    return EINA_FALSE;
1738 }
1739
1740 Eina_Bool
1741 elm_drop_target_add(Evas_Object *obj, Elm_Sel_Type format, Elm_Drop_Cb dropcb, void *cbdata)
1742 {
1743    return EINA_FALSE;
1744 }
1745
1746 Eina_Bool
1747 elm_drop_target_del(Evas_Object *o)
1748 {
1749    return EINA_TRUE;
1750 }
1751 #endif
1752
1753 /* vim:set ts=8 sw=3 sts=3 expandtab cino=>5n-2f0^-2{2(0W1st0 :*/