PySide Newbie Tutorials

From Qt Wiki
(Redirected from PySide-Newbie-Tutorials)
Jump to navigation Jump to search


English [French] 日本語

PySideSimplicissimus : 10 min newbie to newbie Tutorials

Before one can start programming, there always are prerequisites. In the Prerequisites for your convenience provided are a few extant links to it as well as the Hello World example. The source code for all the programs in this package are deposited in a repository on github.com and available for free download, using git the DVCS program:

 git clone https://github.com/OldAl/tuts4pyside

In the following presented are several small examples. Unless otherwise noted, they should take about 10 mins. to complete, but it may take longer depending on various factors, including familiarity with PySide.

Every main PySide program window can be resized, moved around and it can be closed by clicking the [x] symbol. Many programmers, however, prefer to also have a button that closes the program. The following code snippet shows how such close button can be implemented.

The example of shows an about box with version of Qt, PySide, Python and type of platform. Useful for any program, large or small.

It is obligatory for programs licenced under GPL (General Public Licence) to enable users to display and read GPL. This GPL requirement is often overlooked. This snippet shows how to display GPL or CCPL licence text simply.

Next presented is the combination of the CloseButton, AboutBox and Licence, all in one program. The program is almost useful - for instance, I use it to check about box to see what version of Python, Qt and PySide I am using. For a newbie, the program may take a little longer than 10 minutes.

There are more ways to skin a cat than one - many examples of PySide and PyQt do not use the dual inheritance structure for their programs. This little tutorial gives an alternative method to structure the "Combine" program and avoid multiple inheritance. Good to know about it. It will probably take little less than 10 minutes.

This is the last variation of combine.py program, a version which merges ui_combine.py and combine.py into one program. It's merit is that the number of files is smaller and files with a warning not to alter them are no longer used. Next newbie to newbie tutorial will be a little more realistic - an engineering application

The promises have to be kept (I could never be a politician) - so here is an almost practical application to analysis of engineering structures, a familiar field of Civil and Aeronautical Engineering. It is a short and straight forward program, though it will take a longer than 10 minutes :)

Enjoy!