GUI Options


There are a number of generic configurations available, which will affect the whole GUI.
Some of these are also available at a widget level, where you can specify individual configurations tor specified widgets.

GUI Configuration


Some basic configuration for the size, position, transparency, etc. of the GUI.

Look & Feel

Size & Location

if app.exitFullscreen():
    # do something
else:
    app.setSize("fullscreen")
    # do something else
app.setLocation("CENTER")

GUI Design


It's possible to change the default colours and fonts for widgets in the GUI.

Colour

Font

When configuring a font, the following style options can be set:

app.setFont(size=16, family="Times", underline=True, slant="italic")
app.setButtonFont(size=14, family="Verdana", underline=False, slant="roman")

Setting a font

Modifying fonts