I need to write an application in Python with a User Interface. I decided to go for PyQt4 to make the GUI. It is included in the Anaconda distribution of Python.
To make a GUI running smoothly on a 4K display is not trivial. Most components are way too small by default. Some components - like buttons - are easy to resize:
btn = QtGui.QPushButton("Quit", self)
btn.resize(100,100)
But how do I resize other components, like the QMenuBar? Can I make the QMenu buttons (Like "File", "Edit", ..) that populate the QMenuBar larger? Can I make the WindowTitle in the top left corner also larger?
Thank you very much.