Python qt: documentation

From wikinotes

QDoc

Getting ScreenGrabs

You'll likely want to take a lot of screengrabs while documenting your various classes. This is the software I have been using to do this.

linux

Select Region

# select region
scrot -s myimage.png                 # if you are hiding mouse-cursor, you will need to move mouse for it to work
scrot -s --delay 5 screenshot.png    # delay 5s before choosing
sleep 5; scrot screenshot.png        # alternative method of screenshot after 5s