Tagged Questions
71
votes
9answers
16k views
PySide vs. PyQt?
Has anyone tried the new Python Qt binding - PySide yet?
I wonder about its matureness and compatibility with PyQt. What are your experiences on this matter? I know it has only been released this ...
17
votes
3answers
2k views
Prototyping Qt/C++ in Python
I want to write a C++ application with Qt, but build a prototype first using Python and then gradually replace the Python code with C++.
Is this the right approach, and what tools (bindings, binding ...
15
votes
1answer
272 views
Integrate Qt with Windows 7 taskbar using python?
I'm looking for a way to using some of the Windows 7 task bar features - specifically progressbar and jump lists - in a python application that uses Qt for the UI. The questions I've seen on SO are ...
11
votes
3answers
5k views
PyQt vs PySide comparison
I currently develop many applications in a Qt heavy C++/Python environment on Linux, porting to PC/Mac as needed. I use Python embedded in C++ as well as in a stand alone GUI. Qt is used fro xml ...
9
votes
4answers
799 views
PyQt or PySide - which one to use
I started learning a bit of python and would now like to toy around a bit with gui-building. Qt seems to be a good choice because of its cross-platformishness.
Now there seem to be two bindings ...
6
votes
2answers
7k views
Loading a simple Qt Designer form in to Pyside
I create a simple form in Qt designer and am trying to load it in to a Qt application I'm creating with PySide but without much luck.
Here's the generated code from `pyside-uic':
# -*- coding: utf-8 ...
5
votes
2answers
689 views
Getting PySide to work with matplotlib
I have tried running the example code on the SciPy website, but I get this error:
Traceback (most recent call last):
File ".\matplotlibPySide.py", line 24, in <module>
...
4
votes
1answer
119 views
Safe and lazy method invocations in PySide/PyQt
I'm using PySide to manage some hardware and perform some relatively simple operations depending on (e.g.) button clicks in the interface. The code for running each of these pieces of hardware resides ...
4
votes
2answers
1k views
Do you know of any effort to integrate PySide/PyQt development in Qt Creator?
I would love to program in python using only QtCreator. I have already used QtCreator to teach GUI programming to undergraduate students and they loved it. We have discussed several times the ...
4
votes
3answers
3k views
Getting started with PySide
I decided to learn Python Gui development and, as PyQt is non-free, the choice was PySide for it. But, unlike PyQt, PySide doesn't have any tutorials or screencasts, just documentation useless for ...
4
votes
1answer
1k views
Communication between threads in PySide
I have a thread which produces some data (a python list) and which shall be available for a widget that will read and display the data in the main thread.
Actually, I'm using QMutex to provide access ...
4
votes
3answers
2k views
Is it possible to add PyQt4\PySide packages on a virtualenv sandbox?
I'm using Virtualenv with profit on my develop environment with web.py, simplejson and other web oriented packages.
I'm preparing to develop a simple python client using Qt to reuse some Api developed ...
3
votes
3answers
141 views
How can you easily select between PyQt or PySide at runtime?
I would like to do something like this in one source file, QT.py:
import sys
import PyQt4
sys.modules["Qt"] = PyQt4
Then import this file in the other source files, and use it like this:
import ...
3
votes
1answer
248 views
QtDesigner & PySide: QTableWidget don't get accessible
I made a form in QtDesigner. This form gets loaded from PySide with help of the function
widget = loader.load(file, parent)
However, the QTableWidget (with objectNname buffer_table) don't get ...
3
votes
1answer
318 views
problem displaying sympy rendered svg in python
I have the following program which uses sympy and svgmath to render a user's algebraic expression. It nearly works but there are a few issues:
The svg is not actually produced until the program ...
3
votes
2answers
171 views
How to detect Meego/Maemo platform in Python?
I develop cross-platform application for Maemo/Meego/Linux platforms using python (PySide).
I use a workaround to distinguish between Maemo and Linux platfroms:
try:
import PySide.QtMaemo5
...
3
votes
3answers
1k views
Using PySide's QtWebKit under Windows with py2exe
I'm making an application in Python using PySide and Qt, and I need to open a webpage, so I used QtWebKit's QWebView.
On my development machine it works just fine, both running the code directly and ...
3
votes
4answers
1k views
PyQt/PySide - icon display problem
I have a PySide app which has an icon for the MainWindow (a QMainWindow instance). When I run the file normally, the icon is visible and everything is fine but when I create an exe with py2exe, the ...
2
votes
1answer
39 views
pyside + py2exe, user loaded images do not appear
I have an application written with pyside where a user can load an image, via either drag&drop or through a dialog box, and the image name and a thumbnail will show up in a QTreeWidget. When I ...
2
votes
1answer
120 views
PyQT/PySide vs PyObjC: worth it?
I'm thinking of creating a cross platform app, but I want it to look as natively as possible on OS X, is PyObjC a good choice? How easy is it? In contrast, how good is QT when it comes to looking ...
2
votes
2answers
119 views
How to create a new window button PySide/PyQt?
I'm having problems with a "New Window" function in PyQt4/PySide with Python 2.7. I connected a initNewWindow() function, to create a new window, to an action and put it in a menu bar. Once a common ...
2
votes
3answers
92 views
How to extract content, result of selectedItems()
The code below produces a little dialog box like the one shown, where the rows of the table can be selected (CTRL key for multiple select, or toggle on/off). Then clicking the 'Ok' button, the ...
2
votes
1answer
56 views
QWidget showFullScreen produces multiple resizeEvents
I have a QT application written in python using PySide and I stumbled across a little problem regarding the showFullScreen method of the QGLWidget (although the problem occurs with every other widget ...
2
votes
1answer
125 views
Made a GUI with Pyside, but I still have a cmd window in the back?
I made a GUI program using QT Designer and Pyside, and it works completely. The only problem is that whenever I run it, I get a cmd.exe window in the background. This is quite annoying. Is there any ...
2
votes
1answer
71 views
Larger CSS font sizes in QTextEdit-based editor
We are making a QTextEdit-based editor.
We are using QtGui.QComboBox in QtGui.QTextEdit for selecting font sizes.
The CSS sizes we are using are: small, normal, large, x-large and xx-large.
The ...
2
votes
1answer
80 views
No effect from ZoomIn in QTextEdit after font size change
This code runs a little window with a toolbar and a QTextEdit area.
If you highlight 'bananas' and change the font size, then using zoom from either the toolbar buttons or CTRL + mouse wheel will ...
2
votes
1answer
108 views
How to scale/zoom a QTextEdit area from a toolbar button click and/or ctrl + mouse wheel
Is it possible to scale (or "zoom") a QTextEdit area? I believe I read that placing QTextEdit inside QLayout can allow for scaling of the QTextEdit area, though did not find how to implement it. ...
2
votes
1answer
149 views
QSettings(): How to save to current working directory
For an app that can be run directly from a flash/pen/usb/jump/thumb drive, for portability in moving from one machine to another it can make sense for user settings to be stored on the memory stick in ...
2
votes
1answer
81 views
Subclassed QWebView doesn't react to Hyperlink Clicks
This is in Python/PySide.
I am trying to create my own Parental WebBrowser by overloading the PySide.QtWebKit.QWebView widget. Then whenever someone clicks a link on the widget I check to see if we ...
2
votes
1answer
108 views
How to double buffering a WebKit page using QWebView and PySide?
I am playing with PySide and QWebView to provide a WebKit version of a webapp on Windows.
Simple and easy to install in a complex working Windows environment where only Internet Explorer exists.
...
2
votes
1answer
147 views
PySide IPC with signals/slots
I've been trying to figure out if there's any way to manage IPC in PySide and still take advantage of Qt's signals/slots mechanism. The QtDBus module sounds great, but it doesn't appear to be ...
2
votes
1answer
550 views
PyQt (PySide), WebKit and exposing methods from/to Javascript
I am planning to use PyQt to control an embedded WebKit browser on the server side.
I have some inherit application logic in Javascript in the HTML page running inside WebKit.
How could I ...
2
votes
1answer
325 views
How to dynamically change child widgets with Python and Qt?
I would like to create a widget that has a child widget that I can dynamically change. Here is what I tried:
import sys
from PySide.QtCore import *
from PySide.QtGui import *
class Widget(QWidget):
...
2
votes
3answers
695 views
Loading an image using QPixmap
I have an image file , as C:/44637landscapes-2007.jpg
I want to load this file using QPixmap using PySide
I tried as following .
pixmap = QPixmap('C:/44637landscapes-2007.jpg')
But documentation ...
2
votes
1answer
390 views
Pyside, webkit basic question
I am currently running this code, and although the web browser appears, the web inspector doesn't seem to display anything, am i doing something incorrectly?
import sys
from PySide.QtCore import *
...
2
votes
1answer
402 views
Qt or EFL for multi-platform Python application
When chatting in IRC yesterday about the possibility to use P(C)ython instead of D for multi-platform GUI application, someone suggested me Enlightenment Foundation Libraries (EFL).
We have ...
2
votes
2answers
595 views
Python: from import error
I'm running Python 2.6.6 on Ubuntu 10.10.
I understand that we can import a module and bind that module to a different name, e.g.
import spam as eggs
also,
from eggs import spam as foo
My ...
2
votes
1answer
229 views
Increasing the maximum number of connections per host of QtWebKit
Question:
How can the default limit of 6 connections per host be increased in QtWebKit?
Use case:
I've multiple QtWebKit (QWebView) panes displayed by a PySide application. (PyQt would also work ...
2
votes
1answer
482 views
PySide / PyQt QStyledItemDelegate list in table
I'm trying to create a table of lists in Python with Qt (PySide/PyQt - matters not) and my lists are squashed into the table cells.
Is there a way to get the list delegates to 'pop out' of their ...
2
votes
2answers
250 views
Is it possible to install specific version of Python more than once on Windows?
I'd like to know if installing specific version of Python more than once on Windows is possible.
I'm asking about normal installation procedure leading to full Python environment so virtualenv is not ...
2
votes
1answer
440 views
Setting window style in PyQT/PySide?
I've been looking for how to do this and I've found places where the subject comes up, but none of the suggestions actually work for me, even though they seem to work out okay for the questioner (they ...
2
votes
2answers
785 views
Steps on howto install PySide on windows
I followed what they said at pyside.org but somehow i can't get it to work.
I downloaded the two files that they are linking from their site (qt libraries and pyside for python 2.6)
When I try one of ...
2
votes
3answers
1k views
How to install PySide v0.3.1 on Mac OS X?
I'm trying to install PySide v0.3.1 in Mac OS X, for Qt development in python.
As a pre-requisite, I have installed CMake and the Qt SDK.
I have gone through the documentation and come up with the ...
2
votes
2answers
923 views
Installing PySide - OSX
Anyone had success installing and using PySide on OSX? I am following the install instructions on the PySide site, though I'm running into issues building the API Extractor. I run cmake on the ...
1
vote
1answer
21 views
pyside QGraphicsScene: Why it is not working?
I am new to Qt and PySyde. I trying to create a small app to visualize sime line drawings.
In order to do that I try to use QGraphicsView an QGraphicsScene. I made a test to learn how it is working ...
1
vote
0answers
33 views
Performance testing tool for Qt, Pyside desktop application
I am developing a desktop application using Qt (Pyside) and Python.
I want to test performance of application, I search for performance testing tool but didn't find any tool.
Please suggest any good ...
1
vote
1answer
100 views
Qt/QSqlQuery: Binary data is interpreted as string when binding to BLOB field
I'm reading binary data from files and try to store it in a LONGBLOB field in a MySql database.
I'm using Python and PySide for this.
My problem is, that the binary data is interpreted as a string, ...
1
vote
1answer
164 views
Using QUiLoader and UI files in PySide to dynamically create user interface at run-time
I'm really having a hard time connecting slots from Python to Qt Designer UI files.
I've been through all tutorials I could find on PySide (ex: http://zetcode.com/gui/pysidetutorial/eventsandsignals/)
...
1
vote
2answers
46 views
PySide: Can't get QPainter() to save it's state and restore it on new paintEvent
I'm trying to make a very basic image creator using PySide. But I'm having some troubles to draw things.
This is the portion of my script responsible for the draw area:
class Area(QWidget):
...
1
vote
4answers
149 views
Best setup to develop cross-platform GUI-based apps using Python
I have been using REALbasic for a number of years to develop cross-platform apps. I have become frustrated developing with a proprietary language and so have decided to change languages and have ...