Top "Pyqt" questions

PyQt is a set of Python v2 and v3 bindings for The Qt Company's Qt application framework and runs on all platforms supported by Qt including Windows, macOS, Linux, iOS and Android

How to check if a keyboard modifier is pressed (shift, ctrl, alt)?

I am building a UI with Qt Designer and I want buttons to perform different actions with different modifiers. So …

python pyqt pyqt5 pyqt4 modifier-key
How to change Qtablewidget's specific cells background color in pyqt

I am new in pyqt4 and I can't figure out how to do this. I have a QtableWidget with data …

python pyqt pyqt4 qtablewidget qtablewidgetitem
PyQt: RuntimeError: wrapped C/C++ object has been deleted

If I run this code: #!/usr/local/bin/ python3 import sys from PyQt4.QtCore import * from PyQt4.QtGui import * class …

garbage-collection pyqt pyqt4 qobject qmainwindow
Good PyQt tutorial needed

I'm starting getting into PyQt. Therefore I would need some good tutorials. I searched a bit but didn't find any …

python user-interface pyqt
Python PyQt Setting Scroll Area

I am trying to make my QGroupBox scrollable once it grow higher than 400px. The contents in the QGroupBox are …

python layout pyqt pyqt4 qscrollarea
Qt Designer how to change background

This is an repost. I am kind of new in QtDesigner and wanted to do something about the uglyness of …

python pyqt pyqt5 qwidget qt-designer
How to capture output of Python's interpreter and show in a Text widget?

I have a program in Python with PyQt, designed to run on Windows. This program makes a lot of operations …

python python-3.x pyqt
How to find an object by name in pyqt?

I have a list of dictionaries: globalParams = [{'attr':'enabled','ctrl':'checkBoxEnabled','type':'checkBox'}, {'attr':'colorMode','ctrl':'comboBoxColorMode','type':'comboBox'}] 'ctrl' …

qt pyqt objectname
PyQt and MVC-pattern

I am trying to design an MVC-pattern with PyQt. I want to split all programs into 3 parts: classes abstracted from …

python qt pyqt
Simplest way for PyQT Threading

I have a GUI in PyQt with a function addImage(image_path). Easy to imagine, it is called when a …

python qt pyqt thread-safety python-watchdog