Tagged Questions

PyQt is a set of Python bindings for Nokia's Qt application framework and runs on all platforms supported by Qt including Windows, MacOS/X and Linux.

learn more… | top users | synonyms

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 ...
28
votes
1answer
543 views

How do I configure the behavior of the Qt4Agg backend?

In an earlier question I learned that the behavior on show() was dependent on the backend in use by matplotlib. At that time I was looking for a way to keep show() from deleting the drawing elements ...
22
votes
1answer
6k views

Pygtk VS Pyqt VS WxPython VS Tkinter

What is the most used of these library and why ? What are the differences ?
21
votes
7answers
8k views

Threading in a PyQt application: Use Qt threads or Python threads?

I'm writing a GUI application that regularly retrieves data through a web connection. Since this retrieval takes a while, this causes the UI to be unresponsive during the retrieval process (it cannot ...
19
votes
2answers
379 views

QWebView undersampled SVG rendering

I'd like to use QWebView for an SVG thumbnailing job because it supports filters (unlike QSvgRender which only supports SVG Tiny 1.2). It seems to work quite well except for font rendering but that ...
18
votes
2answers
4k views

Qt: Erase background (Windows Aero Glass)

Update see Using Blur Behind on Windows for an example of using Qt and DWM. Original question: I want to create a Windows Aero Glass window with Qt, now it looks like this: But after calling ...
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 ...
16
votes
0answers
237 views

PyQT open a web page with JS alert pop up will get SegFault. How to fix that?

I am learning PyQT programing, and when I try a simple test, I get Segmentation fault, here is my code pop.py: #! /usr/bin/python import sys from PyQt4.QtGui import QApplication from PyQt4.QtCore ...
15
votes
1answer
275 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 ...
14
votes
5answers
378 views

PEP8 and PyQt, how to reconcile

I'm starting to use PyQt in some projects and I'm running into a stylistic dilemma. PyQt's functions use camel case, but PEP8, which I prefer to follow, says to use underscores and all lowercase for ...
12
votes
5answers
772 views

Qt programming: More productive in Python or C++?

Trying to dive into Qt big time but haven't done a large project with it yet. Currently using Python, but I've been thinking -- which is really the better language to use in terms of programmer ...
11
votes
5answers
2k views

How to embed a Python interpreter in a PyQT widget

I want to be able to bring up an interactive python terminal from my python application. Some, but not all, variables in my program needs to be exposed to the interpreter. Currently I use a ...
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
8answers
978 views

What is the most popular GUI library for Python in Windows?

What is the most popular GUI library for Python in Windows ?
10
votes
3answers
3k views

PyQt 4.7 - ImportError after installing on Windows

I've been trying to install PyQt 4.7 on Vista, but I am getting an ImportError when I try to do: from PyQt4 import QtCore, QtGui. ImportError: DLL load failed: The specified module could not be ...
10
votes
3answers
10k views

QListView/QListWidget with custom items

I'm writing my first Qt application with PyQt and am having some trouble creating a custom list view. I'd like the list to contain arbitrary widgets (one custom widget in particular). How would I go ...
10
votes
3answers
10k views

Qt and context menu

i need to create a context menu on right clicking at my window. But i really don't know what should i do. Are there any widgets or i must make it by my hands? Programming language: Python Graphical ...
10
votes
5answers
3k views

How to keep track of thread progress in Python without freezing the PyQt GUI?

Questions: What is the best practice for keeping track of a tread's progress without locking the GUI ("Not Responding")? Generally, what are the best practices for threading as it applies to GUI ...
9
votes
4answers
814 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 ...
9
votes
8answers
233 views

Python * imports

I've generally been told that the following is bad practice. from module import * The main reasoning (or so I've been told), is that you could possibly import something you didn't want, and it ...
9
votes
4answers
1k views

What is the correct way to make my PyQt application quit when killed from the console (Ctrl-C)?

What is the correct way to make my PyQt application quit when killed from the console (Ctrl-C)? Currently (I have done nothing special to handle unix signals), my PyQt application ignores SIGINT ...
9
votes
7answers
4k views

Developing user interface in Python - TkInter Vs PyQt

If one wants to develop a user interface in Python, which one to go for: TkInter or PyQt? I just started with TkInter and I was able to get some simple UIs going with elementary widgets like label, ...
8
votes
3answers
1k views

How do I display real-time graphs in a simple UI for a python program?

I have a complicated algorithm that updates 3 histograms that are stored in arrays. I want to debug my algorithm, so I was thinking of showing the arrays as histograms in a user interface. What is ...
8
votes
3answers
2k views

Is PyGTK or PyQT preferred for making GTK-native Python apps?

I'm a web developer looking to get my feet wet with coding up a little desktop app for Ubuntu in Python. I've scoured the web looking for the pros and cons of PyGTK vs. PyQT and can't really find any ...
7
votes
5answers
5k views

Sending custom PyQt signals?

I'm practicing PyQt and (Q)threads by making a simple Twitter client. I have two Qthreads. Main/GUI thread. Twitter fetch thread - fetches data from Twitter every X minutes. So, every X minutes my ...
7
votes
3answers
4k views

Linking a qtDesigner .ui file to python/pyqt?

So if I go into QtDesigner and build a UI, it'll be saved as a .ui file. How can I make this as a python file or use this in python?
7
votes
4answers
591 views

PyQt4,How to add a batch of widget (QPushButton) at one time and lets them to execute on SLOT

