Tagged Questions

3
votes
2answers
678 views

Non-pixelized rounded corner for top-level window

I want to set rounded corners on a QDialog. Since it is a top-level window, border-radius doesn't work, so I've to do this : QRegion EnterPinDialog::roundedRect(const QRect& rect, int r) { ...
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
23 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
104 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
82 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 ...
0
votes
0answers
65 views

how to pop up pyqt QDialog in another kde workspace?

how could i tell the qDialog to popup in current workspace if its parent is in another workspace ? by default, it pops up in the same workspace as its parent this is my script , it runs in maya 2011, ...
0
votes
1answer
149 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
2answers
607 views

PyQt: How can I quit a QDialog?

I've build a QDialog Widget. My problem is, I can't quit the QDialog. If I press one of the buttons, then the QDialog is only set to "hide". Here is a little part of the code. It is executable. I ...