Tagged Questions
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
676 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
349 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
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
13 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
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
108 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
125 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
614 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) ...
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
1answer
121 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
106 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
225 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
191 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
263 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
354 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
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
238 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
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 ...