summaryrefslogtreecommitdiff
path: root/apps/X11/VCL/TDragImageList.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/X11/VCL/TDragImageList.h')
-rw-r--r--apps/X11/VCL/TDragImageList.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/apps/X11/VCL/TDragImageList.h b/apps/X11/VCL/TDragImageList.h
deleted file mode 100644
index 4cb9dab..0000000
--- a/apps/X11/VCL/TDragImageList.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef TDRAGIMAGELIST
-#define TDRAGIMAGELIST
-
-#include <TCustomImageList.h>
-
-class TDragImageList : public TCustomImageList {
-
- TDragImageList();
-
-/*
-{ TDragImageList }
-
- TDragImageList = class(TCustomImageList)
- private
- FDragCursor: TCursor;
- FDragging: Boolean;
- FDragHandle: HWND;
- FDragHotspot: TPoint;
- FDragIndex: Integer;
- procedure CombineDragCursor;
- procedure SetDragCursor(Value: TCursor);
- protected
- procedure Initialize; override;
- public
- function BeginDrag(Window: HWND; X, Y: Integer): Boolean;
- function DragLock(Window: HWND; XPos, YPos: Integer): Boolean;
- function DragMove(X, Y: Integer): Boolean;
- procedure DragUnlock;
- function EndDrag: Boolean;
- function GetHotSpot: TPoint; override;
- procedure HideDragImage;
- function SetDragImage(Index, HotSpotX, HotSpotY: Integer): Boolean;
- procedure ShowDragImage;
- property DragCursor: TCursor read FDragCursor write SetDragCursor;
- property Dragging: Boolean read FDragging;
- end;
-*/
-};
-
-#endif