update TODO
[tint2-nick87720z.git] / src / drag_and_drop.h
blob3a992629c30c4167ad286a206bdb17f0ec382b3a
1 /**************************************************************************
2 * Copyright (C) 2017 tint2 authors
4 **************************************************************************/
6 #ifndef DRAG_AND_DROP_H
7 #define DRAG_AND_DROP_H
9 #include <X11/Xlib.h>
10 #include <glib.h>
12 extern gboolean hidden_panel_shown_for_dnd;
13 extern gboolean debug_dnd;
15 void dnd_init();
17 void handle_dnd_enter(XClientMessageEvent *e);
18 void handle_dnd_position(XClientMessageEvent *e);
19 void handle_dnd_drop(XClientMessageEvent *e);
20 void handle_dnd_selection_notify(XSelectionEvent *e);
22 #endif