PyQt4 how to do if the window is minimized, call a method expand that window
please tell me how to do it
I will be very grateful
|
|
|
The most accurate way to do this would be to watch for the Here is how you can re-implement the
Now if you have some other widget that you want to watch for Minimize, and you don't want to have to define a new event method on that object, you can create an object that simply watches events for multiple other objects. It is called an event filter:
Note that when checking the On a side note, you also have the option of customizing the actual window properties in the first place. So if your goal is to prevent minimizing, you could disable the button for it:
This will subtract the minimize button flag from all the other flags. |
||||
|
|
|
You can check the current state of a Here's an example app that checks every 5 seconds to see if it's minimised. If it is then the window is restored. This is just as an example - checking every 5 seconds for a minimised window and restoring it would be an evil thing to do in an app ;).
|
|||
|
|
Hi guys me better come this way:
certainly not always this function is `working |
|||
|
|