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

0
votes
0answers
4 views

How to update rows separately with QTableWidget

I have a table that gets new entries added to it in real time. Each entry has an ID and I am storing the ID in a dictionary. What I am trying to do is to have each ID in its own row and update within ...
0
votes
0answers
10 views

PyQt: Get path where qlistview/qtablewidget/qlistwidget item is dropped outside of python app

I want to create a PyQt application where the user can drag and drop files onto a listview (or similar widget) and those files will be added to the list. This much works in the following example. ...
2
votes
0answers
14 views

How to continuously plot data points on PyQwt from a numpy array

I am currently developing my first GUI and am struggling with how to plot things dynamically. I have been researching online a ton but have not been able to find anything specific enough to help me ...
0
votes
1answer
13 views

Overload of QtGui.QLabel.setNum in PyQt4

In PyQt4, the slot QtGui.QLabel.setNum is overloaded. We have setNum( int ) and setNum( float ), linking to their c++ counterparts setNum( int) and setNum( double). I would like to connect a ...
1
vote
1answer
10 views

How to place QWebView in QTabWidget?

I'm new in Python and pyQt. I'm making desktop application for some forum. My app work correct, but I'm don't know, how I can to place my QWebView element in tab "QTabWidget" Here is my full code: # ...
0
votes
3answers
20 views

repeated signal and slot for same widets in pyqt4

I have 10 lineedit widget that design by qt-designer and i define signal&slot in my code, my problem is with repeating same signal&slot 10times in my code, something like this: ...
0
votes
0answers
3 views

method keyEventPressEvent in an App, made in Designer doesn't work

Good night: I designed an app in Designer, and after made the pyuic4 conversion. The app is a calculator windows styled. But when I need use four mathematical buttons via keyPressEvent method, ...
0
votes
1answer
3 views

iterate over settings dictionary with Qsettings with boolean values

Hm, I thought I was clever to manage my PyQt settings with a (Python) dictionary. That way I thought I could iterate over the settings at least for saving and comparing. But I got problems when using ...
1
vote
1answer
12 views

Pyinstaller PyQt4 QAction error

When I tried to create a onefile exe with my pyqt4 app I have 4 scripts that make up the whole thing. I have created the one exe but when I execute the file i get from the traceback file ...
0
votes
0answers
18 views

PyQt popup on right click wont disappear after selection

I am trying to have a 'right-click' pop up menu on a matplotlib canvas which also updates the cursor position on a window label when the mouse just hovers over a pixel. The problem is, that if I ...
0
votes
0answers
29 views

PyQt 4: Making a label scrollable

I am trying to create a label where I can write the current status of the program - e.g.: "Reading data..." "Processing data..." "Complete." If the text reaches the bottom of the label, then it ...
0
votes
0answers
32 views

pyqt4: QTableWidget cell coloring causes drag-and-drop

I create a table and a button with: self.table = QtGui.QTableWidget() self.table.setObjectName('table') self.table.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) ...
0
votes
1answer
12 views

How do we add a popup window using PyQt?

Hi I need to create a pop up window when user clicks a button in the MainWindow. So I created a DialogWindow and linked it with MainWindow with below line of code. For note I've three modules 1. ...
1
vote
0answers
24 views

delete QSyntaxHighLighter from QTextEdit

I'm trying to remove QSyntaxHighLighter that was set on QTextEdit, I try: hig = self.textEdit.findChildren(QSyntaxHighlighter) del hig but it does'nt work It was set with: highlight = ...
0
votes
1answer
20 views

pyQt4 - How to select table rows and disable editing cells

I create a QTableWidget with: self.table = QtGui.QTableWidget() self.table.setObjectName('table') self.table.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) ...
-1
votes
1answer
26 views

sqlite database with the list view pyqt [closed]

I need to visually represent pyqt database with the list view or table view. Is there any function to link to the database? Then I have a doubt about sqlit there any way to generate a unique id, ...
0
votes
1answer
18 views

how to convert this IRI to URI?

how to convert this IRI to URI ? http://down.qnwz.cn/uploads/media/broadcast/storymagazine/爱情的底牌.mp3 I hope the result type should be Qurl ,thanks it seems that QUrl QUrl::fromEncoded ( const ...
0
votes
0answers
12 views

