0
votes
1answer
19 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
40 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
23 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
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
20 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 ...
0
votes
0answers
12 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. ...
0
votes
0answers
13 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
40 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 ...
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 ...
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 ...
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
94 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
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
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
1answer
27 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
45 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
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
16 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 ...
0
votes
0answers
42 views

matplotlib: Create a figure exactly overlaying an existing figure (PyQt4/PySide, MacOSX)

I am trying to get matplotlib to create a second figure exactly at the position of an existing figure. This should work even if the existing figure is partially off screen. To my great surprise, I ...
0
votes
1answer
29 views

Is is possible to use pyinstaller to build the exe with my own icon?

I am using pyinstaller 2.0 and python 2.7 to build a onedir exe from my pyqt application. Everything works well... the exe runs and shows the specified icon in the progam bar, but the icon shown for ...
0
votes
2answers
40 views

500 internal error only when running from windows (7)

Problem: the program is facing a 500 Internal Error when accessing a website using this code: (I work with PyQt) Happens only on my windows box (WIN7) and not on my linux (ubuntu 12.04 LTS) fyi they ...
0
votes
0answers
41 views

TextEditor with command Line Options

I am trying to integrate a text editor with a command-line (CMD) application, here is the background. I am writing a simple text editor that has some basic intellisense/auto-suggest features. The ...
0
votes
1answer
34 views

splash screen window opacity in PyQt4

I am devoloping an application in Python 2.6.4 and PyQt. In that application i am having a window as below This window is a splash screen. I made the window splash screen because i dont want the ...
1
vote
2answers
39 views

In Pyqt/PySide How to set different color in on cell of the TableView

I get data from database and show it on a TableView. In one cell some keywords should be more obvious to the user like warnning critical and so on. I know how to change the font color of the whole ...
0
votes
1answer
26 views

Is it possible to discover the sender of a signal using new style pyqtSignal?

Given the following code as an example I would like to know whether the receiver() function is able to discover whether w1 or w2 sent it the signal? Obviously I know that I could package this ...
0
votes
0answers
17 views

PyQt4 example working from IDLE, but not when executed from npp

I am running a very basic example in PyQt4. It is shown below. I was struggling with the Enthought Canopy installation, struggling with the cygwin Python implementation, and finally just installed ...
-5
votes
0answers
34 views

if someone decides to help me with pyqt error [closed]

Pastebin link if someone decides to help the first time you send a comment everything is fine, but when I try to send a message a second time, an error list index out of range!
0
votes
2answers
37 views

Include PyQt in an installer

I created a python module which uses PyQt. I would my application to automatically install PyQt on the computer if it is not already there. I also want my module to become an executable - cross ...
0
votes
2answers
91 views

Python PyQt: QTableWidget - get cell value based on header string and selected row

For example, I have a PyQt QTableWidget which has 3 columns and 2 rows. The column headers are labeled A, B, and C. A B C 1 2 3 4 5 6 This is the excerpt from my current source: class ...
0
votes
1answer
64 views

QNetworkReply doesn't abort/close

EDIT: I've prepared this SSCCE for your convenience: (just run it) from PyQt4 import QtCore, QtGui, QtNetwork from PyQt4.QtCore import * from PyQt4.QtGui import * from PyQt4.QtNetwork import ...
0
votes
1answer
45 views

Use Python class in another file, with packages it uses

I'm really new to Python and its usage. I created a Python UI with PyQt. from PyQt4 import QtCore, QtGui try: _fromUtf8 = QtCore.QString.fromUtf8 except AttributeError: def _fromUtf8(s): ...
0
votes
1answer
37 views

How do I get the or set the native highlight color of a QWidget?

I have created a custom QWidgetAction to offer two menu options; some text and a delete icon. I can easily control the highlight color through :hover in the a stylesheet, but I don't want to ...

1 2 3 4 5 37