+
+ // add a dummy square as dragged image for the moment,
+ // TODO: proper drag image for data
+ NSSize sz = NSMakeSize(16,16);
+ NSRect fillRect = NSMakeRect(0, 0, 16, 16);
+ NSImage* image = [[NSImage alloc] initWithSize: sz];
+
+ [image lockFocus];
+
+ [[[NSColor whiteColor] colorWithAlphaComponent:0.8] set];
+ NSRectFill(fillRect);
+ [[NSColor blackColor] set];
+ NSFrameRectWithWidthUsingOperation(fillRect,1.0f,NSCompositeDestinationOver);
+
+ [image unlockFocus];
+
+