How to trace every signal emit /connect for debug purpose?

I've got a bug in my "app" (a Qgis 1.7.4 plugin so written for python 2.7) and it's clearly signal/slot related. So, I've found this It's wonderful and work great... but only for old signal/slot, ...
0
votes
1answer
14 views

how do I use qss in pyqt4?

Could anyone tell me how to use a qss file with pyqt4? I tried changing stylesheets in the QTdesigner like this on the official docs for QT.But it didn't work. I was not sure whether it should be ...
0
votes
0answers
13 views

Trouble disabling buttons in PYQT4

Hi I have a GUI from with select a file to be processed. When he click "process" I want the buttons ("quit" and "process") to be disable. I've tried " self.Qbtn.setEnabled(False) ", nut it doesn't ...
1
vote
0answers
30 views

PyQt4 QTabWidget TAB CHANGE…currentChange(int) does not work

I have a huge problem with my QTabWidget. I have a small sample Programm, where changing the Tabs give me a message box with “current tab index:….” when I change the tab, which works ABSOLUTELY FINE: ...
0
votes
2answers
12 views

Python QT QNetworkRequest exits with “(process:3265): GLib-ERROR **: Creating pipes for GWakeup: Too many open files”

I have a python qt program which downloads many urls from a server. Most of the urls are small images (icons) and are unique. For some strange reason after the requests have finished python/qt still ...
0
votes
1answer
5 views

Creating a file that contains the set of inputs in pyqt

I have created a widget with a text bix, a combo box, a checkbox and some pushbottons. I wish to make a record of the set of input given everytime in a file. how do I do that ? Pls suggest.
0
votes
0answers
20 views

How to remove/exclude modules and files from pyInstaller?

I'm trying to shrink the size of my python exe file, I've been looking around but I can't seem to find a good answer for removing extra modules. At the moment, I'm discovering that it's deleting ...
-2
votes
1answer
33 views

Mac Python Easy Install [closed]

I am trying to get Easy install on my Mac and having some problems. I have downloaded the set up tools but past that I can't get it installed. Any tip or docs I can read. I am wanting to use east ...
-2
votes
0answers
20 views

PyQt4 how to get name widget [closed]

How to get name in pyqt4? e.x self.ui.list[i].setText("lol") 'list[i]' - how to do that?
0
votes
0answers
18 views

how to call a window interface from other python file to main window using icon button

I created two interfaces. One of them is main window and other is sub window. I want to open up a sub window by click an icon on my main window. This is my sub-window file http://codepad.org/7Kdtdaku ...
0
votes
1answer
18 views

How to draw points and lines on widgets using PyQt

I'm making an application, which should draw several points on widget and connect some of them with lines. I've made a form using QT Designer and I want to draw the points on frame for example. I've ...
0
votes
1answer
28 views

PyQt: application unexpectedly leaves main loop

I have a simple PyQt application, which has a tray icon and can be hidden from taskbar by clicking close button or tray icon. Application can be closed from tray icon context menu. After user clicks ...
0
votes
2answers
32 views

how to detect the character encoding of a web page programmatically?

I want to get a web page source code by Qt or PyQt ,I know how to get the encoded source code ,then I need get the codec in order to convert it into plain text ,so the problem is how to detect the ...
0
votes
1answer
29 views

disable the default icon from pyqt widget's window

I am creating a small search-bar in pyqt and converting it into a exe, i am also assigning it an icon with QIcon, and while im converting it to exe, that time also I am using the same icon. The issue ...
2
votes
1answer
38 views

Why use different approaches rather than direct, when connecting signals?

I am working with Python 3.3 and PyQt 4.10.1. Below figure is from PyQt book. Assume that there are 5 buttons as shown below. When clicked on each, they will change label's text a context that ...
0
votes
1answer
33 views

QStyleOptionProgressBar and style sheet

I'm painting a QProgressBar (using QStyleOptionProgressBar) into a QabstractTableModel ,the code just like this http://qt-project.org/doc/qt-4.8/qabstractitemdelegate.html now I want to set its style ...
1
vote
1answer
57 views
+100

PyQt4 checkable directory view

