Tagged Questions
0
votes
0answers
9 views
Remove top bar of gui in qt
In either qt designer (preferably) or python, is there a way to remove the standard windows top bar and replace it with my own, or at least format it. This is similar to how the new versions of ...
-1
votes
1answer
26 views
Mac Python Easy Install
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 ...
0
votes
0answers
9 views
Including FUSE sshFS functionality in my PyQt app
I am writing an application that wants to mount a remote file system over SSH. Instead of writing a custom SSH browser, I am tempted to -somehow- bundle MacFUSE (or something) with the application. ...
0
votes
1answer
15 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
1answer
17 views
Arranging pyqt combobox in toolbar
I have made a toolbar in qt designer with a few buttons. I have found some answers on stack that say you can not add a combobox in qt designer. With this I found an example of adding it manually. ...
0
votes
1answer
59 views
Use QlineEdit to udpate SQLite database in PyQt
I am trying to get multiple QLineEdit objects to update on clicking a submit pushbutton to the SQLite db. I also have a QTableView that displays the db. The submit button adds a row to the database ...
0
votes
1answer
17 views
Remove block from QTextDocument
I need to remove some paragraphs from QTextDocument. I have tried code from this topic: Remove a line/block from QTextEdit, but QTextDocument.drawContents outputs empty line in place of removed block.
...
0
votes
1answer
21 views
Python: PyQt QPixmap returns Null for a valid image
I'm trying to load this .tiff image into my gui interface using PyQt's QPixmap. I have the following code:
fileName = QFileDialog.getOpenFileName(self.parent, "Open Image", "/", "Image Files (*.png ...
0
votes
0answers
16 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 ...
1
vote
1answer
23 views
How to add data to QTableWidget using PySide
the answers to this question is either in C++ or doesn't really answer my question.
I'm learning python, I'm not professional programmer, I have learned the language but have not build live ...
0
votes
0answers
33 views
How are default arguments handled in pyqt?
In Qt, you have this routine (among others) in QAbstractItemModel
bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex());
Which basically instantiates a new QModelIndex ...
0
votes
2answers
13 views
Pyqt range input widget and python ranges
I want to create pyqt widget like in MS Office or OOo print dialogs, that allows to input sets of ranges like "1, 3-4, 7-9". Does python have built-in tool or third party package for converting such ...
1
vote
2answers
367 views
PyQt app: gif files don't show after compiling with py2exe
For some reason on my system (Windows XP 32-bit, Python 2.6) PyQt is able to display gifs perfectly when run in the python interpreter, but when I run it through py2exe, they no longer display.
I've ...
1
vote
1answer
21 views
How to access GUI elements from another thread in PyQt
I'm trying to create a client-server application, and when the server closes I wish that client GUI to close, wich is running on another thread. I wish to access the GUI and close but I get X error : ...
0
votes
1answer
27 views
eric5(python IDE):how to disappear the “Run Script” dialog
eric5(python IDE):how to disappear the "Run Script" dialog
what bother me is that everytime I press F2 , the "Run Script" dialog always pops up ,but I hardly ever use it ,so how to disappear the "Run ...