setMiniwindowImage (followup)
setMiniwindowImage (followup)
- Subject: setMiniwindowImage (followup)
- From: Tyler LaGrange <email@hidden>
- Date: Wed, 19 Sep 2001 20:52:46 -0400
ALSO
if I call this method:
myWindow.setMiniwindowTitle("test");
it works as expected - the title above my icon in the dock is now "test"
(which without that method is "Window").
SO - either I must inform the Dock that my icon has changed somehow
(which seems odd since I don't have to do that when I set the
application icon) - OR this is a bug - and maybe just a Java bug...and
hopefully just a 10.0.4 bug - not a 10.1 :-)
thanx
T
On Wednesday, September 19, 2001, at 08:43 PM, email@hidden wrote:
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