Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
138 views

QDialog explicit constructor without argument - how to use correctly?

I experienced this with a derived class, but it's the same with QDialog base class: when I do QDialog dialog(); dialog.exec(); the compiler complains J:\...\mainwindow.cpp:-1: In member function ...
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
2answers
576 views

HowTo stick QDialog to Screen Borders like Skype do?

A long time ago I tried to find method how to stick QDialog window to screen borders for my small projects like Skype windows do it, but I failed. May be I was looking this code not in the right ...
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. ...
2
votes
1answer
78 views

Determining visiblity of modeless QDialog?

I'm using Qt 4.4 and my application opens a modeless QDialog that refreshes its contents every 5 seconds using a timer. That is working just fine, but I would like to have the refresh not happen when ...
2
votes
2answers
350 views

QMessageBox blocks QDialog

I don't really know how to formulate my question this time... I have my application with a QDialog as a main window. The application is getting different values like temperature, humidity and so on ...
2
votes
2answers
508 views

Qt designer - how to create QDialog?

It is possibility to create QDialog in Qt-creator like for example QForm (by clicking)? I've found several samples, but QDialog is created programmatically. I want to drag and drop buttons, listview ...
2
votes
3answers
2k views

Qt - QDialog's “?” button

I create an instance of QDialog and on the left of 'x' (close) button i have also '?' button. How I can disable that '?' ?
2
votes
1answer
964 views

Problems with QDialog in Qt

I'm using Qt for Symbian. I have some problems with a QDialog that I open from a QMenu. The QDialog shows up fine and in the QDialog I have a QDialogButtonBox with a button to Close the QDialog. BUT ...
2
votes
1answer
930 views

QPointer and deleting objects

I've got a QT App that uses QPointers to bring up new UI Dialogs (Widgets). The main app can have numerous of the same widget loaded with different data. The problem I'm having is in deleting and ...
2
votes
2answers
624 views

QDialog popping up another QDialog

I have a subclassed QDialog containing a bunch of subclassed QSpinBox's. When clicking a spinbox, a keypad (another QDialog) where you can use pushbuttons to enter digits. Both QDialog's are activated ...
1
vote
1answer
20 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 ...
1
vote
2answers
109 views

Forcing QDialog to stay open

How should I best go about forcing a QDialog to stay open when the dialog's accept() slot is called? I was thinking of reimplementing that function to get the dialog's exec to return without hiding ...
1
vote
1answer
126 views

QDialog::accept quits Main Application

I have a ClientSocket Class which is a TcpSocket in a certain state of conversation I need to ask the user to enter a Communication password. So I've created a Dialog DG::ChallangeDialog . in ...
1
vote
2answers
324 views

Change the size of Qt dialogs depending on the platform

I've got some QDialog subclasses that were designed on Windows and which are now being ported over to Mac OS X. The problem is that the default font on Mac OS X appears to be much bigger, so the ...
1
vote
1answer
300 views

Can't add minimize button to QDialog under linux

I'm trying to add a minimize button to my QDialog using this code in the constructor: Dialog::Dialog(QWidget *parent) : QDialog(parent), ui(new Ui::Dialog) { Qt::WindowFlags flags = ...
1
vote
1answer
615 views

implement a progress dialog by QDialog

I'm using QT to implement some UI program. In this program I need a progress dialog. I tried to use the build-in QProgressDialog, it works fine but in my case I need to confirm (with another dialog) ...
1
vote
1answer
496 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
0answers
13 views

Connecting QDialog to QMainWindow

I have created a QMainWindow using QT Designer. I have components that have signals slots. I've made some non-gui components QObjects so I can also use the signal/slot mechanism. My next step was to ...
0
votes
1answer
42 views

How to set QDialog not visible on exec() method?

i start QDialog with exec() method , now i like it to invisible until some inner object inside it (Qwebkit ) will finish its stuff. in the QDialog constructor i set it to : setVisible(false); ...
0
votes
1answer
56 views

Trying to write into a serial port from a QDialog.

