Python qt: documentation

From wikinotes
Revision as of 02:47, 23 May 2018 by Will (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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