Tagged Questions
0
votes
0answers
7 views
Why doesn't the QPrinterDialog take the default options of each printer correctly in PySide?
I am trying to get a PrinterDialog for users to choose all the options for printing.
When I try this with PySide, the returned printer is always the same (default I guess), no matter what changes the ...
1
vote
0answers
15 views
C++-instantiated QApplication not visible by PyQt4
I have a C++/Qt application which loads a plugin (.dll/.so) using QPluginLoader facilities.
This plugin is basically an embedded python interpreter which allows to inspect Qt objects in the main ...
0
votes
1answer
30 views
Embedding Ipython into a PyQt4 App
I got Python embedded into a PyQt4 app back when it was in the beta stages and only worked on a git branch of Ipython. I haven't looked at the code for a year or so, and a LOT has changed since then ...
0
votes
1answer
30 views
PyQt: Can a QPushButton be assigned a QAction?
Using Python 3.2x and PyQT 4.8x:
I initialized an action and assigned to a menu item:
self.__actionOpen = QtGui.QAction(self.__mw)
self.__actionOpen.setObjectName("actionOpen")
...
0
votes
1answer
46 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)
...
0
votes
1answer
22 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
37 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 ...
0
votes
1answer
28 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
2answers
48 views
disable progress bar animation in Qt
Is it possible to disable animation of the progress bar in Qt and make it behave like a meter instead?
Below is the default behavior, and I would instead like it to not have the shiny wave go through ...
1
vote
0answers
33 views
How can I make a white box in PyQt?
I have a PyQt application that has a widget called Deck
class Deck(QtGui.QWidget):
def __init__(self, filename, parent):
super(Deck, self).__init__(parent)
...
0
votes
2answers
58 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
40 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
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 ?
0
votes
0answers
47 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
0answers
30 views
Having Qt.CustomizeWindowHint with Icon
On WinXP with pythonxy and the according QtDesigner etc. I have a small app where a QMainWindow calls a modal QDialog. To ensure that the close() action is performed with the pushButton I provide, I ...
0
votes
0answers
28 views
PyQt4 QTcpServer handling SSL connections
I am very new to Python and in fact all programming, but I'm trying to make a GUI with PyQt4 that receives ssl connections from a server.
Qt seems to only offer a TCP server to accept connections. ...
1
vote
2answers
27 views
PyQt4 QtGui.QSound play as a command line program?
How might one blast QSound from a command line?
Under PyQt4, playSound.py could be as simple as this:
QtGui.QSound('start.wav').play()
Except it doesn't play without an .exec() style event ...
1
vote
0answers
45 views
Python QtWebKit 2nd link not downloaded
I am trying to download the content of both the links.The first link works properly and the content is downloaded as a html file.But the content of the 2 nd link(a text file) is not downloaded.Please ...
0
votes
1answer
36 views
PyQt4 (QTabWidget) how to change position of a Tab Page
I am writing an application with PyQt and QT4. I am using a QTabWidget and have set my Tabs to closable and have connected the tabCloseRequsted signal to a method.
...
0
votes
0answers
39 views
how to draw the icon AFTER text in a QTableWidget column heading
I want to be able to expand and collapse a column in a QTableWidget. As part of the UI, I want to put an arrow icon in the column header to allow the user to click on the arrow icon to expand and ...
1
vote
2answers
137 views
Align checkable items in qTableWidget
In tableWidget I have one column entirely made up of checkable items.
I can't figure out how to center the checkbox or at least remove the text-box next to it.
As you can see on this picture ...
0
votes
0answers
31 views
How to create interactive tiled grouped list in PyQt?
I need to create smth like this:
Grouped, tiled list. Elements at groups are automatically line up by desired amount of elements in line. You can select or enter to each element, also you can hide ...
0
votes
1answer
43 views
Change non English OS to only output English in Python
I have a Win 7 Korean Edition (its korean edition, not ultimate with language pack). I am getting this error in Maya when i try to import PyQt4:
from PyQt4 import QtGui
Error: Error in ...
0
votes
1answer
51 views
Integrating CMD Module with PYQT
I am developing a texteditor using PYQT, the text editor is used for processing a DSL, one that I am making up. Now I would really like to have the ability to click on on an ICON, say a console icon ...
0
votes
0answers
30 views
How do I have a QTreeView display a list of data and a selected index as a ComboBox (in python)
I feel like I'm missing something stupid.
I have class that inherits from QAbstractItemModel and when I return a boolean I get a nice True/False combo box in one of the TreeView cells. Another piece ...
0
votes
1answer
49 views
playing video with Qt’s QtWebKit module
if you're using Google Chrome ,When you open the following link
https://d2pq0u4uni88oo.cloudfront.net/projects/79786/video-87361-h264_high.mp4
you'll see a video player ,then if you "inspect element" ...
1
vote
1answer
49 views
Get rid of Qt's dotted outline on QListView items
I'm trying to remove the dotted border on the text in this QListView::item using stylesheets:
I've tried variations of border: 0 and show-decoration-selected: 0 on QListView, QListView::item and ...
0
votes
3answers
61 views
Write a makefile with one rule for many targets?
It may seem as a very simple question, but I could not find any way to fix it.
My intention is to convert every ".ui" file into a ".py" file by invoking the pyuic4 command (from PyQt). I tried to ...
1
vote
1answer
59 views
PyQt grouping graphicsScene objects into one object
Background: I am attempting to make a griding tool using python and pyqt. Specifically I want to use the graphicsView/graphicsScene combination to allow the user to place and edit sections of grid. In ...
0
votes
1answer
59 views
Playing sound with Pyqt4 and QSound
To keep it short, after hours of looking for a way to play sound in pyqt4, I still can't figure out why this simple little code wouldn't work? I get no error message or anything, but instead of the ...
1
vote
1answer
201 views
pyqt - put color in a QTableView with existing data
i need help to color my QTableView. @rainer helped me putting color when i initialize a table, but now, i already have a table with data(but without color// my data is a csv opened in my table), and ...
1
vote
1answer
141 views
PYQT: How to capture output of python's interpreter and display it in QEditText?
With reference to the post here. Can someone give me a detailed explanation on how to append the print statement's output to the QEditext in PYQT... I tried the code given above but it was incomplete ...
0
votes
1answer
149 views
pyqt - Change row~cell collor in TableView
I Have a QTableView with 3 columns
The 2 column is about numbers, there are only 3 types. 1, -1 and 0.
I want to have different colors for this 3 "types" of numbers (1,-1,0), coloring their rows with ...
1
vote
1answer
72 views
Order of push buttons on different platforms (QButtonBox)
The QButtonBox widget automatically reorders it's buttons to meet the expectations of users on different platforms. I'd like to follow this behaviour, but with my own button labels (e.g. 'Import' ...
1
vote
2answers
89 views
Pasting QMimeData to another window's QTextEdit
I'm still quite a newbie with Python and PyQt so I have a really basic question. I have some text and images in a parent window inside a QTextEdit widget and I'm trying to copy all the content to a ...
1
vote
1answer
88 views
Inserting QImage after string in QTextEdit
I am trying to print text into QTextEdit field but for some reason the image shows up first.
Here is my code:
import sys
from PyQt4 import QtCore, QtGui
from PyQt4.QtCore import *
from PyQt4.QtGui ...
0
votes
0answers
34 views
Enforcing programmatic and interactive size constraints on a QWidget
Problem Statement
The size of a Qt QWidget should be constrained such that the width and the height are strictly adjusted according to a simple mathematical relation that is supplied at run-time. The ...
1
vote
1answer
43 views
PyQt DateEdit widget not defaulting to system time
I am creating a GUI and trying to get a date from the user using DateEdit. It works fine, except that when I start the application, the default date is 1/1/2000. How do I get the DateEdit widget to ...
0
votes
0answers
63 views
QTableWidget in QAbstractItemModel
Well I'm a newbie in Qt/PyQt and I have a question regarding the mapping to a column based QAbstractItemModel (treeview) from a QTableWidget.
I have a treemodel view with node class implementation ...
3
votes
1answer
165 views
PyQt4 Local Directory view with option to select folders
I know how to make a simple QTreeView() with a QDirModel (or QFileSystemModel) to show the files/folders in the system but I want to add a checkbox next to each of them so the user can select some of ...
0
votes
1answer
92 views
QSytemTrayIcon does not show up in Ubuntu 12.04
I have created a program that runs in the background using PyQt4. A system tray icon is created in a separate thread that allows me to interact with the main program, after its creation and placement ...
1
vote
0answers
91 views
How to make Qt tear-off menu appear in alt-tab navigation?
Qt tear-off menus don't seem to appear in Alt-tab task switcher navigation, presumably because they are not top-level widgets. That means that as soon as the torn-off menu window is obscured by ...
0
votes
0answers
101 views
event loop, QtGui.qApp.processEvents()
My question is related to QSplashScreen close on click
I don't understand, why button_clicked() method works fine first time, but second time there's no label on the dialog. And how to fix this ...
0
votes
1answer
47 views
Intellisense window using PYQT4
Hi I am trying to learn pyqt by writing my own texteditor, using pyQT one of the things i want to have is intellisense/word suggestions. i.e so that as you type in the text editor it offers you ...
0
votes
0answers
51 views
Automatically disconnect after first signal emission
I am loading a web page from a file, then i replace some of the html in it:
self.template_web_page = QtWebKit.QWebPage()
self.template_web_page.mainFrame().load(QtCore.QUrl('template.html'))
...
0
votes
1answer
157 views
Select text of textEdit object with QTextCursor, QTextEdit
I have a textEdit field and I want to process some selected text within this field (but not the format of it).
So far, I connect the button with:
...
0
votes
1answer
110 views
multi inherit from QObject and QRunnable error
I'm using pyqt4.
I have a class multi inherited from QObject and QRunnable like this:
class DownloadTask(QObject, QRunnable):
def __init__(self):
QObject.__init__(self)
...
0
votes
1answer
63 views
In Pyqt, how do I enable dragging/moving windows by the empty widget space?
Main Qt apps, and AFAIK most KDE apps let you drag windows around not just by their titlebar, but using any empty space on the window. For some reason, a basic Pyqt app like this doesn't appear to let ...
0
votes
1answer
98 views
QGraphicsItem: Why no `stackAfter` method?
I'm having an annoying time trying to get around the 'recommended' way of doing something.
So, I have a stack of cards. I want to make it so that when I deal a card, it becomes the last-drawn object ...

