elementary / calendar, button, colorselector, bg, cnp_helper, bubble, check, box...
[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    Cnp_Selection *sel;
414
415    if ((unsigned int)selection >= (unsigned int)ELM_SEL_MAX) return EINA_FALSE;
416    if (!_elm_cnp_init_count) _elm_cnp_init();
417    if ((!selbuf) && (format != ELM_SEL_FORMAT_IMAGE))
418      return elm_selection_clear(selection, widget);
419
420    sel = selections + selection;
421
422    sel->active = 1;
423    sel->widget = widget;
424
425    sel->set(elm_win_xwindow_get(widget),&selection,sizeof(Elm_Sel_Type));
426    sel->format = format;
427    sel->selbuf = selbuf ? strdup(selbuf) : NULL;
428
429    return EINA_TRUE;
430 #else
431    return EINA_FALSE;
432 #endif
433 }
434
435 Eina_Bool
436 elm_selection_clear(Elm_Sel_Type selection, Evas_Object *widget)
437 {
438 #ifdef HAVE_ELEMENTARY_X
439    Cnp_Selection *sel;
440
441    if ((unsigned int)selection >= (unsigned int)ELM_SEL_MAX) return EINA_FALSE;
442    if (!_elm_cnp_init_count) _elm_cnp_init();
443
444    sel = selections + selection;
445
446    /* No longer this selection: Consider it gone! */
447    if ((!sel->active) || (sel->widget != widget)) return EINA_TRUE;
448
449    sel->active = 0;
450    sel->widget = NULL;
451    sel->clear();
452
453    return EINA_TRUE;
454 #else
455    return EINA_FALSE;
456 #endif
457 }
458
459 Eina_Bool
460 elm_selection_get(Elm_Sel_Type selection, Elm_Sel_Format format,
461                   Evas_Object *widget, Elm_Drop_Cb datacb, void *udata)
462 {
463 #ifdef HAVE_ELEMENTARY_X
464    Evas_Object *top;
465    Cnp_Selection *sel;
466
467    if ((unsigned int)selection >= (unsigned int)ELM_SEL_MAX) return EINA_FALSE;
468    if (!_elm_cnp_init_count) _elm_cnp_init();
469
470    sel = selections + selection;
471    top = elm_widget_top_get(widget);
472    if (!top) return EINA_FALSE;
473
474    sel->requestformat = format;
475    sel->requestwidget = widget;
476    sel->request(elm_win_xwindow_get(top), ECORE_X_SELECTION_TARGET_TARGETS);
477    sel->datacb = datacb;
478    sel->udata = udata;
479
480    return EINA_TRUE;
481 #else
482    return EINA_FALSE;
483 #endif
484 }
485
486 #ifdef HAVE_ELEMENTARY_X
487
488 static Eina_Bool
489 _elm_cnp_init(void)
490 {
491    int i;
492
493    if (_elm_cnp_init_count++) return EINA_TRUE;
494    for (i = 0; i < CNP_N_ATOMS; i++)
495      {
496         atoms[i].atom = ecore_x_atom_get(atoms[i].name);
497         ecore_x_selection_converter_atom_add(atoms[i].atom,
498                                              atoms[i].converter);
499      }
500    clipboard_atom = ecore_x_atom_get("CLIPBOARD");
501
502    ecore_event_handler_add(ECORE_X_EVENT_SELECTION_CLEAR, selection_clear, NULL);
503    ecore_event_handler_add(ECORE_X_EVENT_SELECTION_NOTIFY, selection_notify, NULL);
504
505    text_uri = eina_stringshare_add("text/uri-list");
506    return EINA_TRUE;
507 }
508
509 static Eina_Bool
510 selection_clear(void *udata __UNUSED__, int type __UNUSED__, void *event)
511 {
512    Ecore_X_Event_Selection_Clear *ev = event;
513    Cnp_Selection *sel;
514    int i;
515
516    for (i = 0; i < ELM_SEL_MAX; i++)
517      {
518         if (selections[i].ecore_sel == ev->selection) break;
519      }
520    cnp_debug("selection %d clear\n", i);
521    /* Not me... Don't care */
522    if (i == ELM_SEL_MAX) return ECORE_CALLBACK_PASS_ON;
523
524    sel = selections + i;
525    sel->active = 0;
526    sel->widget = NULL;
527    sel->selbuf = NULL;
528
529    return ECORE_CALLBACK_PASS_ON;
530 }
531
532
533 /*
534  * Response to a selection notify:
535  *      - So we have asked for the selection list.
536  *      - If it's the targets list, parse it, and fire of what we want,
537  *      else it's the data we want.
538  */
539 static Eina_Bool
540 selection_notify(void *udata __UNUSED__, int type __UNUSED__, void *event)
541 {
542    Ecore_X_Event_Selection_Notify *ev = event;
543    Cnp_Selection *sel;
544    int i;
545
546    cnp_debug("selection notify callback: %d\n",ev->selection);
547    switch (ev->selection)
548      {
549       case ECORE_X_SELECTION_CLIPBOARD:
550          sel = selections + ELM_SEL_CLIPBOARD;
551          break;
552       case ECORE_X_SELECTION_PRIMARY:
553          sel = selections + ELM_SEL_PRIMARY;
554          break;
555       case ECORE_X_SELECTION_SECONDARY:
556          sel = selections + ELM_SEL_SECONDARY;
557          break;
558       case ECORE_X_SELECTION_XDND:
559          sel = selections + ELM_SEL_XDND;
560          break;
561       default:
562          return ECORE_CALLBACK_PASS_ON;
563      }
564    cnp_debug("Target is %s\n", ev->target);
565
566    for (i = 0; i < CNP_N_ATOMS; i++)
567      {
568         if (!strcmp(ev->target, atoms[i].name))
569           {
570              if (atoms[i].notify)
571                {
572                   cnp_debug("Found something: %s\n", atoms[i].name);
573                   atoms[i].notify(sel, ev);
574                }
575              else
576                {
577                   cnp_debug("Ignored: No handler!\n");
578                }
579           }
580      }
581
582    return ECORE_CALLBACK_PASS_ON;
583 }
584
585
586
587 static Eina_Bool
588 targets_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype, int *typesize)
589 {
590    int i,count;
591    Ecore_X_Atom *aret;
592    Cnp_Selection *sel;
593
594    if (!data_ret) return EINA_FALSE;
595
596    sel = selections + *((int *)data);
597
598    for (i = 0, count = 0; i < CNP_N_ATOMS ; i++)
599      {
600         if (sel->format & atoms[i].formats) count++;
601      }
602
603    aret = malloc(sizeof(Ecore_X_Atom) * count);
604    for (i = 0, count = 0; i < CNP_N_ATOMS; i++)
605      {
606         if (sel->format & atoms[i].formats) aret[count ++] = atoms[i].atom;
607      }
608
609    *data_ret = aret;
610    if (typesize) *typesize = 32 /* urk */;
611    if (ttype) *ttype = ECORE_X_ATOM_ATOM;
612    if (size_ret) *size_ret = count;
613
614    return EINA_TRUE;
615 }
616
617 static Eina_Bool
618 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__)
619 {
620    cnp_debug("Image converter called\n");
621    return EINA_TRUE;
622 }
623
624 static Eina_Bool
625 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__)
626 {
627    Cnp_Selection *sel;
628
629    cnp_debug("Vcard send called\n");
630
631    sel = selections + *((int *)data);
632
633    if (data_ret) *data_ret = strdup(sel->selbuf);
634    if (size_ret) *size_ret = strlen(sel->selbuf);
635
636    return EINA_TRUE;
637 }
638 /*
639  * Callback to handle a targets response on a selection request:
640  * So pick the format we'd like; and then request it.
641  */
642 static int
643 notify_handler_targets(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
644 {
645    Ecore_X_Selection_Data_Targets *targets;
646    Ecore_X_Atom *atomlist;
647    int i, j;
648
649    targets = notify->data;
650    atomlist = (Ecore_X_Atom *)(targets->data.data);
651
652    for (j = 1; j < CNP_N_ATOMS; j++)
653      {
654         cnp_debug("\t%s %d\n", atoms[j].name, atoms[j].atom);
655         if (!(atoms[j].formats & sel->requestformat)) continue;
656         for (i = 0; i < targets->data.length; i++)
657           {
658              if ((atoms[j].atom == atomlist[i]) && (atoms[j].notify))
659                {
660                   cnp_debug("Atom %s matches\n",atoms[j].name);
661                   goto done;
662                }
663           }
664      }
665
666    cnp_debug("Couldn't find anything that matches\n");
667    return ECORE_CALLBACK_PASS_ON;
668
669 done:
670    cnp_debug("Sending request for %s\n",atoms[j].name);
671    sel->request(elm_win_xwindow_get(sel->requestwidget), atoms[j].name);
672
673    return ECORE_CALLBACK_PASS_ON;
674 }
675
676 static int
677 response_handler_targets(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
678 {
679    Ecore_X_Selection_Data_Targets *targets;
680    Ecore_X_Atom *atomlist;
681    Evas_Object *top;
682    int i,j;
683
684    targets = notify->data;
685    atomlist = (Ecore_X_Atom *)(targets->data.data);
686
687    /* Start from 1: Skip targets */
688    for (j = 1 ; j < CNP_N_ATOMS ; j ++)
689      {
690         if (!(atoms[j].formats & sel->requestformat)) continue;
691         for (i = 0 ; i < targets->data.length ; i ++)
692           {
693              if ((atoms[j].atom == atomlist[i]) && (atoms[j].response))
694                {
695                   /* Found a match: Use it */
696                   goto found;
697                }
698           }
699      }
700 found:
701    if (j == CNP_N_ATOMS)
702      {
703         cnp_debug("No matching type found\n");
704         return 0;
705      }
706
707    top = elm_widget_top_get(sel->requestwidget);
708    if (!top) return 0;
709
710    sel->request(elm_win_xwindow_get(top), atoms[j].name);
711    return 0;
712 }
713
714
715 static int
716 notify_handler_text(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
717 {
718    Ecore_X_Selection_Data *data;
719    char *str;
720
721    data = notify->data;
722    cnp_debug("Notify handler text %d %d %p\n", data->format,data->length, data->data);
723    str = mark_up((char *)data->data, data->length, NULL);
724    cnp_debug("String is %s (from %s)\n", str, data->data);
725    elm_entry_entry_insert(sel->requestwidget, str);
726    free(str);
727    return 0;
728 }
729
730
731 /**
732  * So someone is pasting an image into my entry or widget...
733  */
734 static int
735 notify_handler_uri(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
736 {
737    Ecore_X_Selection_Data *data;
738    Ecore_X_Selection_Data_Files *files;
739    Paste_Image *pi;
740    char *p;
741
742    data = notify->data;
743    cnp_debug("data->format is %d %p %p\n", data->format, notify, data);
744    if (data->content == ECORE_X_SELECTION_CONTENT_FILES)
745      {
746         cnp_debug("got a files list\n");
747         files = notify->data;
748         if (files->num_files > 1)
749           {
750              /* Don't handle many items */
751              cnp_debug("more then one file: Bailing\n");
752              return 0;
753           }
754         p = files->files[0];
755      }
756    else
757      {
758         p = (char *)data->data;
759      }
760
761    if (!p)
762      {
763         cnp_debug("Couldn't find a file\n");
764         return 0;
765      }
766    cnp_debug("Got %s\n",p);
767    if (strncmp(p, "file://", 7))
768      {
769         /* Try and continue if it looks sane */
770         if (*p != '/') return 0;
771      }
772    else
773      {
774         p += strlen("file://");
775      }
776
777    if (savedtypes.pi) pasteimage_free(savedtypes.pi);
778    pi = pasteimage_alloc(p, strlen(p));
779    if (savedtypes.textreq)
780      {
781         savedtypes.textreq = 0;
782         savedtypes.pi = pi;
783      }
784    else
785      {
786         pasteimage_append(pi, sel->requestwidget);
787         savedtypes.pi = NULL;
788      }
789    return 0;
790 }
791
792 /**
793  * Just receieved an vcard, either through cut and paste, or dnd.
794  */
795 static int
796 vcard_receive(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
797 {
798    Dropable *dropable;
799    Eina_List *l;
800    Ecore_X_Selection_Data *data;
801
802    data = notify->data;
803    cnp_debug("vcard receive\n");
804
805    if (sel == (selections + ELM_SEL_XDND))
806      {
807         Elm_Selection_Data ddata;
808
809         cnp_debug("drag & drop\n");
810         /* FIXME: this needs to be generic: Used for all receives */
811         EINA_LIST_FOREACH(drops, l, dropable)
812           {
813              if (dropable->obj == sel->requestwidget) break;
814           }
815         if (!dropable)
816           {
817              cnp_debug("Unable to find drop object");
818              ecore_x_dnd_send_finished();
819              return 0;
820           }
821         dropable = eina_list_data_get(l);
822         ddata.x = savedtypes.x;
823         ddata.y = savedtypes.y;
824         ddata.format = ELM_SEL_FORMAT_VCARD;
825         ddata.data = data->data;
826         ddata.len = data->length;
827         dropable->dropcb(dropable->cbdata, dropable->obj, &ddata);
828         ecore_x_dnd_send_finished();
829      }
830    else if (sel->datacb)
831      {
832         Elm_Selection_Data ddata;
833         ddata.x = ddata.y = 0;
834         ddata.format = ELM_SEL_FORMAT_IMAGE;
835         ddata.data = data->data;
836         ddata.len = data->length;
837         sel->datacb(sel->udata, sel->widget, &ddata);
838      }
839    else
840      {
841         cnp_debug("Paste request\n");
842      }
843
844    return 0;
845
846 }
847
848
849 static int
850 notify_handler_image(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
851 {
852    Ecore_X_Selection_Data *data;
853    Tmp_Info *tmp;
854    Paste_Image *pi;
855
856    cnp_debug("got a png (or a jpeg)!\n");
857    data = notify->data;
858
859    cnp_debug("Size if %d\n", data->length);
860
861    if (sel->datacb)
862      {
863         Elm_Selection_Data ddata;
864
865         ddata.x = ddata.y = 0;
866         ddata.format = ELM_SEL_FORMAT_IMAGE;
867         ddata.data = data->data;
868         ddata.len = data->length;
869         sel->datacb(sel->udata, sel->widget, &ddata);
870         return 0;
871      }
872
873    /* generate tmp name */
874    tmp = elm_cnp_tempfile_create(data->length);
875    memcpy(tmp->map, data->data, data->length);
876    munmap(tmp->map,data->length);
877
878    /* FIXME: Add to paste image data to clean up */
879    pi = pasteimage_alloc(tmp->filename, strlen(tmp->filename));
880    pasteimage_append(pi, sel->requestwidget);
881
882    tmpinfo_free(tmp);
883    return 0;
884 }
885
886
887 /**
888  *    Warning: Generic text/html can';t handle it sanely.
889  *    Firefox sends ucs2 (i think).
890  *       chrome sends utf8... blerg
891  */
892 static int
893 notify_handler_html(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
894 {
895    Ecore_X_Selection_Data *data;
896
897    cnp_debug("Got some HTML: Checking encoding is useful\n");
898    data = notify->data;
899
900    if (sel->datacb)
901      {
902         Elm_Selection_Data ddata;
903         ddata.x = ddata.y = 0;
904         ddata.format = ELM_SEL_FORMAT_HTML;
905         ddata.data = data->data;
906         ddata.len = data->length;
907         sel->datacb(sel->udata, sel->widget, &ddata);
908         return 0;
909      }
910
911    char *stripstr = NULL;
912    stripstr = malloc(sizeof(char) * (data->length + 1));
913    strncpy(stripstr, (char *)data->data, data->length);
914    stripstr[data->length] = '\0';
915    cnp_debug("String is %s (%d bytes)\n", stripstr, data->length);
916    elm_entry_entry_insert(sel->requestwidget, stripstr);
917    free(stripstr);
918    return 0;
919 }
920
921
922 static Eina_Bool
923 text_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
924 {
925    Cnp_Selection *sel;
926
927    cnp_debug("text converter\n");
928    sel = selections + *((int *)data);
929    if (!sel->active) return EINA_TRUE;
930
931    if ((sel->format & ELM_SEL_FORMAT_MARKUP) ||
932        (sel->format & ELM_SEL_FORMAT_HTML))
933      {
934         *data_ret = remove_tags(sel->selbuf, size_ret);
935      }
936    else if (sel->format & ELM_SEL_FORMAT_TEXT)
937      {
938         *data_ret = strdup(sel->selbuf);
939         *size_ret = strlen(sel->selbuf);
940      }
941    else if (sel->format & ELM_SEL_FORMAT_IMAGE)
942      {
943         cnp_debug("Image %s\n", evas_object_type_get(sel->widget));
944         cnp_debug("Elm type: %s\n", elm_object_widget_type_get(sel->widget));
945         evas_object_image_file_get(elm_photocam_internal_image_get(sel->widget), (const char **)data_ret, NULL);
946         if (!*data_ret) *data_ret = strdup("No file");
947         else *data_ret = strdup(*data_ret);
948         *size_ret = strlen(*data_ret);
949      }
950    return EINA_TRUE;
951 }
952
953 static Eina_Bool
954 edje_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
955 {
956    Cnp_Selection *sel;
957
958    sel = selections + *((int *)data);
959    if (data_ret) *data_ret = strdup(sel->selbuf);
960    if (size_ret) *size_ret = strlen(sel->selbuf);
961
962    return EINA_TRUE;
963 }
964
965
966 static Eina_Bool
967 html_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
968 {
969    Cnp_Selection *sel;
970
971    sel = selections + *(int *)data;
972    if (data_ret) *data_ret = strdup(sel->selbuf);
973    if (size_ret) *size_ret = strlen(sel->selbuf);
974
975    return EINA_TRUE;
976 }
977
978 static Eina_Bool
979 uri_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
980 {
981    Cnp_Selection *sel;
982    sel = selections + *((int *)data);
983    cnp_debug("Uri converter\n");
984    if (data_ret) *data_ret = strdup(sel->selbuf);
985    if (size_ret) *size_ret = strlen(sel->selbuf);
986    return EINA_TRUE;
987 }
988
989 /*
990  * Image paste provide
991  */
992
993 /* FIXME: Should add provider for each pasted item: Use data to store it
994  * much easier */
995 static Evas_Object *
996 image_provider(void *images __UNUSED__, Evas_Object *entry, const char *item)
997 {
998    Paste_Image *pi;
999    Eina_List *l;
1000
1001    cnp_debug("image provider for %s called\n", item);
1002    EINA_LIST_FOREACH(pastedimages, l, pi)
1003      {
1004         cnp_debug("is it %s?\n",pi->tag);
1005         if (!strcmp(pi->tag, item))
1006           {
1007              /* Found it */
1008              Evas_Object *o;
1009              o = evas_object_image_filled_add(evas_object_evas_get(entry));
1010              /* FIXME: Handle eets */
1011              cnp_debug("file is %s (object is %p)\n", pi->file, o);
1012              evas_object_image_file_set(o, pi->file, NULL);
1013              evas_object_show(o);
1014              return o;
1015           }
1016      }
1017    return NULL;
1018 }
1019
1020
1021 static Paste_Image *
1022 pasteimage_alloc(const char *file, int pathlen)
1023 {
1024    Paste_Image *pi;
1025    int len;
1026    char *buf, *filebuf;
1027    int prefixlen = strlen("file://");
1028
1029    pi = calloc(1, sizeof(Paste_Image));
1030    if (!pi) return NULL;
1031
1032    len = snprintf(NULL, 0, "pasteimage-%p", pi);
1033    len++;
1034    buf = malloc(len);
1035    if (!buf)
1036      {
1037         free(pi);
1038         return NULL;
1039      }
1040    snprintf(buf, len, "pasteimage-%p", pi);
1041    pi->tag = buf;
1042
1043    if (file)
1044      {
1045         if (strstr(file,"file://")) file += prefixlen;
1046         filebuf = alloca(pathlen + 1);
1047         strncpy(filebuf, file, pathlen);
1048         filebuf[pathlen] = 0;
1049         pi->file = strdup(filebuf);
1050      }
1051
1052    return pi;
1053 }
1054
1055 static void
1056 pasteimage_free(Paste_Image *pi)
1057 {
1058    if (!pi) return;
1059    if (pi->file) free((void*)pi->file);
1060    if (pi->tag) free((void*)pi->tag);
1061    free(pi);
1062 }
1063
1064 static Eina_Bool
1065 pasteimage_provider_set(Evas_Object *entry)
1066 {
1067    void *v;
1068    const char *type;
1069
1070    if (!entry) return EINA_FALSE;
1071    type = elm_widget_type_get(entry);
1072    cnp_debug("type is %s\n", type);
1073    if ((!type) || (strcmp(type, "entry"))) return EINA_FALSE;
1074
1075    v = evas_object_data_get(entry, PROVIDER_SET);
1076    if (!v)
1077      {
1078         evas_object_data_set(entry, PROVIDER_SET, pasteimage_provider_set);
1079         elm_entry_item_provider_append(entry, image_provider, NULL);
1080         evas_object_event_callback_add(entry, EVAS_CALLBACK_FREE,
1081                                        entry_deleted, NULL);
1082      }
1083    return EINA_TRUE;
1084 }
1085
1086
1087 static Eina_Bool
1088 pasteimage_append(Paste_Image *pi, Evas_Object *entry)
1089 {
1090    char *entrytag;
1091    int len;
1092    static const char *tagstring = "<item absize=240x180 href=file://%s></item>";
1093
1094    if (!pi) return EINA_FALSE;
1095    if (!entry) return EINA_FALSE;
1096
1097    pasteimage_provider_set(entry);
1098
1099    len = strlen(tagstring)+strlen(pi->file);
1100
1101    pastedimages = eina_list_append(pastedimages, pi);
1102    entrytag = alloca(len + 1);
1103    snprintf(entrytag, len + 1, tagstring, pi->file);
1104    elm_entry_entry_insert(entry, entrytag);
1105
1106    return EINA_TRUE;
1107 }
1108
1109 static void
1110 entry_deleted(void *images __UNUSED__, Evas *e __UNUSED__, Evas_Object *entry, void *unused __UNUSED__)
1111 {
1112    Paste_Image *pi;
1113    Eina_List *l,*next;
1114
1115    EINA_LIST_FOREACH_SAFE(pastedimages, l, next, pi)
1116      {
1117         if (pi->entry == entry)
1118           pastedimages = eina_list_remove_list(pastedimages, l);
1119      }
1120 }
1121
1122
1123 static char *
1124 remove_tags(const char *p, int *len)
1125 {
1126    char *q,*ret;
1127    int i;
1128    if (!p) return NULL;
1129
1130    q = malloc(strlen(p) + 1);
1131    if (!q) return NULL;
1132    ret = q;
1133
1134    while (*p)
1135      {
1136         if ((*p != '<') && (*p != '&')) *q++ = *p++;
1137         else if (*p == '<')
1138           {
1139              if ((p[1] == 'b') && (p[2] == 'r') &&
1140                  ((p[3] == ' ') || (p[3] == '/') || (p[3] == '>')))
1141                *q++ = '\n';
1142              while ((*p) && (*p != '>')) p++;
1143              p++;
1144           }
1145         else if (*p == '&')
1146           {
1147              p++;
1148              for (i = 0 ; i < N_ESCAPES ; i++)
1149                {
1150                   if (!strncmp(p,escapes[i].escape, strlen(escapes[i].escape)))
1151                     {
1152                        p += strlen(escapes[i].escape);
1153                        *q = escapes[i].value;
1154                        q++;
1155                        break;
1156                     }
1157                }
1158              if (i == N_ESCAPES) *q ++= '&';
1159           }
1160      }
1161    *q = 0;
1162    if (len) *len = q - ret;
1163    return ret;
1164 }
1165
1166 /* Mark up */
1167 static char *
1168 mark_up(const char *start, int inlen, int *lenp)
1169 {
1170    int l, i;
1171    const char *p;
1172    char *q, *ret;
1173    const char *endp = NULL;
1174
1175    if (!start) return NULL;
1176    if (inlen >= 0) endp = start + inlen;
1177    /* First pass: Count characters */
1178    for (l = 0, p = start; ((!endp) || (p < endp)) && (*p); p++)
1179      {
1180         for (i = 0 ; i < N_ESCAPES ; i ++)
1181           {
1182              if (*p == escapes[i].value)
1183                {
1184                   l += strlen(escapes[i].escape);
1185                   break;
1186                }
1187           }
1188         if (i == N_ESCAPES) l++;
1189      }
1190
1191    q = ret = malloc(l + 1);
1192
1193    /* Second pass: Change characters */
1194    for (p = start; *p; )
1195      {
1196         for (i = 0; i < N_ESCAPES; i++)
1197           {
1198              if (*p == escapes[i].value)
1199                {
1200                   strcpy(q, escapes[i].escape);
1201                   q += strlen(escapes[i].escape);
1202                   p ++;
1203                   break;
1204                }
1205           }
1206         if (i == N_ESCAPES) *q++ = *p++;
1207      }
1208    *q = 0;
1209
1210    if (lenp) *lenp = l;
1211    return ret;
1212 }
1213
1214
1215 static Eina_Bool
1216 _dnd_enter(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1217 {
1218    Ecore_X_Event_Xdnd_Enter *enter = ev;
1219    int i;
1220
1221    /* Skip it */
1222    if ((!enter) || (!enter->num_types) || (!enter->types)) return EINA_TRUE;
1223
1224    cnp_debug("Types\n");
1225    savedtypes.ntypes = enter->num_types;
1226    if (savedtypes.types) free(savedtypes.types);
1227    savedtypes.types = malloc(sizeof(char *) * enter->num_types);
1228    if (!savedtypes.types) return EINA_FALSE;
1229
1230    for (i = 0; i < enter->num_types; i++)
1231      {
1232         savedtypes.types[i] = eina_stringshare_add(enter->types[i]);
1233         cnp_debug("Type is %s %p %p\n", enter->types[i],
1234                   savedtypes.types[i],text_uri);
1235         if (savedtypes.types[i] == text_uri)
1236           {
1237              /* Request it, so we know what it is */
1238              cnp_debug("Sending uri request\n");
1239              savedtypes.textreq = 1;
1240              savedtypes.pi = NULL; /* FIXME: Free? */
1241              ecore_x_selection_xdnd_request(enter->win, text_uri);
1242           }
1243      }
1244
1245    /* FIXME: Find an object and make it current */
1246    return EINA_TRUE;
1247 }
1248
1249 static Eina_Bool
1250 _dnd_drop(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1251 {
1252    struct _Ecore_X_Event_Xdnd_Drop *drop;
1253    Dropable *dropable;
1254    Eina_List *l;
1255    Ecore_Evas *ee;
1256    Ecore_X_Window xwin;
1257    Elm_Selection_Data ddata;
1258    int x, y, w, h;
1259    int i, j;
1260
1261    drop = ev;
1262
1263    // check we still have something to drop
1264    if (!drops) return EINA_TRUE;
1265
1266    /* Find any widget in our window; then work out geometry rel to our window */
1267    for (l = drops; l; l = l->next)
1268      {
1269         dropable = l->data;
1270         xwin = (Ecore_X_Window)ecore_evas_window_get
1271            (ecore_evas_ecore_evas_get(evas_object_evas_get
1272                                       (dropable->obj)));
1273         if (xwin == drop->win) break;
1274      }
1275    /* didn't find a window */
1276    if (!l) return EINA_TRUE;
1277
1278    /* Calculate real (widget relative) position */
1279    // - window position
1280    // - widget position
1281    ee = ecore_evas_ecore_evas_get(evas_object_evas_get(dropable->obj));
1282    ecore_evas_geometry_get(ee, &x, &y, NULL, NULL);
1283    savedtypes.x = drop->position.x - x;
1284    savedtypes.y = drop->position.y - y;
1285
1286    cnp_debug("Drop position is %d,%d\n", savedtypes.x, savedtypes.y);
1287
1288    for (; l; l = l->next)
1289      {
1290         dropable = l->data;
1291         evas_object_geometry_get(dropable->obj, &x, &y, &w, &h);
1292         if ((savedtypes.x >= x) && (savedtypes.y >= y) &&
1293             (savedtypes.x < x + w) && (savedtypes.y < y + h))
1294           break; /* found! */
1295      }
1296
1297    if (!l) return EINA_TRUE; /* didn't find one */
1298
1299    evas_object_geometry_get(dropable->obj, &x, &y, NULL, NULL);
1300    savedtypes.x -= x;
1301    savedtypes.y -= y;
1302
1303    /* Find our type from the previous list */
1304    for (i = 0; i < CNP_N_ATOMS; i++)
1305      {
1306         for (j = 0; j < savedtypes.ntypes; j++)
1307           {
1308              if (!strcmp(savedtypes.types[j], atoms[i].name)) goto found;
1309           }
1310      }
1311
1312    cnp_debug("Didn't find a target\n");
1313    return EINA_TRUE;
1314
1315 found:
1316    cnp_debug("Found a target we'd like: %s\n", atoms[i].name);
1317    cnp_debug("0x%x\n",xwin);
1318
1319    if (i == CNP_ATOM_text_urilist)
1320      {
1321         cnp_debug("We found a URI... (%scached) %s\n",
1322                   savedtypes.pi ? "" : "not ",
1323                   savedtypes.pi->file);
1324         if (savedtypes.pi)
1325           {
1326              char *entrytag;
1327              static const char *tagstring = "<item absize=240x180 href="
1328                 "file://%s></item>";
1329              ddata.x = savedtypes.x;
1330              ddata.y = savedtypes.y;
1331
1332              /* If it's markup that also supports images */
1333              if ((dropable->types & ELM_SEL_FORMAT_MARKUP) &&
1334                  (dropable->types & ELM_SEL_FORMAT_IMAGE))
1335                {
1336                   int len;
1337                   ddata.format = ELM_SEL_FORMAT_MARKUP;
1338                   pasteimage_provider_set(dropable->obj);
1339
1340                   pastedimages = eina_list_append(pastedimages, savedtypes.pi);
1341                   len = strlen(tagstring) + strlen(savedtypes.pi->file);
1342                   entrytag = alloca(len + 1);
1343                   snprintf(entrytag, len + 1, tagstring, savedtypes.pi->file);
1344                   ddata.data = entrytag;
1345                   cnp_debug("Insert %s\n", (char *)ddata.data);
1346                   dropable->dropcb(dropable->cbdata, dropable->obj, &ddata);
1347                   ecore_x_dnd_send_finished();
1348                   return EINA_TRUE;
1349                }
1350              else if (dropable->types & ELM_SEL_FORMAT_IMAGE)
1351                {
1352                   cnp_debug("Doing image insert (%s)\n", savedtypes.pi->file);
1353                   ddata.format = ELM_SEL_FORMAT_IMAGE;
1354                   ddata.data = (char *)savedtypes.pi->file;
1355                   dropable->dropcb(dropable->cbdata, dropable->obj, &ddata);
1356                   ecore_x_dnd_send_finished();
1357
1358                   pasteimage_free(savedtypes.pi);
1359                   savedtypes.pi = NULL;
1360
1361                   return EINA_TRUE;
1362                }
1363              else
1364                {
1365                   cnp_debug("Item doesn't support images... passing\n");
1366                   pasteimage_free(savedtypes.pi);
1367                   return EINA_TRUE;
1368                }
1369           }
1370         else if (savedtypes.textreq)
1371           {
1372              /* Already asked: Pretend we asked now, and paste immediately when
1373               * it comes in */
1374              savedtypes.textreq = 0;
1375              ecore_x_dnd_send_finished();
1376              return EINA_TRUE;
1377           }
1378      }
1379
1380    cnp_debug("doing a request then\n");
1381    selections[ELM_SEL_XDND].requestwidget = dropable->obj;
1382    selections[ELM_SEL_XDND].requestformat = ELM_SEL_FORMAT_MARKUP;
1383    selections[ELM_SEL_XDND].active = EINA_TRUE;
1384
1385    ecore_x_selection_xdnd_request(xwin, atoms[i].name);
1386
1387    return EINA_TRUE;
1388 }
1389 static Eina_Bool
1390 _dnd_position(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1391 {
1392    struct _Ecore_X_Event_Xdnd_Position *pos;
1393    Ecore_X_Rectangle rect;
1394
1395    pos = ev;
1396
1397    /* Need to send a status back */
1398    /* FIXME: Should check I can drop here */
1399    /* FIXME: Should highlight widget */
1400    rect.x = pos->position.x - 5;
1401    rect.y = pos->position.y - 5;
1402    rect.width = 10;
1403    rect.height = 10;
1404    ecore_x_dnd_send_status(EINA_TRUE, EINA_FALSE, rect, pos->action);
1405
1406    return EINA_TRUE;
1407 }
1408
1409 /**
1410  * When dragging this is callback response from the destination.
1411  * The important thing we care about: Can we drop; thus update cursor
1412  * appropriately.
1413  */
1414 static Eina_Bool
1415 _dnd_status(void *data __UNUSED__, int etype __UNUSED__, void *ev)
1416 {
1417    struct _Ecore_X_Event_Xdnd_Status *status = ev;
1418
1419    if (!status) return EINA_TRUE;
1420
1421    /* Only thing we care about: will accept */
1422    if (status->will_accept)
1423      {
1424         cnp_debug("Will accept\n");
1425      }
1426    else
1427      { /* Won't accept */
1428         cnp_debug("Won't accept accept\n");
1429      }
1430    return EINA_TRUE;
1431 }
1432
1433 /**
1434  * Add a widget as drop target.
1435  */
1436 Eina_Bool
1437 elm_drop_target_add(Evas_Object *obj, Elm_Sel_Type format, Elm_Drop_Cb dropcb, void *cbdata)
1438 {
1439    Dropable *drop;
1440    Ecore_X_Window xwin;
1441    Eina_List *item;
1442    int first;
1443
1444    if (!obj) return EINA_FALSE;
1445    if (!_elm_cnp_init_count) _elm_cnp_init();
1446
1447    /* Is this the first? */
1448    first = (!drops) ? 1 : 0;
1449
1450    EINA_LIST_FOREACH(drops, item, drop)
1451      {
1452         if (drop->obj == obj)
1453           {
1454              /* Update: Not a new one */
1455              drop->dropcb = dropcb;
1456              drop->cbdata = cbdata;
1457              drop->types = format;
1458              return EINA_TRUE;
1459           }
1460      }
1461
1462    /* Create new drop */
1463    drop = calloc(1, sizeof(Dropable));
1464    if (!drop) return EINA_FALSE;
1465    /* FIXME: Check for eina's deranged error method */
1466    drops = eina_list_append(drops, drop);
1467
1468    if (!drops/* || or other error */)
1469      {
1470         free(drop);
1471         return EINA_FALSE;
1472      }
1473    drop->dropcb = dropcb;
1474    drop->cbdata = cbdata;
1475    drop->types = format;
1476    drop->obj = obj;
1477
1478    evas_object_event_callback_add(obj, EVAS_CALLBACK_DEL,
1479                                   /* I love C and varargs */
1480                                   (Evas_Object_Event_Cb)elm_drop_target_del,
1481                                   obj);
1482    /* FIXME: Handle resizes */
1483
1484    /* If not the first: We're done */
1485    if (!first) return EINA_TRUE;
1486
1487    xwin = (Ecore_X_Window)ecore_evas_window_get
1488       (ecore_evas_ecore_evas_get(evas_object_evas_get(obj)));
1489
1490    ecore_x_dnd_aware_set(xwin, EINA_TRUE);
1491
1492    cnp_debug("Adding drop target calls\n");
1493    handler_enter = ecore_event_handler_add(ECORE_X_EVENT_XDND_ENTER,
1494                                            _dnd_enter, NULL);
1495    handler_pos = ecore_event_handler_add(ECORE_X_EVENT_XDND_POSITION,
1496                                          _dnd_position, NULL);
1497    handler_drop = ecore_event_handler_add(ECORE_X_EVENT_XDND_DROP,
1498                                           _dnd_drop, NULL);
1499
1500    return EINA_TRUE;
1501 }
1502
1503 Eina_Bool
1504 elm_drop_target_del(Evas_Object *obj)
1505 {
1506    Dropable *drop,*del;
1507    Eina_List *item;
1508    Ecore_X_Window xwin;
1509
1510    del = NULL;
1511    EINA_LIST_FOREACH(drops, item, drop)
1512      {
1513         if (drop->obj == obj)
1514           {
1515              drops = eina_list_remove_list(drops, item);
1516              del = drop;
1517              break;
1518           }
1519      }
1520    if (!del) return EINA_FALSE;
1521
1522    evas_object_event_callback_del(obj, EVAS_CALLBACK_FREE,
1523                                   (Evas_Object_Event_Cb)elm_drop_target_del);
1524    free(drop);
1525    /* If still drops there: All fine.. continue */
1526    if (drops) return EINA_TRUE;
1527
1528    cnp_debug("Disabling DND\n");
1529    xwin = (Ecore_X_Window)ecore_evas_window_get
1530       (ecore_evas_ecore_evas_get(evas_object_evas_get(obj)));
1531    ecore_x_dnd_aware_set(xwin, EINA_FALSE);
1532
1533    ecore_event_handler_del(handler_pos);
1534    ecore_event_handler_del(handler_drop);
1535    ecore_event_handler_del(handler_enter);
1536
1537    if (savedtypes.pi)
1538      {
1539         pasteimage_free(savedtypes.pi);
1540         savedtypes.pi = NULL;
1541      }
1542
1543    return EINA_TRUE;
1544 }
1545
1546
1547 static void
1548 _drag_mouse_up(void *un __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj, void *data __UNUSED__)
1549 {
1550    evas_object_event_callback_del(obj, EVAS_CALLBACK_MOUSE_UP, _drag_mouse_up);
1551    ecore_x_dnd_drop();
1552    if (dragdonecb)
1553      {
1554         dragdonecb(dragdonecb,selections[ELM_SEL_XDND].widget);
1555         dragdonecb = NULL;
1556      }
1557    if (dragwin)
1558      {
1559         evas_object_del(dragwin);
1560         dragwin = NULL;
1561      }
1562 }
1563
1564 static void
1565 _drag_move(void *data __UNUSED__, Ecore_X_Xdnd_Position *pos)
1566 {
1567    evas_object_move(dragwin,
1568                     pos->position.x - _dragx,
1569                     pos->position.y - _dragy);
1570 }
1571
1572
1573 Eina_Bool
1574 elm_drag_start(Evas_Object *obj, Elm_Sel_Format format, const char *data, void (*dragdone) (void *data, Evas_Object *), void *donecbdata)
1575 {
1576    Ecore_X_Window xwin;
1577    Cnp_Selection *sel;
1578    Elm_Sel_Type xdnd = ELM_SEL_XDND;
1579    Ecore_Evas *ee;
1580    int x, y, x2, y2, x3, y3;
1581    Evas_Object *icon;
1582    int w, h;
1583
1584    if (!_elm_cnp_init_count) _elm_cnp_init();
1585
1586    xwin = elm_win_xwindow_get(obj);
1587
1588    cnp_debug("starting drag...\n");
1589
1590    ecore_x_dnd_type_set(xwin, "text/uri-list", 1);
1591    sel = selections + ELM_SEL_XDND;
1592    sel->active = 1;
1593    sel->widget = obj;
1594    sel->format = format;
1595    sel->selbuf = data ? strdup(data) : NULL;
1596    dragdonecb = dragdone;
1597    dragdonedata = donecbdata;
1598
1599    ecore_x_dnd_callback_pos_update_set(_drag_move, NULL);
1600    ecore_x_dnd_begin(xwin, (unsigned char *)&xdnd, sizeof(Elm_Sel_Type));
1601    evas_object_event_callback_add(obj, EVAS_CALLBACK_MOUSE_UP,
1602                                   _drag_mouse_up, NULL);
1603
1604    handler_status = ecore_event_handler_add(ECORE_X_EVENT_XDND_STATUS,
1605                                             _dnd_status, NULL);
1606
1607    dragwin = elm_win_add(NULL, "Elm Drag Object", ELM_WIN_UTILITY);
1608    elm_win_override_set(dragwin, 1);
1609
1610    /* FIXME: Images only */
1611    icon = elm_icon_add(dragwin);
1612    elm_icon_file_set(icon, data + 7, NULL); /* 7!? "file://" */
1613    elm_win_resize_object_add(dragwin,icon);
1614    evas_object_size_hint_weight_set(icon, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1615    evas_object_size_hint_align_set(icon, EVAS_HINT_FILL, EVAS_HINT_FILL);
1616
1617    /* Position subwindow appropriately */
1618    ee = ecore_evas_ecore_evas_get(evas_object_evas_get(obj));
1619    ecore_evas_geometry_get(ee, &x, &y, NULL, NULL);
1620    evas_object_geometry_get(obj, &x2, &y2, &w, &h);
1621    x += x2;
1622    y += y2;
1623    evas_object_move(dragwin, x, y);
1624    evas_object_resize(icon, w, h);
1625    evas_object_resize(dragwin, w, h);
1626
1627    evas_object_show(icon);
1628    evas_object_show(dragwin);
1629
1630    evas_pointer_canvas_xy_get(evas_object_evas_get(obj), &x3, &y3);
1631    _dragx = x3 - x2;
1632    _dragy = y3 - y2;
1633
1634    return EINA_TRUE;
1635 }
1636
1637 static Tmp_Info *
1638 elm_cnp_tempfile_create(int size)
1639 {
1640    Tmp_Info *info;
1641    const char *tmppath;
1642    int len;
1643
1644    info = malloc(sizeof(Tmp_Info));
1645    if (!info) return NULL;
1646
1647    tmppath = getenv("TMP");
1648    if (!tmppath) tmppath = P_tmpdir;
1649    if (!tmppath) tmppath = "/tmp";
1650    len = snprintf(NULL, 0, "%s/%sXXXXXX", tmppath, "elmcnpitem-");
1651    if (len < 0)
1652      {
1653         free(info);
1654         return NULL;
1655      }
1656    len++;
1657    info->filename = malloc(len);
1658    if (!info->filename)
1659      {
1660         free(info);
1661         return NULL;
1662      }
1663    snprintf(info->filename,len,"%s/%sXXXXXX", tmppath, "elmcnpitem-");
1664
1665    info->fd = mkstemp(info->filename);
1666
1667 # ifdef __linux__
1668      {
1669         char *tmp;
1670         /* And before someone says anything see POSIX 1003.1-2008 page 400 */
1671         long pid;
1672
1673         pid = (long)getpid();
1674         /* Use pid instead of /proc/self: That way if can be passed around */
1675         len = snprintf(NULL,0,"/proc/%li/fd/%i", pid, info->fd);
1676         len++;
1677         tmp = malloc(len);
1678         if (tmp)
1679           {
1680              snprintf(tmp,len, "/proc/%li/fd/%i", pid, info->fd);
1681              unlink(info->filename);
1682              free(info->filename);
1683              info->filename = tmp;
1684           }
1685      }
1686 # endif
1687
1688    cnp_debug("filename is %s\n", info->filename);
1689    if (size < 1)
1690      {
1691         /* Set map to NULL and return */
1692         info->map = NULL;
1693         info->len = 0;
1694         return info;
1695      }
1696
1697    /* Map it in */
1698    if (ftruncate(info->fd, size))
1699      {
1700         perror("ftruncate");
1701         info->map = NULL;
1702         info->len = 0;
1703         return info;
1704      }
1705
1706    info->map = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, info->fd, 0);
1707    if (info->map == MAP_FAILED)
1708      {
1709         perror("mmap");
1710         info->map = NULL;
1711         info->len = 0;
1712      }
1713
1714    return info;
1715 }
1716
1717
1718 static int
1719 tmpinfo_free(Tmp_Info *info)
1720 {
1721    if (!info) return 0;
1722    free(info->filename);
1723    free(info);
1724    return 0;
1725 }
1726
1727 #else
1728 /* Stubs for windows */
1729 Eina_Bool
1730 elm_drag_start(Evas_Object *o, Elm_Sel_Format f, const char *d, void (*donecb)(void *, Evas_Object *),void *cbdata)
1731 {
1732    return EINA_FALSE;
1733 }
1734
1735 Eina_Bool
1736 elm_drop_target_add(Evas_Object *obj, Elm_Sel_Type format, Elm_Drop_Cb dropcb, void *cbdata)
1737 {
1738    return EINA_FALSE;
1739 }
1740
1741 Eina_Bool
1742 elm_drop_target_del(Evas_Object *o)
1743 {
1744    return EINA_TRUE;
1745 }
1746 #endif
1747
1748 /* vim:set ts=8 sw=3 sts=3 expandtab cino=>5n-2f0^-2{2(0W1st0 :*/