[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: The need for an official GNUstep desktop
From: |
Andreas Höschler |
Subject: |
Re: The need for an official GNUstep desktop |
Date: |
Mon, 28 Aug 2006 15:55:49 +0200 |
On Montag, August 28, 2006, at 02:08 Uhr, Andreas Höschler wrote:
By the way, if I want to drag a string (path) from my app to
Terminal.app
what pastboard type do I need to use? Is Terminal.app able to work
as a drag
target?
Yes, Terminal.app can be a drop target. I use it all the time with
GWorkspace.app.
Hmm, any idea how the pasteboard is to be set up? In my application
(drag source) I am doing
NSArray *types = [NSArray
arrayWithObjects:NSFilenamesPboardType, NSStringPboardType, nil];
[pboard declareTypes:types owner:nil];
[pboard setPropertyList:[NSArray arrayWithObject:path]
forType:NSFilenamesPboardType];
[pboard setString:path forType:NSStringPboardType];
I can drag from my application, but dropping is refused by
Terminal.app!? :-(
I have just looked into the Terminal sources. There I find
[self registerForDraggedTypes: [NSArray arrayWithObjects:
NSFilenamesPboardType,NSStringPboardType,nil]];
It should work. I am able to drag from my application to TextEdit.app.
But Terminal.app still refuses to accept the drag operation. I have put
a log in
-(BOOL) performDragOperation: (id<NSDraggingInfo>)sender
{
}
in the terminal sources, but this method is never called when I drag to
a Terminal.app window!?
Any ideas?
Could anyone who has Terminal.app running on Solaris send me his
Terminal.app sources?
Thanks!
Regards,
Andreas
- Re: The need for an official GNUstep desktop, (continued)
- Re: The need for an official GNUstep desktop, Charles Philip Chan, 2006/08/28
- Re: The need for an official GNUstep desktop, Peter Cooper, 2006/08/28
- Re: The need for an official GNUstep desktop, Chris Vetter, 2006/08/28
- Re: The need for an official GNUstep desktop, Adrian Robert, 2006/08/28
- Re: The need for an official GNUstep desktop, Andrew Sveikauskas, 2006/08/28
- Re: The need for an official GNUstep desktop, Rogelio Serrano, 2006/08/28
- Re: The need for an official GNUstep desktop, Peter Cooper, 2006/08/28
- Re: The need for an official GNUstep desktop, Andreas Höschler, 2006/08/28
- Re: The need for an official GNUstep desktop,
Andreas Höschler <=
- Re: The need for an official GNUstep desktop, Charles Philip Chan, 2006/08/28
- Re: The need for an official GNUstep desktop, Charles Philip Chan, 2006/08/28
Re: The need for an official GNUstep desktop, Charles Philip Chan, 2006/08/27
Re: The need for an official GNUstep desktop, Markus Hitter, 2006/08/28
Re: The need for an official GNUstep desktop, Chris Vetter, 2006/08/27
Re: The need for an official GNUstep desktop, Pete French, 2006/08/28