There is a "dock-panel" which displays open applications. If the application is out of sight (outside or minimized), then when you press the button, it is called.
The question is how to implement hiding the window?
Link to code: dock.py
There is a "dock-panel" which displays open applications. If the application is out of sight (outside or minimized), then when you press the button, it is called.
The question is how to implement hiding the window?
Link to code: dock.py
In Gtk, any widget (including the window) can be hidden using the hide() method and, accordingly, to show the widget, the show() method.
minimize() method for a Wnck.Window object? - BoSSSource: https://ru.stackoverflow.com/questions/529273/
All Articles