I've been developing a dock-like program for linux, but the problem is that when I wanna run it on windows (xp/vista/7) these properties don't work:
self.window.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DOCK)
and
self.window.get_toplevel().show() # must call show() before property_change()
self.window.get_toplevel().window.property_change("_NET_WM_STRUT",
"CARDINAL", 32, gtk.gdk.PROP_MODE_REPLACE, [0, 0, 0, bottom_width])
it shows window borders(decorations) in addition to other dock properties and does not reserve its own space.
Simply, the lines above behave as if they're not there
What do I have to modify to make it work?
P.S. I have all binaries needed installed
Thx in advance :)