1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 #ifndef NEDIT_TEXTDRAG_H_INCLUDED
28 #define NEDIT_TEXTDRAG_H_INCLUDED
29
30 #include "text.h"
31
32 enum blockDragTypes {
USE_LAST,
DRAG_COPY,
DRAG_MOVE,
DRAG_OVERLAY_MOVE,
33 DRAG_OVERLAY_COPY};
34
35 void BeginBlockDrag(TextWidget tw);
36 void BlockDragSelection(TextWidget tw,
int x,
int y,
int dragType);
37 void FinishBlockDrag(TextWidget tw);
38 void CancelBlockDrag(TextWidget tw);
39
40 #endif
41