vote up 2 vote down star

I am assisting with Windows support for a PyGTK app that appears as a system tray applet, but am not so strong on the GTK+ gooey stuff...

We have it so when you left-click the systray icon, the window appears right by your tray icon no matter where your system tray is--and on Linux this works great, using the results of gtk.StatusIcon.get_geometry() to calculate the size and position.

Of course, the docs for gtk.StatusIcon.get_geometry() point out that "some platforms do not provide this information"--and this includes MS Windows, as I get NoneType as the result.

I can make a guess and position the window in the bottom-right corner of the screen, 30 pixels up from the bottom--as this will catch the majority of Windows users who haven't moved the taskbar. But for those that have, it looks all wrong.

So is there a Windows-friendly way to get the position of the systray icon so I can place my window there?

Note that I am already using gtk_menu_popup() to position a menu, which works fine. But what I am trying to position is a separate gtk.Window.

flag

1 Answer

vote up 1 vote down

Gtk provides function gtk_status_icon_position_menu that can be passed into gtk_menu_popup as a GtkPositionFunc. This seems to provide the requested functionality.

link|flag
gtk_status_icon_position_menu seems appropriate for a popup menu, but will it work for a child gtk.Window? We are currently using gtk.Windows.move(x,y) to position it manually after the calculation. If I assume that most Windoze systrays are on the bottom-right of the screen (a bad assumption, I know), set the gravity to South-East and display there, then it shows underneath the taskbar. Ideally, if I could detect where the systray/gtk.StatusIcon really is on Windows, then I could position the window relative to that. Or maybe there's yet another better way? – ewall Aug 10 at 20:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.