3
votes
2answers
473 views
PyQt: how to handle auto-resize of widgets when their content changes
I am having some issues with the size of qt4 widgets when their content changes.
I will illustrate my problems with two simple scenarios:
Scenario 1:
I have a QLineEdit widget. …
2
votes
1answer
29 views
Building executables for Python 3 and PyQt
Hi all.
I built a rather simple application in Python 3.1 using PyQt4. Being done, I want the application to be distributed to computers without either of those installed.
I almo …
2
votes
3answers
204 views
System theme icons and PyQt4
I'm writing a basic program in python using the PyQt4 module. I'd like to be able to use my system theme's icons for things like the preference dialog's icon, but i have no idea ho …
2
votes
3answers
580 views
PyQt4 Minimize to Tray
Is there a way to minimize to tray in PyQt4? I've already worked with the QSystemTrayIcon class, but now I would like to minimize or "hide" my app window, and show only the tray ic …
2
votes
1answer
235 views
Turning ctypes data into python string as quickly as possible
I'm trying to write a video application in PyQt4 and I've used Python ctypes to hook into an old legacy video decoder library. The library gives me 32-bit ARGB data and I need to t …
2
votes
3answers
200 views
How to display errors to the user while still logging it?
I'm using a PyQt4 user interface. I've redirected stderr to a log file for easy debugging and trouble-shooting, but now I need to display error messages to the user when an error …
1
vote
0answers
46 views
Stackless Python and PyQt
What experiences do you have with Stackless Python and PyQt?
Issues i would be happy if people address:
Compilation of PyQt for Stackless: does PyQt need to be compiled especial …
1
vote
3answers
41 views
Qt Python : QTreeWidget Child Problem
Hello Everybody,
I have a QTreewidget that works fine if I have just one level on my treelist. If I decide to add child sublevels, it gives me an error. Here is the code, that wor …
1
vote
2answers
63 views
Using Windows 7 taskbar features in PyQt
Hi all.
I am looking for information on the integration of some of the new Windows 7 taskbar features into my PyQt applications.
Specifically if there already exists the possibil …
1
vote
1answer
58 views
Debugging a pyQT4 app?
I have a fairly simple app built with pyqt4. I wanted to debug one of the functions connected to one of the buttons in my app. However, when I do the following
python -m pdb app.p …
1
vote
2answers
43 views
Couple of questions regarding PyQt
I have a couple of questions.
I have an algorithm that will generate a couple of pictures in python that must be displayed on a form. I am using PyGt for this. My question is: whe …
1
vote
3answers
76 views
PyQt context menu
Hi guys,
I'm adding a contextmenu to a QTableWidget dynamically:
playlistContenxt = QAction("Add to %s" % (currentItem.text()), self.musicTable)
playlistContenxt.setData(currentD …
1
vote
2answers
72 views
PyQt4 Highlighting
Hi,
I'm trying to add some syntax highlighting to a text editor in PyQt4. I've found an example in the documentation which works find when compiled from C++ but when i convert it …
1
vote
2answers
92 views
PyQt4 - Image Watermark
I'm trying to open a PNG image and write some text to it (a watermark) via QImage and QPainter. The code works 100% on Linux but when I run it on Windows XP (haven't tested with an …
1
vote
2answers
755 views
PyQt4 on Snow Leopard in 64 bit
I just compiled the latest preview of Qt4.6 on Snow Leopard in 64 bit without any major issues.
http://qt.nokia.com/developer/qt-4.6-technology-preview#download-the-qt-4-1
Now, I …
