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
806 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 ...
4
votes
1answer
120 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
4answers
2k views

Any really modern, good-looking desktop apps that are developed with PyQt/PySide?

I have started using Python for web development recently, it's kinda cool; I have seen programs that are developed in QT/C++, which is good enough in terms of esthetics; I have just noticed the new ...
3
votes
3answers
144 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
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 ...
3
votes
2answers
677 views

Non-pixelized rounded corner for top-level window

I want to set rounded corners on a QDialog. Since it is a top-level window, border-radius doesn't work, so I've to do this : QRegion EnterPinDialog::roundedRect(const QRect& rect, int r) { ...
2
votes
1answer
79 views

How to implement a signal/slot defined in Qt Designer

I am trying to connect the click() signal of a button to my own function. The button is in a widget that I created with QT Designer. I load the .ui file with QUiLoader like so: class ...
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
122 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
1answer
110 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
82 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
109 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
552 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
1answer
403 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
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
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 ...
1
vote
0answers
45 views

How to develop a PySide application plugin?

As I understand it Qt provides 2 main plugin mechanisms: Plugins that extend Qt "Qt Extensions" Plugins that extend applications developed with Qt I'm interested in developing plugins for my ...
1
vote
4answers
150 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 ...
1
vote
2answers
102 views

How to remove standart menuitem from QTextEdit context menu

So, i'm pretty new in PySide and QT, and want to know how to remove menuitem (it does not matter what kind of (undo, redo, copy, paste and etc)) from QTextEdit standart context menu. Or tell me a way ...
1
vote
1answer
73 views

pyqtSignal and QObject.receivers(..)

I need to check the signal for the presence of the listener, before it is emitted. class Test(QObject): test = pyqtSignal(str,dict) def run(self): if ...
1
vote
1answer
314 views

PyQt/PySide QMainWindow - switching between views

Hello PyQt/PySide experts, I am a newbie to both PyQt/PySide and desktop application development (I'm a web developer). I have a question about how you should navigate among different views in a ...
1
vote
2answers
258 views

Outputting and Responding to Javascript with PyQt

I am trying to use PyQt to load the html of a web page which can then be manipulated and fed back to the page for web scraping. I am basically trying to log into a page with Javascript on it, search ...
1
vote
2answers
783 views

Checkboxes in a Combobox using PyQt

I need to implement a drop down list that contains CheckBoxes, much like having the entries in a ComboBox being CheckBoxes. But QComboBox doesn't accept QCheckBox as its member and I couldn't find any ...
1
vote
2answers
311 views

Problem with django's call_command inside a Thread

I would to execute the django's call_method inside a Thread. This is the sample code: import sys sys.path.append("/my/django/project/path/") import threading import time # Import my django project ...
1
vote
2answers
890 views

How can I remove a QListWidgetItem from a QListWidget and refresh the display?

I am using a QListWidget to display a list of QListWidgetItem This list is read from a file. When I close the file, I want to empty the list. I did this method on my : class ...
1
vote
2answers
626 views

PySide or PyQT SQLite support in Ubuntu

I am running Ubuntu 10.04 Lucid and am developing a application in QT using Python. Today I tried to create a database binding to a SQLite database via QtSQL.QAddDatabase and got the following error: ...
1
vote
1answer
765 views

python qt, display text/label above another widget(phonon)

I'm making a video player using PySide which is a python bind to the Qt framework. I'm using phonon(a module) to display the video and I want to display text above the video as a subtitle. How can I ...
1
vote
2answers
1k views

QWebView not loading external CSS

I am using a QWebView to display some content and I want to use custom CSS to spruce up the output. I found that I can use the QWebSettings.setUserStyleSheetUrl() method to load my own CSS into the ...
0
votes
0answers
28 views

How to clip unclosed path in Qt QGraphicsScene

I have QGraphicsView with QGraphicsScene and I need to draw unclosed paths (which may contain lines, or Bezier curves) in limited area of scene defined by rect. There is simple way to clip closed ...
0
votes
2answers
51 views

Customising location-sensitive context menu in QTextEdit

I am trying to adjust the context menu in a QTextEdit. I have succeeded in getting access to and then displaying the default menu with the following code: class LinkTextBrowser(QTextBrowser): def ...
0
votes
1answer
32 views

Pyside build.sh Cannot parse file: ../data/typesystem.xml

I am following this tutorial http://lynxline.com/superhybrids-part-2-now-qt-pyside/ I am getting the following output when running build.sh: Fatal error: line=3, column=62, message=Failed to parse: ...
0
votes
1answer
82 views

How to combine a pyside frame with a button layout

I came across a pyside script demonstrating a frame, and pyside script demonstrating buttons and box layout. I made a primitive attempt to combine the two scripts, but I can't get both of the ...
0
votes
1answer
35 views

Using setBackground correctly

Hopefully an easy one for you... I've been trying to set the background color of a QtListWidgetItem, but I'm not having much luck - this is probably because I'm not using the QListWidgetItem ...
0
votes
1answer
100 views

PyQT Listen for SystemWide Key and mouse events

I'm trying to write an application that listens for systemwide key and mouse events matching certain patterns and responds to them. I plan on making the application run in the background. No it is ...
0
votes
1answer
102 views

PySide Signal “duplicating” behavior

from PySide.QtCore import * class Eggs(QObject): evt_spam = Signal() print "Loaded" a = Eggs() b = Eggs() print a.evt_spam print b.evt_spam print a.evt_spam is b.evt_spam outputs: Loaded ...
0
votes
2answers
127 views

QLabel.setText() not working?

I have been trying to get QLabel.setText in PySide working for several days, but no succes. I have following code(simplified): def GUI(self): self.data1=QtGui.QLabel() ...
0
votes
0answers
120 views

With Python/PySide/PyQt/Phonon how to control a USB Soundcards output sample clock rate?

I am trying to O/P audio to a USB soundcard (Lindy PnP SoundCard device) via Python/PySide/PyQT by the use of Phonon and/or QTMultimedia. I can O/P the aduio (mp3/wav) which is no problem - the ...
0
votes
1answer
59 views

QWizard: Change height/dimensions of title field

I'm currently trying to implement a simple "First steps" Wizard for a Python/Qt application I'm working on. This is really easy to do with Designer, but as usual the devil lies in the details. My ...
0
votes
1answer
134 views

Qt, remove dashed rectangle on selection without reimplementing paint

I've seen this link: http://www.qtcentre.org/threads/15089-QGraphicsView-change-selected-rectangle-style from this post: QT 4.5 - Changing the selection marquee for QGraphicsItem But I'm wondering ...
0
votes
0answers
110 views

Keeping QScrollArea viewport contents fixed under insertion of widgets to central widget at either end

(Note: I'm writing in Python/PySide here, but I can translate code from C++ Qt.) I have a QScrollArea with a QWidget as its widget(). The QWidget has a QVBoxLayout set. I want to be able to add ...
0
votes
0answers
45 views

Resize (restyle) QWizard under OS X

The default look of a Mac wizard (and by extension of QWizard) is this: All this space on the left, where the bowtie image is, is completely useless and wasted. Instead I like what the Dropbox guys ...

1 2