setMiniwindowImage
setMiniwindowImage
- Subject: setMiniwindowImage
- From: email@hidden
- Date: Wed, 19 Sep 2001 20:43:05 -0400
I have been experimenting with some ApplicationKit classes (yes - in
Java) and I was wondering if the following method is SUPPOSED to set the
dock icon for my minimized window to my image:
myWindow.setMiniwindowImage(myImage);
I am calling this from windowDidMiniaturize method - as I have made my
controller the window delegate. Now I know this delegate method is
being called because I have spit out some debug in there - but the icon
never gets set. I also know that myImage is valid (and initialized)
because if I call this method:
myApp.setApplicationIconImage(myImage);
it sets my dock image for the application correctly. Is the
setMiniwindowImage used for this purpose or something else? Is it just
not implemented? Will it ever be implemented? Is this a bug? I know
you can do this somewhere - because if you are using buddy icons on AIM
it sets the image to that buddy icon when you minimize your chat
window...
Can somebody at least tell me if they have gotten this to work in
ObjectiveC? - maybe the method isn't mapped across correctly.
Any feedback would be great!
Tyler