Tagged Questions
3
votes
3answers
4k views
PyQt: getting widgets to resize automatically in a QDialog
I'm having difficulty getting widgets in a QDialog resized automatically when the dialog itself is resized.
In the following program, the textarea resizes automatically if you resize the main window. ...
1
vote
1answer
72 views
QDialog not opening from Main window (pyQt)
I'm trying to launch a dialog by clicking a button in the main window: Here's the (qtdesigner generated) code which I modified just to test it .. I've set the showDial function to show the dial when ...
1
vote
3answers
120 views
PyQt:Why a popup dialog prevents execution of other code?
I am having a little problem with a pop up dialog.I have a combobox,which when the option changes it pops up a dialog with a textedit widget,do some stuff and insert some text in the textedit widget.
...
1
vote
1answer
92 views
Custom QDialog stealing fullscreen application focus and showing the taskbar
I was wondering how I can make a custom QDialog message box with my own buttons, similar to the code below.
So far I have this code, which works pretty well. The problem with this code is that it ...
1
vote
1answer
503 views
PyQt4 QDialog connections not being made
I am working on an application using PyQt4 and the designer it provides. I have a main window application that works fine, but I wanted to create custom message dialogs. I designed a dialog and set ...
0
votes
1answer
167 views
Moving a frameless QDialog with a MouseMoveEvent
So I have a frameless QDialog that I want to be able to move around simply by clicking and dragging it. Given the code below, dragging the dialog always snaps the very top-left (0,0) of the dialog to ...
0
votes
1answer
492 views
How to stop a QDialog from executing while still in the __init__ statement(or immediatly after)?
I am wondering how I can go about stopping a dialog from opening if certain conditions are met in its __init__ statement.
The following code tries to call the 'self.close()' function and it does, but ...