summaryrefslogtreecommitdiffstats
path: root/video/out/x11_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/x11_common.h')
-rw-r--r--video/out/x11_common.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/video/out/x11_common.h b/video/out/x11_common.h
index 2763009755..f65af8e79f 100644
--- a/video/out/x11_common.h
+++ b/video/out/x11_common.h
@@ -102,6 +102,11 @@ struct vo_x11_state {
/* Increment it before XShmPutImage */
int ShmCompletionWaitCount;
+ /* drag and drop */
+ Atom dnd_property;
+ Atom dnd_requested_format;
+ Window dnd_src_window;
+
Atom XA_NET_SUPPORTED;
Atom XA_NET_WM_STATE;
Atom XA_NET_WM_STATE_FULLSCREEN;
@@ -119,6 +124,18 @@ struct vo_x11_state {
Atom XAWM_DELETE_WINDOW;
Atom XAUTF8_STRING;
Atom XA_NET_WM_CM;
+ Atom XATARGETS;
+ Atom XAXdndAware;
+ Atom XAXdndEnter;
+ Atom XAXdndLeave;
+ Atom XAXdndPosition;
+ Atom XAXdndStatus;
+ Atom XAXdndActionCopy;
+ Atom XAXdndTypeList;
+ Atom XAXdndDrop;
+ Atom XAXdndSelection;
+ Atom XAXdndFinished;
+ Atom XA_uri_list;
};
int vo_x11_init(struct vo *vo);