So is there any interest in this at all? If you add the notification
on window warp I'm happy to distribute the plugin myself. I just need
to know when a window gets moved to another desktop.
Cheers,
-n8
On Thu, 29 Jul 2004 00:13:45 -0700, Nathaniel Gray <n8...@gm...> wrote:
> Hello,
>
> I'm ready to release the first version of my X11 Bridge plugin for
> Desktop Manager. It supports the following features:
> * Makes X11 applications aware of the current desktop and desktop count
> * Marks X11 windows with their desktop index
> * Correctly supports minimization to the dock and window warping [see below]
> * Works with X11.app and XDarwin.app
>
> This is the minimal feature set necessary to make the plugin useful
> and robust. Other features, including sticky window support and
> support for X11-application-initiated desktop changes and window warps
> will follow soon.
>
> In order to support window warping I needed to add a new notification
> to Notifications.h:
> #define NOTIFICATION_WINDOWWARPED @"WindowWarped"
>
> And I added this code to the end of moveToWorkspace: in ForeignWindow.m:
> [[NSNotificationCenter defaultCenter]
> postNotificationName:NOTIFICATION_WINDOWWARPED
> object:self];
>
> Would you be willing to accept this patch? For sticky window support
> I would also need notifications sent in the makeSticky: and
> makeUnSticky: methods. I think that would be everything I would need
> for full X support.
>
> Thanks,
> -n8
>
> --
> >>>-- Nathaniel Gray -- Caltech Computer Science ------>
> >>>-- Mojave Project -- http://mojave.cs.caltech.edu -->
>
--
>>>-- Nathaniel Gray -- Caltech Computer Science ------>
>>>-- Mojave Project -- http://mojave.cs.caltech.edu -->
|