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
10 views

How to use QML with pyQT?

I would like to implement few simple animation using QML scripting in my pyQT application. Is it possible with pyQT? Or do I need to go for Qt/C++ ?
0
votes
1answer
20 views

How to subscribe the notification from worker threads?

I follow MVC design. I have three Controller parts which runs in main GUI thread. Also have another worker thread which processed some I/O stuffs. Once the worker thread finishes its task, all three ...
0
votes
1answer
41 views

How to show text on a QProgressBar with a busy indicator?

I'd like to show text on a QProgressBar. I'm using setRange(0, 0) to display a busy indicator. progressBar = QProgressBar() progressBar.setFormat('some text') progressBar.setValue(0) ...
-2
votes
1answer
25 views

How can I make better display board using python

I am beginner in python and stackoverflow I am going to make a better desplay using python. I have a ubuntu on beaglebord. I want to make a good display(It only desplays some datas interactively - It ...
0
votes
0answers
16 views

Qt with python (pyside) rotation check fails

I have problem with rotation check with QGraphicsItemGroup. Several items are grouped into group which is rotating in scene. After rotation, the QGraphicsItem.rotation() always returns 0. The group is ...
0
votes
1answer
19 views

how to reflect download progress onto QtableView or QtableWidget?

I want to make a download tool .I use the following part code for downloading see the code here now I am facing a problem :I don’t know how to reflect download progress onto QtableView or ...
0
votes
0answers
17 views

How to debug QThread in eclipse

I've seen Debugger, and know the basic of debugging,but I don't know how to see the processing of variable in QtCore.QThread. For example, I want to see the value of self.need in WorkerThread, I try ...
0
votes
0answers
36 views

is there any application that converts a PyQt (with syntax in Python) project to a Qt (with syntax in C++ ) project?

Can someone tell whether there is any application that converts a PyQt4 (with syntax in Python) project to a Qt4 (with syntax in C++) project? This will help people to switch from using a GPL ...
1
vote
3answers
21 views

How to convert .glade file to python class?

I'm learning the Python and now I'm trying to choose cross-platform-GUI-framework. As I see, the PyGTK is the best one, which fits my goals completely. The only question: is there any analog of ...
1
vote
0answers
16 views

Cannot add item to itemgroups if itemchange() is defined (PyQt)

I'm building a PyQt QGraphicsView project where some QGraphicItems can be moved around between different QGraphicsItemGroups. For that, I use the addItemToGroup() method of the "new" parent itemGroup. ...
1
vote
1answer
7 views

Setting layout margins in pyqt

In Qt Designer I can set the margin of a VBox or HBox using the properties layout*Margin. How can I do that in pyqt?
0
votes
0answers
14 views

How I can add a checkBox to a QAbstractTableModel ? [PyQt]

I search how to add a checkbox on the end on each rows of a QAbstractTableModel in PyQt. Thanks in advance for your help.
-3
votes
1answer
45 views

Which is better library for creating gui in python? [closed]

I am planning to create good dashboard desplay using python. Which graphical user interface is better for that? Os : Ubuntu 11.10
0
votes
0answers
10 views

QStandardItemModel removeRows does not remove signals on cells?

Got a QStandardItemModel on my QTableView and trying to remove all the rows in it. I was first calling a method I created with a call to takeRow, which does not delete the object if I'm right. What ...
0
votes
1answer
41 views

Where can i save the sqlite database on Mac OS X for a Python developed GUI app?

I'm developing a GUI Mac OS X application using PyQt+Python which will be distributed through Mac App Store. (Sadly, I have no Objective-C skills for now.) The app makes use of an sqlite database to ...
1
vote
1answer
42 views

Qt using C++ or PyQT; which is mostly preffered for todays linux based embedded application development?

I spent few days to find out few open source application development libraries/tools for linux based embedded devices. I would like to know which one is mostly preferred in the industry. I understood ...
0
votes
2answers
27 views

How to set focus in HTML input box from PyQT QWebView?

I have a HTML page with two input boxes. Can I set the keyboard focus to these input boxes from python? Currently I am handling the keypressEvents from python. A code snippet is given below def ...
1
vote
1answer
36 views

Qt: MainWindow does not appear until application is activated manually

In my (Py)Qt4 application, the main window doesn't appear until the user uses command-tab to switch away from the app and then command-tabs back to it. The strange thing is that this problem only ...
0
votes
1answer
25 views

pyqt - how to make a textarea to write messages to - kinda like printing to a console

I'm fiarly new to pyqt - I'm currently using it to make a visual representation of a graph. I made a custom widget for this, which was fairly easy. But now I'm stuck when having to use built in ...
0
votes
0answers
15 views

pyqt application performing updates

I have a pyqt application ready to release. It's my first attempt on this gui thing so bare with me. Everything works pretty well and I only have one more thing to wrap up. I love software that ...
2
votes
0answers
24 views

pyqt - displaying widget on top of widget

I'm making an application that shows a map of an area and I'm trying to draw nodes on top of it which can represent information. I made it all worked but did so simply by making 1 custom widget which ...
0
votes
1answer
29 views

pyqt timer does not return a value or an error

I am trying to use a timer with pyqt. The code is below, but it does not print anything and I do not get an error. Does anyone know what is wrong? Thanks import functools from PyQt4.QtCore import ...
1
vote
0answers
24 views

PYQT is it possible to connect a listener to an image I printed?

I'm making a map with senors looking like this: The sensors in the code are a class on themselves 'MapNode' and are drawn on the map by the following method: def drawMapNode(self, painter, ...
1
vote
0answers
99 views
+50

PySide / Qt : Too many arguments to connect a signal to a slot?

I'm trying to connect a custom signal (in a TCP client class) to a method that updates a log with the data sent by the server and whatnot. Here's the declaration of the TCP client class: class ...
-2
votes
0answers
46 views

Developing GUI using HTML with PyQT WebKit [closed]

Is developing GUI in HTML with pyQT is a preferred approach ? My application architecture is given below Entire GUI is developed using HTML5 and CSS3 (css3 is used for animation stuffs). The main ...
0
votes
1answer
24 views

Paste entire column into QTableView from Excel

I am having an issue pasting into a QTableView from Excel when the user has copied by selecting an entire column in Excel, essentially putting every single row in the selected column, for the entire ...
0
votes
1answer
34 views

pylint error runs fine in python3.2 but fails in python3.3

Running Ubuntu QQ: I have a Python project that uses PyQt. In several places I import QtCore and QtGui: from PyQt4 import QtCore, QtGui Until now, I have been using python3.2.x (3?) When I run ...
1
vote
1answer
34 views

Checking membership in python list trouble

I encountered problem with item membership in list, which I can't understand. While checking is some object instance in list( with simple "item in list" ) it returns me False even if the instance is ...
0
votes
1answer
23 views

Python global object variable

I want to make use on an object that has been instantinated inside of a class from a standalone module. I am trying to do this by makeing the object reference global. I think I want to make use of the ...
0
votes
1answer
31 views

PYQT Adding extra menu items to an existing UI before it opens

Hi I have designed a basic GUI in QT and created a .py file from it. When the window starts up I want to add another menu item. I have tried a few pieces of code I found on google but nothing seems ...
0
votes
1answer
27 views

How to reference PyQt UI elements from around the code?

Let's say I have a simple window with three controls: a combo box, a push (toggle) button and a text edit control. To spice it up, I needed the algorithm to run in a thread (while the toggle is ...
0
votes
0answers
23 views

Some flickering while using PyQt

I am using PyQt for GUI. I am using the QMainWIndow. I have a graphics window which is set as central widget of QMainWindow and there are two dock widgets. Left widget has QTreeWidget which has names ...
0
votes
2answers
57 views

Why is my PyQt UI not frozen while I don't have a loop running?

I'm fairly new to Qt. I've built a few things in python with Gtk3 with introspection and the Glade UI designer, including building my code to be run as functions that are run when an event happens. In ...
1
vote
1answer
37 views

Why are windows/dialogs not part of the class PyQt creates?

I'm fairly new to Qt. I've built a few things in Gtk3 with introspection and the Glade UI designer. Now, I'm trying to learn PyQt. While I like how it makes your Ui into a class (seems easier to ...
0
votes
0answers
17 views

pyqt how to make web view accept permission?

im working on a face recognition system that uses camera and load it in a web page. however , when i use a regular web browser like chrome i get this message asking for a permission to use camera: ...
0
votes
1answer
28 views

How to move an object back and forth between QThreads in Pyqt

In my program (using Python 2.7), I create an object containing some important data and methods. Some of the methods are CPU hungry, so in certain cases I move the object to a new QThread for the ...
0
votes
1answer
48 views

How to use pyqt evaluate javascript

I am learning pyqt,use for parse webpage. Now i want use pyqt evaluate javascript function just like this answer do: spidermonkey evaluate js function which in remote js file import urllib2 import ...
4
votes
0answers
37 views

QApplication is not running in main thread when building PySide app bundle with py2app

I am having problems building my PySide Python app using py2app (for OS X). It appears that something funny happens with threads on the app bundle. Here is the minimal example from PySide.QtCore ...
0
votes
1answer
32 views

Query on returned results

I have a model, which inherits from a QSqlTableModel, that I fill with a table from a database. Sometimes, I need to effectuate a research on the data: self.query.prepare(requete) self.query.exec_() ...
0
votes
0answers
20 views

Use of pyqt imageformats when running visual studio 2010

Not able to get targa images to render when running python application in debug from Visual Studio 2010. I've seen posts talking about adding "[app dir]/imageformats/qtga4.dll" but it's not working. ...
1
vote
1answer
27 views

Show context menu of QSystemTrayIcon without user click

I have a QSystemTrayIcon, that displays a QMenu on click, but I want to display the menu as soon as the tray icon is displayed. I have tried calling the show method on the QMenu, but the menu only ...
-1
votes
2answers
22 views

QFileDialog returns selected file with wrong seperators

I noticed that QFileDialog instance is returning absolute paths for the member function selectedFile() that have the wrong separator for the given operating system. This is not expected on a cross ...
0
votes
1answer
28 views

pyqt - error while running, probably wrong paintevent method implementation

Me and my colleagues are writing a data processing application in python. We are currently working on the frontend part of the application. We have a big problem though, that's that the application ...
0
votes
1answer
28 views

Nested layouts get broken, not on their own

I have a simple window which I would like to display a button and a label horizontally in a QHboxLayout then a QGroupBox with some QRadioButton displayed vertically in a QVBoxLayout. I tried to put ...
0
votes
0answers
22 views

Setting a check box in QTabelWidget Header in PyQt

I am having a QTabelWidget. In that the first column is filled with check boxes. The code which i used for filing the checkboxes is items = QtGui.QTableWidgetItem() ...
0
votes
1answer
43 views

Accessing QT combo and textbox values

I'm using Python 3 and QT4 with pyqt. I've been unable to access data from qcomboboxes and qplaintextedits. I've read the documentation here: http://qt-project.org/doc/qt-4.8/qcombobox.html ...
0
votes
1answer
17 views

How can I stretch a single widget in a horizantal layout in PyQt4?

Here all three pushbutton are equivalent in size, how to increase size of only first pushbutton so that it occupies more space than other two buttons. from PyQt4 import QtGui import sys class ...
-1
votes
0answers
19 views

detect all the network erroneous cases with Qt [closed]

detect all the network erroneous cases with Qt I want to get Page Source by the following code ,I wonder is it enough to detect all the network erroneous cases with the following code ?
1
vote
1answer
33 views

QCheckBox word-wrap

Is there a way to wrap text in QCheckBox like it is done with QLabel? label = QLabel( QString.fromUtf8('long text in here')) label.setWordWrap(True) I tried \n which will add a linebreak but this ...
0
votes
0answers
9 views

Pyqt Dialog run with exec_ or as modal blocks QSystemTrayIcon interaction

I have a Pyqt dialog that can be run both as non modal or as modal (per user preference). Whenever the dialog is show, a tray icon is created, which when clicked raises the dialog. However, when the ...

1 2 3 4 5 53