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.
16
votes
3answers
4k views
Using QTDesigner with PyQT and Python 2.6
I'm new to Python and am starting to teach myself GUI programming (hopefully) using PyQT4.7 and Python 2.6
I just downloaded the whole PyQT/QT4 package (including QTDesigner) from the PyQT website, ...
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
1answer
2k views
Building executables for Python 3 and PyQt
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 almost exclusively care about ...
11
votes
5answers
4k 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 icon.
Has anybody ...
9
votes
1answer
614 views
Python - Qt. How to make a Terminal Window for Telnet or ssh server interaction
i am making a PyQt application, and i want to make something like a Terminal Window, where the user can interact with a Telnet or ssh server.
My first idea was to have a Window with a black ...
9
votes
1answer
968 views
Using multiple QStyledItemDelegate with stylesheets
I'm creating a styled QTreeView using double-dispatch to resolve specific delegate for data items, which is working great. I subclassed the delegates from QStyledItemDelegate to take advantage of ...
7
votes
2answers
585 views
Hide PyQt app from taskbar
I'm a beginner in PyQt. I was trying to create a simple app to try some of the toolkit's many features. My question is, how can I hide the app icon from the taskbar?
I don't want the user to be able ...
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 ...
6
votes
2answers
191 views
PyInstaller but keeping .py files upgradeable
I've managed to package my PyQt4 app as a "standalone" application on windows, it works.
However this application can upgrade itself, which is done by replacing the actual code written by me (.py ...
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
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
5answers
5k 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. Sometimes, when I'm ...
6
votes
3answers
1k 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 how to do this. So my ...
5
votes
1answer
85 views
Writing data so repeatedly in SQLite Database with python
I want to use SQLite for my GUI Python application but I have to update database every 500 MS without effecting the performance of my program.
I'm using PyQt4,So I thought about using QThread but it ...
5
votes
4answers
164 views
Access a dictionary as a list
I have a data source which is best modeled with a dictionary (it is a collection of key=value pairs). For a specific visualization purpose, I need to provide a list-like data access interface (in ...
5
votes
3answers
664 views
PyQt4: How do you iterate all items in a QListWidget
Currently, I use the following while loop in a class that inherits QtGui.QListWidget to iterate all items:
i = 0
while i < self.count():
item = self.item(i)
i += 1
I ...
5
votes
2answers
1k views
Get active window title in X
I'm trying to get the title of the active window. The application is a background task so if the user has Eclipse open the function returns "Eclipse - blabla", so it's not getting the window title of ...
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
4answers
1k views
Python: Embed Chaco in PyQt4 Mystery
How do i go about adding Chaco to an existing PyQt4 application?
Hours of searches yielded little (search for yourself). So far i've figured i need the following lines:
import os
...
4
votes
1answer
75 views
Q_ENUMS in PyQt4
I would like to use facilities of enumeration of Qt. I saw in documentation of the module of QtCore there is a macros of Q_ENUMS, but I do not know and information how to use him.
4
votes
1answer
396 views
PyQt: Qt.Popup widget sometimes loses focus without closing, becomes unclosable
I'm writing a very small application with PyQt. All of my testing has been on Ubuntu/gnome so far.
I want a single "Popup" style window, with no taskbar/panel entry, that will close itself (and the ...
4
votes
2answers
163 views
pyqt4 reference for python?
Most of the reference site i visited are for C/C++.Is there a reference site of pyqt4 for python? like http://doc.trolltech.com/4.3/classes.html
4
votes
1answer
475 views
Multiple files AND folder selection in a QFileDialog?
I am using pyQt4 and want to have a Browse button in my GUI which opens up a Dialog box allowing user to select multiple files AND folders.
I have researched quite a bit but din't find any way to be ...
4
votes
2answers
198 views
Redirect python interactive help()
I'm working on a interactive python shell for an application using Qt. However I can't seem to get the interactive help to redirect. I have this in my python code:
class OutputCatcher:
def ...
4
votes
1answer
395 views
Why is PyQt connect() syntax so verbose?
I'm just learning PyQt and looking at the Signals and Slots mechanism. I'm a bit baffled by the verbose syntax. Why do we have:
self.connect(dial, SIGNAL("valueChanged(int)"), spinbox.setValue)
I ...
4
votes
1answer
865 views
How to connect pyqtSignal between classes in PyQT
I'd like to ask you for an advice.
How to connect pyqtSignal between two different objects (classes) PROPERLY? I mean best practice.
Look what I have done to achieve the goal: The Thermometer class is ...
4
votes
3answers
720 views
How can I move file into Recycle Bin / trash on different platforms using PyQt4?
I would like to add the next feature to my cross-platform PyQt4 application: when user selects some file and select "remove" action on it that file will be moved to Recycle Bin folder instead of being ...
4
votes
2answers
930 views
Hiding console window of Python GUI app with py2exe
I have a Python program uses Qt (PyQt4 in fact) and when I launch it from its main.py, I get a console window and the GUI window (on Windows, of course).
Then I compile my program with py2exe and ...
4
votes
1answer
904 views
How to use Qt Model/View framework with the Graphics View framework
I am working on a mapping application and need to display the data objects using a table, a form and as graphical objects in the map. I'm using PyQt, but that's not really important as this is a Qt ...
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
2answers
875 views
pdf viewer for pyqt4 application?
I'm writing a Python+Qt4 application that would ideally need to pop up a window every once in a while, to display pdf documents and allow very basic operations, namely scrolling through the different ...
4
votes
4answers
2k views
Python + QT + Gstreamer
I'm working with PyQt and trying to get video from a webcam to play within a QT widget. I've found tutorials for C and Qt, and for python and gtk, but NOTHING for this combo of pyQt and gstreamer. ...
4
votes
1answer
2k views
Using PyQt4 - QTableView with SQLAlchemy using QSqlTableModel (or not)
i'm starting to learn Qt for python and as i was wondering after reading this post :
qt - pyqt QTableView not populating when changing databases. if there was a way to use SQLAlchemy sessions instead ...
4
votes
2answers
787 views
QT4, GTK+, wxWidgets or IronPython for a native Windows app using Python
I need to build a native windows app using Python (and py2exe, I guess).
Feature requirements are:
Taskbar icon
Alert notifications (next to Taskbar Icon)
Chromeless window (ideally a pretty, ...
4
votes
1answer
661 views
Pros and cons of using gettext instead of QObject.tr() for localization of PyQt4 application?
I have couple of application written in PyQt4 where I've used standard Python gettext library for internationalization and localization of GUI. It works good for me. But I've selected gettext just ...
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 ...
4
votes
1answer
422 views
PyQt subclassing
The usual way to use Qt widgets from Python seems to be to subclass them.
Qt widget classes have a great many methods, so inevitably I'm going to end up adding a method to the subclass, with the same ...
4
votes
2answers
742 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 especially for Stackless? is ...
4
votes
3answers
1k views
Focusing on a tabified QDockWidget in PyQt
I have three QDockWidgets which are tabbed at startup using QMainWindow.tabifyDockWidget.
In the main window, after all of the addDockWidget calls:
self.tabifyDockWidget(self.dock_widget1, ...
4
votes
2answers
1k views
How do I respond to an internal drag-and-drop operation using a QListWidget?
I've got a Qt4 application (using the PyQt bindings) which contains a QListWidget, initialized like so:
class MyList(QtGui.QListWidget):
def __init__(self):
...
3
votes
2answers
68 views
Why is QWebView.loadFinished called several times on some sites e.g. youtube?
As per the documentation, loadFinished should be emitted only after all the page elements have finished loading. This should mean that it'll be called only once, however I've noticed that on some ...
3
votes
1answer
79 views
PyQt: Getting file name for file dropped in app
I am trying to set up an application that will accept havin files dropped into it. So, I am looking for a way to extract the path when they are dropped in.
Right now, I have drag and drop enabled ...
3
votes
1answer
125 views
Pass arguments to a slot using QTimer
I have written a pyQt client-server application. (python:3.2.2 , pyQT:4.8.6)
The sender sends a message to the listening receivers, and the receivers send a response to the sender. I dont want the ...
3
votes
1answer
44 views
Best practices for internationalization using PyQt4
I want to add multiple language support to my application which is written in Python using PyQt4. I was looking for information on how to add multiple languages and would like to see how other people ...
3
votes
2answers
143 views
Painting QTreeViewItem expand buttons and sibling/child lines
I am using a QTreeView and a QItemDelegate to reimplement most of the paint routine. However, the expand/collapse buttons and the sibling/child lines are drawn automatically by some other paint ...
3
votes
1answer
73 views
How to run PyQt4 with flash web page?
I use this very simple python script Problem loading a specific website through Qt Webkit to display a web page. It works well, but it doesn't detect my installed libflashplayer.so on linux x86_64 ...
3
votes
1answer
114 views
Reflect the QPixmap
I have an object QPixmap, how to get his reflection without QImage?
Now I do it using QImage (PyQt4):
tmp_image = QImage("./templates/{type}/{name}.png".format(type=tpl_type, name=tpl_name))
...
3
votes
1answer
583 views
How to use the phonon-vlc-backend in PyQt4 on Windows
I'm helping develop a PyQt4.8 application which amongst other things plays video and audio. We are using Phonon for this, part of the reason being that we also embed videos in a QtWebkit page which ...
3
votes
1answer
572 views
Qt4 + mplot3d of matplotlib
I am trying to embed a 3D plot in a Qt4 GUI (has other buttons), is this possible using matplotlib's mplot3d?
I am aware that 2d plots are possible using "matplotlib.backends.backend_qt4agg", and i ...