Propogate colors to new windows on opening (744294)
[nedit.git] / source / textDrag.h
blobe2324d2eef0780e6e1275d4597806609aaadc05b
1 /* $Id: textDrag.h,v 1.3 2002/07/11 21:18:12 slobasso Exp $ */
3 #ifndef NEDIT_TEXTDRAG_H_INCLUDED
4 #define NEDIT_TEXTDRAG_H_INCLUDED
6 #include "text.h"
8 enum blockDragTypes {USE_LAST, DRAG_COPY, DRAG_MOVE, DRAG_OVERLAY_MOVE,
9 DRAG_OVERLAY_COPY};
11 void BeginBlockDrag(TextWidget tw);
12 void BlockDragSelection(TextWidget tw, int x, int y, int dragType);
13 void FinishBlockDrag(TextWidget tw);
14 void CancelBlockDrag(TextWidget tw);
16 #endif /* NEDIT_TEXTDRAG_H_INCLUDED */