Tagged Questions

73
votes
8answers
17k views

PySide vs. PyQt? [closed]

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
309 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 ...
10
votes
4answers
971 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
143 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
2k 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
158 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
722 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
2answers
65 views

Simple File browser / file chooser in Python programe with Qt-GUI?

I'm currently trying to implement some kind of file browser / "explorer" into a programme... I'm using Python and PySide in connection with the Qt-window-toolkit. More or less this youtube-video shows ...
2
votes
1answer
90 views

PySide threading and http downloading

I've had soooo much trouble getting this code to work properly!!!! It runs fine when I debug it step by step, but when running normally it just crashes. Initially I was using a QThread to update the ...
2
votes
1answer
109 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
144 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
178 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
144 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
118 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
126 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
603 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
385 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
421 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
247 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
521 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
464 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
1answer
37 views

How to add a fixed header to a QScrollArea?

I currently have a QScrollArea defined by: self.results_grid_scrollarea = QScrollArea() self.results_grid_widget = QWidget() self.results_grid_layout = QGridLayout() ...
1
vote
1answer
49 views

How to make a widget in the center of the screen in PySide/PyQt?

This code works, but I wonder if there is any simpler way: def center(self): qr = self.frameGeometry() cp = gui.QDesktopWidget().availableGeometry().center() qr.moveCenter(cp) ...
1
vote
1answer
41 views

QMenu for QTableWidget in PySide/PyQt

here is my question details: I have these widgets - QMenuBar, QTableWidget and QToolbar. Here is my code sample: import sys from PySide import QtGui class Example(QtGui.QMainWindow): def ...
1
vote
1answer
63 views

PySide / PyQt detect if user trying to close window

is there a way to detect if user trying to close window? For example, in Tkinter we can do something like this: def exit_dialog(): #do stuff pass root = Tk() ...
1
vote
1answer
78 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
162 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
132 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
81 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
376 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
273 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
910 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
325 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
942 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
669 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
798 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
1answer
31 views

pyQt QLayout issue

This is driving me a little crazy. Hope someone can clear this up for me. Running the following code results in the first print statement being a list with one element the QVBoxLayout object. I set ...
0
votes
1answer
59 views

Catch which mousebutton is pressed on item

I have a UI.py file with the mainWindow class definition (build with Qt Designer and Pyside). The UI is imported in the main module. In the Ui I have a listbox. Based on the left or right mouse ...
0
votes
1answer
42 views

Send msg betwen js and python in QtWebKit

I found this topic in wiki: http://developer.qt.nokia.com/wiki/Using_QtWebKit_and_QML_with_PySide But I can not run the sample program from it. I use pyqt4 and get the following error $ ./main1.py ...
0
votes
0answers
39 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
62 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
39 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
105 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 ...

1 2