Top "Pyqt4" questions

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

qt gridlayout spanning multiple columns

I am trying to create this geometery: _ ___ | | | |1| 3 | |_|___| |_2_| Where the 1 box is tall and skinny, the 2 box is short and wide. …

qt pyqt pyqt4 pyqt5
pyinstaller error: OSError: Python library not found: libpython3.4mu.so.1.0, libpython3.4m.so.1.0, libpython3.4.so.1.0

I'm using Python 3.4.4 on Centos7. I've created a python program on my local machine that makes use of qt modules. …

python python-3.x pyqt4 pyinstaller
How to make a PyQT4 window jump to the front?

I want to make a PyQT4 window(QtGui.QMainWindow) jump to the front when the application received a specified message …

python pyqt4
Multiple Columns in PyQt4 (potentially using QTreeWidget)

I'm trying to get QTreeWidget working exactly similar to this one. In python! I don't care about multiple tabs but …

python pyqt4 qtreewidget
how to make qmenu item checkable pyqt4 python

How can i make my qmenu checkable? from PyQt4 import QtGui app = QtGui.QApplication([]) menu = QtGui.QMenu() menu.addAction('50%…

python pyqt4 qmenu
Separate user interaction from programmical change: PyQt, QComboBox

I have several QComboBoxes in my PyQt4/Python3 GUI and they are filled with some entries from a database during …

python-3.x pyqt pyqt4 signals-slots qcombobox
Clearing selection in QListWidget

I'm using PyQt4 and I have a QListWidget in a window where I added items to it at run-time. I …

python pyqt4 qlistwidget
Print out python console output to Qtextedit

I have the output like this, when I press the button ['VERSION', 'ROMMON', 'HOSTNAME', 'UPTIME', 'RUNNING_IMAGE', 'HARDWARE', 'SERIAL', 'CONFIG_…

python pyqt pyqt4 qtextedit
Edit table in pyqt using QAbstractTableModel

I'm trying to create an editable table in PyQt. Here's the code for just displaying the table: import sys from …

python user-interface pyqt4 pyside qabstracttablemodel
How to make QTableWidget's columns assume the maximum space?

The columns of my QTableWidget do not fill in the space of the table, so that an empty space is …

python resize pyqt pyqt4 qtablewidget