const char *types[10] = {0, };
int i = -1;
+ // TIZEN_ONLY(20160706): To distinguish clipboard selection in cbhm
+ if (selection == ELM_SEL_TYPE_CLIPBOARD)
+ {
+ types[++i] = "CLIPBOARD_BEGIN";
+ }
+ //
+
if ((format & ELM_SEL_FORMAT_MARKUP) ||
(format & ELM_SEL_FORMAT_TEXT))
{
types[++i] = "text/html;charset=utf-8";
}
+ // TIZEN_ONLY(20160706): To distinguish clipboard selection in cbhm
+ if (selection == ELM_SEL_TYPE_CLIPBOARD)
+ {
+ types[++i] = "CLIPBOARD_END";
+ }
+ //
+
+
if (i < 0) return EINA_FALSE;
ecore_wl_dnd_selection_set(ecore_wl_input_get(), types);