API  1.0.0
CPDragServer.h
Go to the documentation of this file.
1 
2 @interface CPDragServer : CPObject
3 {
4  BOOL _isDragging // @accessors(readonly, getter=isDragging);
5 
6  CPWindow _draggedWindow // @accessors(readonly, getter=draggedWindow);
7  CPView _draggedView // @accessors(readonly, getter=draggedView);
8  CPImageView _imageView;
9 
10  BOOL _isDraggingImage;
11 
12  CGSize _draggingOffset // @accessors(readonly, getter=draggingOffset);
13 
14  CPPasteboard _draggingPasteboard // @accessors(readonly, getter=draggingPasteboard);
15 
16  id _draggingSource // @accessors(readonly, getter=draggingSource);
17  unsigned _implementedDraggingSourceMethods;
18 
19  CGPoint _draggingLocation;
20  id _draggingDestination;
21  BOOL _draggingDestinationWantsPeriodicUpdates;
22 
23  CGPoint _startDragLocation;
24  BOOL _shouldSlideBack;
25  unsigned _dragOperation;
26 
27  CPTimer _draggingUpdateTimer;
28 }
29 @end
A timer object that can send a message after the given time interval.
Definition: CPTimer.h:2
Definition: CPView.j:137