The Following 11 Users Say Thank You to timconradinc For This Useful Post: | ||
![]() |
2010-06-14
, 14:19
|
Posts: 3,617 |
Thanked: 2,412 times |
Joined on Nov 2009
@ Cambridge, UK
|
#2
|
The Following User Says Thank You to Rob1n For This Useful Post: | ||
![]() |
2010-06-14
, 14:29
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#3
|
The Following User Says Thank You to mikec For This Useful Post: | ||
![]() |
2010-06-14
, 14:31
|
Posts: 13 |
Thanked: 20 times |
Joined on Jun 2010
|
#4
|
You're better looking at the Maemo version of the Qt documentation instead of the generic version. It includes documentation for the QtMaemo5 module, as well as some Maemo-specific platform notes.
![]() |
2010-06-14
, 14:36
|
Posts: 13 |
Thanked: 20 times |
Joined on Jun 2010
|
#5
|
might be worth listing all of the apps that are PyQt in the repos. That way you can just look at the actual real live examples here is my starter for 10.
ncalc
nclock
maesynth
maelophone
healthcheck
Lots of python gtk apps which dont get counted
![]() |
2010-06-14
, 16:45
|
|
Posts: 3,203 |
Thanked: 1,391 times |
Joined on Nov 2009
@ Worthing, England
|
#6
|
This is a good idea - i'd find it immensely more useful having links to the actual source, though. I don't have time atm to go through the list and add links to source.
khteditor appears to be a port of pygtkedtor to Qt (I haven't actually tried it), but the source has some good things in it.
maesynth has a cool method of using images to draw the keys on the keyboard and using them to play sounds instead of normal Qt Widgets.
![]() |
2010-06-14
, 16:55
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#7
|
This is a good idea - i'd find it immensely more useful having links to the actual source, though. I don't have time atm to go through the list and add links to source.
khteditor appears to be a port of pygtkedtor to Qt (I haven't actually tried it), but the source has some good things in it.
maesynth has a cool method of using images to draw the keys on the keyboard and using them to play sounds instead of normal Qt Widgets.
![]() |
2010-06-14
, 17:04
|
|
Posts: 1,684 |
Thanked: 1,562 times |
Joined on Jun 2008
@ Austin, TX
|
#8
|
The Following 4 Users Say Thank You to epage For This Useful Post: | ||
![]() |
2010-06-14
, 17:25
|
Posts: 13 |
Thanked: 20 times |
Joined on Jun 2010
|
#9
|
![]() |
2010-06-14
, 17:29
|
|
Posts: 1,684 |
Thanked: 1,562 times |
Joined on Jun 2008
@ Austin, TX
|
#10
|
After reading a post about PyQt crashing, fatalsaint posted some code using a python lambda function to use with a clicked() signal to send to a slot/function. This is pretty helpful, and I thought there might be more useful tips out there people have, so I started this thread. This can include code snippets or sites out there that are helpful. This really isn't meant to be a question thread, though, just something to look through for ideas.
Here's a quick go of a few that I can quickly think of:
Identify the sender of a signal in a slot
This is a helpful snippet that effectively allows you to pass an argument to a clicked() signal. This is helpful when you don't want to have a lot of functions around, and you can simply use code inside a single function to do something.
I like to use Qt Designer to design forms and then output the .ui files, from there, you can use pyuic4 to turn them into .py files. I had a hard time grasping how to use the .py files from there. I found this link helpful in a way I could understand. Some people prefer to integrate the object creation directly into their code, which is fine, but I have a lot of issues with doing that.
Qt Documentation
While the official PyQt documentation is nice, I've found some really nice things with the official Qt Documentation. One is that you can easily find all members available for an object. There's also some nice documentation about various frameworks within Qt.
Learn to use Qt CSS
Much like web development, CSS is also available within Qt. There's a list of examples that can be tried out just using Qt Designer. If you're using custom CSS, using palette() in your CSS definitions will allow you to use colors that the theme already knows about. As an example, this is an easy way to get the default blue color on your buttons when you want that color.
Depending on your needs, there's a number of built-in icons that are available for use.
Getting native Maemo feeling windows
I know this is covered elsewhere here, but I thought I'd throw it in here, too. To get nice slidey maemo-like windows in pyqt, do something like the following
Are there other tips for common problems you've come across when working with PyQt that might be helpful for other people?