if i want to add 10 QPushButton at one time: NumCount=20 for i in range(NumCount): btn=QPushButton("%s %s" %("Button" i+1),self) btn.clicked.connect(self.btnclick) def btnclick(self): # here ...
7
votes
3answers
2k views

PyQt and MVC-pattern

Please, help me with designing MVC-pattern with PyQt. I want to split all program at 3 parts: some class that is abstracted from all Qt classes(model) some class that provides data from model to ...
7
votes
8answers
4k views

select GUI on windows (wxPy vs pyQt)

We are plan to create an application for monitoring and configuring our service (which is running on remote server). After long time discuss, we decide for python as pl for our app, because we love ...
7
votes
3answers
5k views

PyQt: Show menu in a system tray application

First of all, I'm an experienced C programmer but new to python. I want to create a simple application in python using pyqt. Let's imagine this application it is as simple as when it is run it has to ...
6
votes
1answer
97 views

Trying to learn PyQt with knowledge from Tkinter

Maybe I'm jumping into the deep end, but I'll give it a shot. Here are some useful features of Tkinter: The Tkinter Canvas widget is an object oriented drawing canvas. The elements of the drawing ...
6
votes
2answers
621 views

Quick and easy: trayicon with python?

I'd just need a quick example on how to easily put an icon with python on my systray. This means: I run the program, no window shows up, just a tray icon (I've got a png file) shows up in the systray ...
6
votes
2answers
1k views

multiprocessing problem [pyqt, py2exe]

I am writing a GUI program using PyQt4. There is a button in my main window and by clicking this button. I hope to launch a background process which is an instance of a class derived from ...
6
votes
3answers
1k views

Using Windows 7 taskbar features in PyQt

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 possibility to use the new progress ...
6
votes
3answers
761 views

PyQT GUI Testing

Does anyone know of a automated GUI testing package for that works with PyQT besides Squish? Nothing against Squish I am just looking for other packages. It would be cool if there were an open ...
6
votes
2answers
3k views

Python 3 and PyQt 4 recommendations

Is the combination of Python 3 and PyQt 4 recommended? Are there any alternatives?
6
votes
12answers
2k views

Enabling JPEG support for QImage in py2exe-compiled Python scripts?

I'm trying to use a JPEG image in a QImage object from a Python script, with PyQt4. The script itself works perfectly, the image loads and can be manipulated and rendered and all. However, when I ...
6
votes
1answer
2k views

Slow selection in QTreeView, why?

I've recently hit a wall in a project I'm working on which uses PyQt. I have a QTreeView hooked up to a QAbstractItemModel which typically has thousands of nodes in it. So far, it works alright, but I ...
6
votes
3answers
958 views

How to build PyQT project?

I have a simple PyQT project. I would like to know how to build it in Windows in such way, that it becomes runnable executable. I don't want to require user to install heavy QT framework for his ...
5
votes
3answers
342 views

Getting realtime output from ffmpeg to be used in progress bar (PyQt4, stdout)

I've looked at a number of questions but still can't quite figure this out. I'm using PyQt, and am hoping to run ffmpeg -i file.mp4 file.avi and get the output as it streams so I can create a ...
5
votes
2answers
117 views

A scrollbar event when scrolling?

I need an event for detecting if an user has moved the scrollbar position to another one. In other words, if the user does scroll up/down, would it be possible to catch a signal so I can know the ...
5
votes
2answers
316 views

How to resize QMainWindow after removing all DockWidgets?

I’m trying to make an application consisting of a QMainWindow, the central widget of which is a QToolBar (it may not be usual, but for my purpose the toolbar’s well suited). Docks are allowed below ...
5
votes
2answers
120 views

Optimizing your PyQt applications

For those of you who have written fairly complex PyQt applications, what tips and tricks would you offer for speeding up your applications? I have a few examples of where my program begins to slow ...
5
votes
2answers
843 views

Scraping Javascript driven web pages with PyQt4 - how to access pages that need authentication?

I have to scrape a very, very simple page on our company's intranet in order to automate one of our internal processes (returning a function's output as successful or not). I found the following ...
5
votes
2answers
2k views

Python: PyQt Popup Window

Greetings! So I've been creating my GUI with Qt for my Python application. I've now come to a situation where after a button has been pushed the appropriate deferred gets executed, we perform some ...
5
votes
4answers
324 views

Should wildcard import be avoided?

I'm using PyQt and am running into this issue. If my import statements are: from PyQt4.QtCore import * from PyQt4.QtGui import * then pylint gives hundreds of "Unused import" warnings. I'm ...
5
votes
3answers
2k views

PyQt4.QtCore.pyqtSignal object has no attribute 'connect'

I'm having issues with a custom signal in a class I made. Relevant code: self.parse_triggered = QtCore.pyqtSignal() def parseFile(self): self.emit(self.parse_triggered) Both of those belong ...
5
votes
2answers
344 views

How do you get a responsive GUI if your codebehind is running an infinte loop? PyQT

If you have a function consistently running an infinite loop in the background, how will your GUI ever be responsive? It is waiting for the loop to finish and this renders the interface useless. How ...
5
votes
4answers
1k views

Qt plotting application

Currently I'm trying to develop some simple plot prototype and I'm struggling with some kind of white/empty sheet syndrome. I'm back to Qt after 2 years, so I feel quite retarded. My application ...
5
votes
2answers
705 views

How can I draw nodes and edges in PyQT?

In PyQT, how can I plot small "Nodes" at given points and connect them with edges? All of the PyQT tutorials I find are "plot a button! plot a checkbox!" Huge thanks in advance

1 2 3 4 5 27