Re: Problems when putting a window between desktop and desktop icons

2008-10-28 Thread Markus Amalthea Magnuson
On Mon, Oct 27, 2008 at 21:45, Karl Goiser <[EMAIL PROTECTED]> wrote:

> Dear Markus and others,
>
> This is a problem that I have had with an application of mine, iCalViewer,
> which displays a window on the desktop.
>
> What happens is that you can find a window level which draws the window
> under the desktop icons and over the desktop itself.  However, at that
> level, that window captures the mouse events as if it was _over_ the desktop
> icons.
>
> My only solution was to disable mouse interaction with my window.
>
> I raised this as a bug with Apple, bug number 3521992 on 5 January, 2004 -
> coming up to 5 years ago!
>
> Regards,
> Karl

Thanks for your reply, good to hear it's not just me, on the other
hand not so good because it obviously can't be done :)

Time to come up with an entirely different solution then.
-- 
Markus Amalthea Magnuson

http://konstochvanligasaker.se
http://nattlek.se

"Life... is like a grapefruit. It's orange and squishy, and has a few
pips in it, and some folks have half a one for breakfast."
 – Douglas Adams
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Fwd: Problems when putting a window between desktop and desktop icons

2008-10-24 Thread Markus Amalthea Magnuson
(I accidentally posted this directly to the poster instead of the list.)

On Tue, Oct 21, 2008 at 23:09, Charles Steinman <[EMAIL PROTECTED]> wrote:

> --- On Tue, 10/21/08, Markus Amalthea Magnuson <[EMAIL PROTECTED]> wrote:
>
>> This half transparent red color covers the desktop, but not
>> the
>> desktop icons. So far, so good. The problem however, is
>> that my window
>> intercepts all mouse clicks, even if I click on an icon.
>
> Does [window setIgnoresMouseEvents:YES] work?

Yes it does, as does setting the alpha value to zero. However, I
_want_ to intercept mouse events, just not when I click an icon. My
window should not intercept those clicks since it is obviously behind
the icons, but it does anyway.
-- 
Markus Amalthea Magnuson

http://konstochvanligasaker.se
http://nattlek.se

"Life... is like a grapefruit. It's orange and squishy, and has a few
pips in it, and some folks have half a one for breakfast."
 – Douglas Adams
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: Problems when putting a window between desktop and desktop icons

2008-10-23 Thread Markus Amalthea Magnuson
On Thu, Oct 23, 2008 at 19:26, Matt Neuburg <[EMAIL PROTECTED]> wrote:

>>Hello,
>>
>>I am trying to put a window above the desktop but below the desktop
>>icons. I have achieved this by using the following code (in my own
>>subclass of NSWindow):
>>
>>[self setLevel:kCGDesktopIconWindowLevel - 1];
>
> I think what you want to say is
> CGWindowLevelForKey(kCGDesktopWindowLevelKey). This should be more robust
> than manipulating the level value directly.

Thanks for the tip! However, that doesn't really solve my problem,
which I am beginning to think is a bug on Apple's behalf. If anyone is
interested in some sample code, please download it here:

http://data.konstochvanligasaker.se/markus/GiveMeWindow.zip

Any other suggestions are welcome.
-- 
Markus Amalthea Magnuson

http://konstochvanligasaker.se
http://nattlek.se

"Life... is like a grapefruit. It's orange and squishy, and has a few
pips in it, and some folks have half a one for breakfast."
 – Douglas Adams
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Problems when putting a window between desktop and desktop icons

2008-10-21 Thread Markus Amalthea Magnuson
Hello,

I am trying to put a window above the desktop but below the desktop
icons. I have achieved this by using the following code (in my own
subclass of NSWindow):

[self setLevel:kCGDesktopIconWindowLevel - 1];

I can see that it at least visually works by using:

[self setBackgroundColor:[NSColor redColor]];
[self setAlphaValue:0.5];

This half transparent red color covers the desktop, but not the
desktop icons. So far, so good. The problem however, is that my window
intercepts all mouse clicks, even if I click on an icon. I've set up a
simple test by handling |mouseUp:| in the following way:

NSLog(@"Received %d clicks", [theEvent clickCount]);

I get this log message for all clicks, even when clicking desktop
icons. I've also tried to subtract 1 from the window level for each
click, to try each subsequent window level but the problem persists
att all available window levels, all the way to the lowest one (which
seems to be -2147483647, after which I get a "PSsetwindowlevel, error
setting window level (1001)" error).

Is there any way at all to put a window at the desired level, between
desktop and desktop icons, but still not have it intercept clicks from
icon areas?

regards
-- 
Markus Amalthea Magnuson

http://konstochvanligasaker.se
http://nattlek.se

"Life... is like a grapefruit. It's orange and squishy, and has a few
pips in it, and some folks have half a one for breakfast."
 – Douglas Adams
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]