I'm working on a graphical interface which connects a 8051 with the computer through a serial port. I can write on the port perfectly from the MainWindow through: void ...
0
votes
1answer
66 views

QMainDialog become modal if has modal QDialog as parent on Mac OS X

I create QMainWindow with parent widget which is modal QDialog. QMainWindow created as modl window ontop of dialog and doesn't has active close, minimize buttons and has grayed(unaccessable) menu. I ...
0
votes
0answers
68 views

how to remove the default button box bar in QDialog in Qt

I am not able to remove the default buttonbox in a Qdialog. I have not assigned any function to the default buttons. I removed the buttons but there is still the blank button bar. I tried creating a ...
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
122 views

QLineEdit in QDialog does not show the text that is typed in it

I am developing an application in QT For Symbian 3. I have a QDialog that takes text input from user. Everything works fine except that the text entered in QLineEdit cannot be seen. The text is there ...
0
votes
1answer
168 views

qdialog with scrollarea and gridlayout

I have a QDialog inside which I want to display 50 QComboBoxes in a 10 x 5 grid. Since so many combo boxes will not fit into my dialog box, I want to use scrolling. Here is what I've tried, but this ...
0
votes
1answer
130 views

How to make a QTextEdit fill its parent dialog?

I've been using Qt for some times, but I'm quite new to layouts. I would like to create a dialog with a QTextEdit inside, and the QTextEdit would resize to fill the whole dialog. How can I use layouts ...
0
votes
1answer
107 views

Qt QDialog choppy when calling move()

I'm trying to create a popup text editor in Qt. The problem I'm having is that since I'm making the dialog borderless, I have to call the move() function myself. This is causing some weird behaviors ...
0
votes
1answer
206 views

Custom QDialog in Qt

I want to make a qdialog with 'yes' and 'no' option on it, with the 'no' button option set default. so far I have made the 'no' button default but pressing tab or shift+tab or left arrow on keyboard ...
0
votes
1answer
226 views

Open only one instance of QDialog with show() , and also does the Object is deleted if i close the QDialog

in Qt im opening QDialog windows each time i click some item im doing it with new , i like to be sure im opening only one instance of QDialog for each item im clicking : void ...
0
votes
1answer
193 views

Added QMenuBar in QDialog it showing but sub menus dosn't open

i added QMenuBar in QDialog using layout that is set in Designer and then manully adding the QMenuBar , when running the application and the QDialog runs i see the QMenuBar with only the menu header ...
0
votes
2answers
264 views

Qt dialog how can i trigger accept() and reject() from function

i have situation that i open QDialog window from the main.cpp file and then i wait for the exec method to return . based on success or fail of the Qdialog . like this : int main( ... ) { ...
0
votes
2answers
359 views

Qt : how to implement QDialog StatusBar

i have QDialog that is heavily designed with QDesigner , i saw on the web that i could add QStatusBar with code like this : #include <QDialog> #include <QStatusBar> #include ...
0
votes
2answers
290 views

In Qt, how do I make a dialog un-resizeable, yet automatically adjusting its size to the contents?

I have an instance of QDialog, populated by widgets using code generated by uic. The dialog contains a few labels laid out vertically, and I am popping the dialog from time to time to show some text ...
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
1answer
155 views

Where is the QDialog result value stored?

If I have the QDialog result value as QDialog::Accepted, where is such value stored? And, what is the benefit of knowing such value? Thanks.
0
votes
2answers
239 views

Opening QDialog in a non-blocking manner

I have a QDialog which I open like this: void MyModule::openDialog() { this->dialog->open(); printf("Hello World"); } The dialog opens just fine, but unfortunately "Hello World" isn't ...
0
votes
2answers
606 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 ...
0
votes
1answer
471 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 ...
0
votes
2answers
1k views

How do I auto-adjust the size of a QDialog depending on the text length of one of its children?

I have a QDialog I am working with. It is made somewhat like a QMessageBox. I noticed that the size of the QMessageBox (and the size of its label) depends of the size of the message displayed. How ...