Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-06 Thread Sven Neumann
Hi,

Tor Lillqvist [EMAIL PROTECTED] writes:

 Sven Neumann writes:
   What is the state of support for the GDK clipboard in the win32
   backend?
 
 For the *GDK* clipboard only cutpaste of text is supported. The
 winclipboard plug-in uses the Windows clipboard directly. 
 
   Michael reported that he can't even copy and paste image data
   from one GIMP instance to the other on Win32. Would that be supposed
   to work?
 
 Yes it does work. (Although I now notice that it always copies the
 whole drawable to the Windows clipboard, not just the selection as one
 would expect).

I was actually asking about the newly added support for the system
clipboard which is supposed to obsolete the winclipboard plug-in.
Well, you basically answered that above. So the answer is that it is
_not_ supposed to work :( This is rather unfortunate. When I started
to implement the GDK clipboard functionality I was hoping there was
better support for it in the win32 GDK backend.


Sven
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-06 Thread Tor Lillqvist
 When I started to implement the GDK clipboard functionality I was
 hoping there was better support for it in the win32 GDK backend.

Thinking a bit more on it, adding support for cutpaste of images to
gdk/win32 would probably not be hard at all. Much code from
winclipboard.c can be reused. For interoperability with other Windows
apps one presumably should store/accept image data in/from the Windows
Clipboard in the predefined CF_DIB format (DIB ==
device-independent bitmap; basically an in-core BMP I think).

I doubt I have time to do it before going on vacation for three weeks
next Saturday, though. Hans or somebody else wanna try?

--tml
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-06 Thread Sven Neumann
Hi,

Tor Lillqvist [EMAIL PROTECTED] writes:

  When I started to implement the GDK clipboard functionality I was
  hoping there was better support for it in the win32 GDK backend.
 
 Thinking a bit more on it, adding support for cutpaste of images to
 gdk/win32 would probably not be hard at all. Much code from
 winclipboard.c can be reused. For interoperability with other Windows
 apps one presumably should store/accept image data in/from the Windows
 Clipboard in the predefined CF_DIB format (DIB ==
 device-independent bitmap; basically an in-core BMP I think).

The first thing to do then would be to add a GdkPixbuf module for the
CF_DIB format. It can be bundled with GIMP in the Win32 installer.


Sven
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Brion Vibber
On June 13 I wrote:
So far as I recall, Gimp has always lacked the ability to copy and paste 
images to other applications. Is this something that still requires 
support from Gtk to do cleanly? I noticed that the Win32 port of Gimp 
ships with a plugin that hacks in some clipboard support, and have had a 
go at porting it to Mac OS X: http://leuksman.com/mac/gimp/clipboard/
It's been brought to my attention that 2.1 now uses the GTK+ system 
clipboard for copying images, so it might be nice to integrate the 
native clipboard with that more directly.

After a lot of recompiling, I've managed to get 2.1 running from CVS. It 
seems to be doing _something_ with the clipboard, but I haven't yet 
gotten anything resembling an image out of it. Is there any X11-based 
program known to interoperate with it that I could test with to make 
sure it's working? GTK+ on Mac OS X is stuck in the X11 ghetto; Apple's 
X11 server tries to keep the X and Mac clipboards in sync, but seems to 
manage plain text only... on the Mac side I see only empty text on the 
clipboard after copying an image.

Either Gimp or GTK+ could be hacked up to use the Mac clipboard 
directly, I suppose. Any opinions on what's the correct place to do this?

The plugin I've been working on also provides access to the Grab and 
Image Capture services for screen capture and scanning (services 
communicate over the same NSPasteboard interface as the clipboard), so 
it'll likely continue to be independently useful even after a 
hypothetical Mac-clipboard-enabled Gimp 2.2.

-- brion vibber (brion @ pobox.com)


signature.asc
Description: OpenPGP digital signature


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Sven Neumann
Hi,

Brion Vibber [EMAIL PROTECTED] writes:

 After a lot of recompiling, I've managed to get 2.1 running from
 CVS. It seems to be doing _something_ with the clipboard, but I
 haven't yet gotten anything resembling an image out of it. Is there
 any X11-based program known to interoperate with it that I could test
 with to make sure it's working?

The easiest way to test is to use a second instance of GIMP. Another
application that is known to work is the word-processor Abiword.

Here are some links that explain how the X clipboard is supposed to
be used:

  http://tronche.com/gui/x/icccm/
  http://www.jwz.org/doc/x-cut-and-paste.html
  http://www.freedesktop.org/standards/clipboards-spec/clipboards.txt

GIMP passes image data in the PNG format and announces it using the
image/png mimetype identifier.

 Either Gimp or GTK+ could be hacked up to use the Mac clipboard
 directly, I suppose. Any opinions on what's the correct place to do
 this?

It definitely belongs into GTK+ in the long run. Perhaps it would be
good to start a GDK backend for MacOS X that is based on the GDK-X11
backend but deals with clipboard and other interoperability issues.


Sven
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Sven Neumann
Hi Brion,

it would be very helpful if you could point us to some documentation
about the MacOS X clipboard. I am particularily interested in the
formats that are typically used to exchange data using the clipboard.


Sven
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Brion Vibber
Sven Neumann wrote:
it would be very helpful if you could point us to some documentation
about the MacOS X clipboard. I am particularily interested in the
formats that are typically used to exchange data using the clipboard.
http://developer.apple.com/documentation/Cocoa/Conceptual/CopyandPaste/index.html
Cocoa apps (those written with the NeXT-derived toolkit) use TIFF for 
transferring raster images. Older apps (like Photoshop) tend to use 
PICT, which is a metafile format encapsulating calls to the QuickDraw 
drawing library. Using the Cocoa NSPasteboard interface, I can copy a 
TIFF and it performs the conversion to PICT for me, but when pasting I 
need to handle both formats.

Additionally rich text data may contain TIFF images, which can be 
extracted (this is useful for copying images from an RTFD document in 
TextEdit).

Cocoa prefers premultiplied alpha, so there's some lossy conversion for 
images with partially transparent areas. (This could probably be 
eliminated between instances of the Gimp by using libtiff to create  
read the TIFFs rather than NSBitmapImageRep which I'm using at the moment.)

How is image cut-n-paste handled on Win32? Windows apps use DIB (.bmp) 
format for clipboard transfer; does the GDK backend handle DIB-PNG 
conversion? I took a quick look around gdkselection-win32.c  friends 
but didn't see anything obvious.

-- brion vibber (brion @ pobox.com)


signature.asc
Description: OpenPGP digital signature


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Sven Neumann
Hi,

Brion Vibber [EMAIL PROTECTED] writes:

 Cocoa apps (those written with the NeXT-derived toolkit) use TIFF for
 transferring raster images. Older apps (like Photoshop) tend to use
 PICT, which is a metafile format encapsulating calls to the QuickDraw
 drawing library. Using the Cocoa NSPasteboard interface, I can copy a
 TIFF and it performs the conversion to PICT for me, but when pasting I
 need to handle both formats.

We use gdk-pixbuf to handle the clipboard image data. So far we only
use the PNG format but it would be reasonable to extend this to the
full range of formats supported by gdk-pixbuf. There's an API that we
can use that allows us to retrieve the list of supported formats and
the associated mime-types.

There's a tiff loader in GTK+ but no way to save TIFF files. There
doesn't seem to be support for PICT (except perhaps in a 3rd party
pixbuf loader that I don't know about). So the best way to address
this would probably be to write a PICT loader and either get it into
GTK+ or bundle it with GIMP for MacOS X.

 How is image cut-n-paste handled on Win32? Windows apps use DIB
 (.bmp) format for clipboard transfer; does the GDK backend handle
 DIB-PNG conversion? I took a quick look around
 gdkselection-win32.c  friends but didn't see anything obvious.

It would not be the job of the backend to handle the format
conversion.  The backend only needs to expose the clipboard in a
compatible manner (e.g. data with associated mime-types). It's the
application's job to handle the actual clipboard data. Of course it
would be nice if everyone could agree on using PNG but that's
unfortunately not how it works. So in order to use the win32 clipboard
we will need to support BMP support in gdk-pixbuf. This is there
fortunately but it seems to be limited to reading.


Sven
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Brion Vibber
Sven Neumann wrote:
 Is there any X11-based program known to interoperate with it that
 I could test with to make sure it's working?
The easiest way to test is to use a second instance of GIMP. Another
application that is known to work is the word-processor Abiword.
Thanks, it seems to be working on the X11 side. I do sometimes get what 
looks like an RGBA/ARGB mixup copying from Abiword to Gimp though; I'll 
try to isolate that and report the bug to the guilty party... :P

-- brion vibber (brion @ pobox.com)


signature.asc
Description: OpenPGP digital signature


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Sven Neumann
Hi,

Brion Vibber [EMAIL PROTECTED] writes:

  The easiest way to test is to use a second instance of GIMP. Another
  application that is known to work is the word-processor Abiword.
 
 Thanks, it seems to be working on the X11 side. I do sometimes get
 what looks like an RGBA/ARGB mixup copying from Abiword to Gimp
 though; I'll try to isolate that and report the bug to the guilty
 party... :P

I've seen that as well. I suspect it's the GIMP code that still
assumes that a GimpBuffer is always RGBA while the clipboard code
happily passes it a RGB tile-manager if the PNG data doesn't have an
alpha channel. I am just not sure where this would best be fixed. We
need to either remove that assumption or add an alpha channel when
converting the pixbuf to a tile-manager.


Sven
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Brion Vibber
Tor Lillqvist wrote:
Brion Vibber writes:
  How is image cut-n-paste handled on Win32?
There is a (Windows-specific) GIMP plug-in that does the paste from
(Windows) Clipboard and copy to Clipboard. That code probably
should move to GTK+. (I doubt it's straightforward, though, so it
hardly will get done in GTK+ 2.6.)
Yeah, that's the plugin I ported to Mac OS X. :(
-- brion vibber (brion @ pobox.com)


signature.asc
Description: OpenPGP digital signature


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Tor Lillqvist
Brion Vibber writes:
  How is image cut-n-paste handled on Win32? Windows apps use DIB (.bmp) 
  format for clipboard transfer; does the GDK backend handle DIB-PNG 
  conversion? I took a quick look around gdkselection-win32.c  friends 
  but didn't see anything obvious.

There is a (Windows-specific) GIMP plug-in that does the paste from
(Windows) Clipboard and copy to Clipboard. That code probably
should move to GTK+. (I doubt it's straightforward, though, so it
hardly will get done in GTK+ 2.6.)

--tml


___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Sven Neumann
Hi,

Tor Lillqvist wrote:

 There is a (Windows-specific) GIMP plug-in that does the paste from
 (Windows) Clipboard and copy to Clipboard. That code probably
 should move to GTK+. (I doubt it's straightforward, though, so it
 hardly will get done in GTK+ 2.6.)

What is the state of support for the GDK clipboard in the win32
backend? Michael reported that he can't even copy and paste image data
from one GIMP instance to the other on Win32. Would that be supposed
to work?


Sven

___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Tor Lillqvist
Sven Neumann writes:
  What is the state of support for the GDK clipboard in the win32
  backend?

For the *GDK* clipboard only cutpaste of text is supported. The
winclipboard plug-in uses the Windows clipboard directly. 

  Michael reported that he can't even copy and paste image data
  from one GIMP instance to the other on Win32. Would that be supposed
  to work?

Yes it does work. (Although I now notice that it always copies the
whole drawable to the Windows clipboard, not just the selection as one
would expect).

--tml


___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-07-05 Thread Brion Vibber
I wrote:
Thanks, it seems to be working on the X11 side. I do sometimes get what 
looks like an RGBA/ARGB mixup copying from Abiword to Gimp though; I'll 
try to isolate that and report the bug to the guilty party... :P
Patch in bugzilla: http://bugzilla.gnome.org/show_bug.cgi?id=145482
-- brion vibber (brion @ pobox.com)


signature.asc
Description: OpenPGP digital signature


[Gimp-developer] Image cut-n-paste; Mac clipboard plugin

2004-06-13 Thread Brion Vibber
So far as I recall, Gimp has always lacked the ability to copy and paste 
images to other applications. Is this something that still requires 
support from Gtk to do cleanly? I noticed that the Win32 port of Gimp 
ships with a plugin that hacks in some clipboard support, and have had a 
go at porting it to Mac OS X: http://leuksman.com/mac/gimp/clipboard/

It seems to work for me (on Mac OS X 10.3.4), though the whole method 
feels a bit hackish; requiring separate Copy and Paste menu items to 
access the system clipboard is unusual...

I'm not sure this is really the right place, but I'd appreciate any 
feedback, in particular bug reports and any advice on making a 
distributable binary that can be dropped into place for people using 
bundled binary distributions of Gimp.

-- brion vibber (brion @ pobox.com)


signature.asc
Description: OpenPGP digital signature