In an attempt to make a checkable directory view, I wrote the following code. but in the CheckableDirModel every time one checks a folder, it has to traverse to all the sub-folders to check them and ...
0
votes
1answer
12 views

Unable to get key event when using uic.loadUI() in PyQt4

I have the following code that cannot capture the key event. I used the uic.loadUi() to load my GUI. But I can't seem to capture the keyboard event. Pls help! class cMyApp(QtGui.QMainWindow): ...
0
votes
1answer
24 views

remove orphan tab order in qt-designer?

I have a multiple widget in my form, I deleted some widget but their tab orders not removed and gui not run. something like this : MainWindow.setTabOrder(self.lineEdit_FID, MainWindow.lineEdit_124) ...
0
votes
2answers
64 views

ImportError: No module named PyQt4

I installed pyqt4 by using Homebrew. But when I import PyQt4 in python interpreter, It said that "No module named PyQt4". Can somebody help me with that?
0
votes
0answers
22 views

PyQt ProgressDialog issues

First time using PyQt, or any GUI for that matter. I have a program that copies files and I'm trying to create a progress dialog for it. My issue is that everything will freeze up and wait for every ...
0
votes
0answers
23 views

Renaming items on a PyQt QTreeView

I have a PySide GUI application that combines a QTreeView with an IPython shell. I can update items on the tree, e.g. renaming them, from the shell without any problem, but for some reason, I can't ...
0
votes
1answer
9 views

Can't type in QlineEdit if the keyPressEvent is on

I am having a problem with the QLineEdit, if i enable the keyPressEvent in the code then i am not able to type anything in the QLineEdit. class SearchBox(gui.QLineEdit): def __init__(self, ...
0
votes
1answer
19 views

User resize able widgets like 3D modeling programs

I am using qt designer and python. I want to make a layout where a user can drag widgets to control the size while at the same time scaling properly with the window. Basically all 3d modeling ...
0
votes
0answers
17 views

PyQT4 - program dosn't respond

I'm writing program with GUI and I've got sometimes a problem. In program I've got one method which is a long loop. When this method works, my program (sometimes) dosn't respond, but after method ...
0
votes
0answers
3 views

QMainWindow doesn't show when created in sub-routine in PyQt4

I found a weird PyQt4 problem. If the QMainWindow is created in a function, it will not show. def Test(): win = QtGui.QMainWindow() win.show() app = QtGui.QApplication(['']) Test() app.exec_() ...
0
votes
0answers
9 views

PyQt: Signals/Slots connect, but some slots are not run

I have a PyQt Gui that when I connect some of the signals to methods that are part of the class, I cannot get the slot/function to be run. Yet in other classes it does. I must be missing something ...
0
votes
1answer
39 views

how to convert python ‘s byte array to QByteArray?

I have a python ‘s byte array b=b'hello' and I want to use it as the parameter of QtextStream to create a QtextStream object ,but QtextStream accept Qt’s byte array rather than Python’s .I wonder is ...
0
votes
0answers
12 views

Get QTabWidget Tab to redraw on currentChanged

I'm a bit new to python/qt and I have a strong problem to redraw my tab when the current tab Changed. I would like to redraw one of them when the user is changing. (Only when it's needed... the ...
0
votes
0answers
15 views

major/minor ticks QwtDial and proper pyQT documentation

A small program contains a QwtDial, where I want to set major ticks, minor ticks, and tick labels. The qt4 documentation I find is usually for c++, so I have to make a code interpretation/translation ...
0
votes
0answers
18 views

matplotlib push and pop drawing

I'm working with a GUI made with QT4 that centers around a matplotlib plot in the window. What I want to achieve is for the user to be able to interact with the plot easily and intuitively. My ...
0
votes
0answers
8 views

Showing data from QAbstractTableModel inside multiple custom widgets inside a QScrollArea

I use the following code to create a custom model derived from QAbstractTableModel and showing the data via a QTableView and a custom widget named PersonEditor via QDataWidgetMapper. This all works ...
0
votes
0answers
22 views

debug-mode python on windows

For debugging an application I need to build the debug version of PyQt4 python modules on windows XP. In the end files like PyQt4/QtCore_d.pyd are produced. However these files can't be loaded ...

1 2 3 4 5 34