Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

272
Vistas
How to set QMainWindow as the modal one?

I am using QMainWindow for GUI development of my project..One problem I am Stuck with is blocking all other visible windows from getting input, while one is in operation.

I can not use QDialog.Because rich features of QMainWindow is required.

How can I declare a particular window as modal?

I tried with QWidget::setWindowMOdality().

Here is a demo program, what I tried but it didnt work.

#include <QApplication>
#include <QMainWindow>
#include <QPushButton>




int main(int argc, char **argv){


QApplication a(argc, argv);


    QMainWindow *w1 = new QMainWindow();
    w1->resize(500,800);
    w1->move(100,50);
    w1->show();


    QMainWindow *w2= new QMainWindow();
    w2->resize(800,500);
    w2->move(50,50);
    w2->show();

    w2->setWindowModality(Qt::ApplicationModal);


    return a.exec();

}
over 4 years ago · Santiago Trujillo
2 Respuestas
Responde la pregunta

0

Try setting the modal flag first, then show the widget.

w2->setWindowModality(Qt::ApplicationModal);
w2->show();

Also you could use QWidget and build the toolbar, menu bar and status bar.

over 4 years ago · Santiago Trujillo Denunciar

1

Thanks for your answers, it helped me a lot with blocking the main window

In each of my forms I add that line of code to the constructor

 This->setWindowModality(Qt::ApplicationModal);
about 4 years ago · Daniel Ramos Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda