Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QMessageBox showing "Loading...."
Qt 6.11 is out! See what's new in the release blog

QMessageBox showing "Loading...."

Scheduled Pinned Locked Moved Unsolved General and Desktop
32 Posts 7 Posters 14.1k Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • GuapoG Guapo

    I didn´t change the stylesheet.

    This is the second class called in my program...the first one is for login.

    If I change msgBox.show to msgBox.exec...it´s ok, but don´t load my library until press "ok" button.

    This is the entire constructor class:

    Principal::Principal(QWidget *parent) :
        QDialog(parent),
        ui(new Ui::Principal)
    {
        ui->setupUi(this);
    
        QPixmap pix(QString("%1%2").arg(path_images,"selo_sabordelivery.png"));
        ui->label_pic_2->setPixmap(pix);
        ui->label_pic_3->setPixmap(pix);
        ui->label_pic_3->setPixmap(pix);
        ui->label_pic_4->setPixmap(pix);
        ui->label_pic_5->setPixmap(pix);
    
        ui->label_nomeuser->setText(user_logado);
        ui->label_status->setText(Utility::JobTitle(user_tipo));
        ui->label_nome->setText(user_nome);
    
        qDebug() << user_logado << user_status;
    
        conn.connOpen();
    
        QDateTime timeConvertor=QDateTime::currentDateTime();
        QDateTime licenca;
    
        QString validade=lerlicenca();
        licenca = QDateTime::fromString(validade, "dd/MM/yyyy");
        if(licenca.toTime_t()>=timeConvertor.toTime_t())
            validade_ok=true;
        qDebug() << validade << validade_ok;
    
        Acesso();
    
        ui->label_versao->setText(VERSAO);
    
        model_loja=new QSqlQueryModel();
        lerloja(model_loja);
        config=model_loja->record(0).value(4).toInt();
        qDebug() << config;
    
        LerModos();
    
        QMessageBox msgBox;
        msgBox.setText("Lendo Biblioteca SAT.");
        msgBox.setWindowTitle("Aguarde carregamento...");
        msgBox.setWindowModality(Qt::WindowModal);
        msgBox.setStyleSheet("background-color:#0F1418;color:white;font-size:11pt");
        msgBox.setVisible(true);
        msgBox.show();
    
        if(nomesat!="")
            carregarDarumaFramework(this);
    }
    

    tks

    jsulmJ Offline
    jsulmJ Offline
    jsulm
    Lifetime Qt Champion
    wrote on last edited by
    #9

    @Guapo I don't think the dialog is transparent. It looks more like your dialog/app is hanging and so not updating/painting the UI. Do you block the event loop somewhere?

    https://forum.qt.io/topic/113070/qt-code-of-conduct

    1 Reply Last reply
    1
    • JonBJ Offline
      JonBJ Offline
      JonB
      wrote on last edited by JonB
      #10

      Exactly as @jsulm says above. No stylesheet, rather this is what a window/message box looks like when it has "started" to be shown but has not "completed", as in some shape or form your app is "blocking"/looping" where it needs to allow the main event loop to be processing events....

      1 Reply Last reply
      0
      • GuapoG Offline
        GuapoG Offline
        Guapo
        wrote on last edited by
        #11

        @Venkatesh-V said in Qmessagebox showing "Loading....":

        ApplicationModal

        I tried ApplicationModal, NonModal and WindowModal...nok!

        I have no blocked anything because this is the beginning of my aplication....

        1)read user/password (first screen)
        2)read third party library and open main screen. (2nd screen)

        This messagebox is inside of the main screen constructor.

        LerModos -> function read sqltable
        ...
        carregarDarumaFramework -> load a huge third party library

        tks

        JonBJ 1 Reply Last reply
        0
        • GuapoG Guapo

          @Venkatesh-V said in Qmessagebox showing "Loading....":

          ApplicationModal

          I tried ApplicationModal, NonModal and WindowModal...nok!

          I have no blocked anything because this is the beginning of my aplication....

          1)read user/password (first screen)
          2)read third party library and open main screen. (2nd screen)

          This messagebox is inside of the main screen constructor.

          LerModos -> function read sqltable
          ...
          carregarDarumaFramework -> load a huge third party library

          tks

          JonBJ Offline
          JonBJ Offline
          JonB
          wrote on last edited by
          #12

          @Guapo
          I could be way, way out on this... but I still suspect painting/event loop...
          You're halfway thru constructing a "man screen" (QMainWindow?) when you decide to put up a message box...
          Temporarily, why don't you move the message box later, after the main screen has been constructed and shown, and then see? At least that will eliminate stylesheets etc.

          1 Reply Last reply
          1
          • SGaistS Offline
            SGaistS Offline
            SGaist
            Lifetime Qt Champion
            wrote on last edited by
            #13

            To complement what @JNBarchan suggests, you should likely move the library loading part outside the constructor of your MainWidget since it's not related to the contraction of that widget.

            Basically, create your gui elements and once that's done, trigger the loading/setup of whatever is needed.

            Interested in AI ? www.idiap.ch
            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

            1 Reply Last reply
            3
            • GuapoG Offline
              GuapoG Offline
              Guapo
              wrote on last edited by
              #14

              I did make some changes...

              The first action of my app is ask for user/pass to login on.

              There is a "Login" button to check these credencials.

              After check user and pass I put this library load and my &$&#$%%@# QMessagebox.

              When this load finish, I call the Principal class ( that shows the main screen ).

              The old code had this Principal class constructor to load this library.

              Now I´m loading this library out of any constructor and the results are exactly I the same.

              JonBJ 1 Reply Last reply
              0
              • GuapoG Guapo

                I did make some changes...

                The first action of my app is ask for user/pass to login on.

                There is a "Login" button to check these credencials.

                After check user and pass I put this library load and my &$&#$%%@# QMessagebox.

                When this load finish, I call the Principal class ( that shows the main screen ).

                The old code had this Principal class constructor to load this library.

                Now I´m loading this library out of any constructor and the results are exactly I the same.

                JonBJ Offline
                JonBJ Offline
                JonB
                wrote on last edited by JonB
                #15

                @Guapo
                But are you calling the Message Box creation after you have entered the main Qt event loop (like app.exec_()) which has allowed the main window to finish drawing correctly? Or, possibly, very early, before you have started creating your QMainWindow? Or, what's this "third-party library" you're talking about, could that be interfering, why can't you eliminate that and see if it's relevant?

                It's up to you whether you want to try these things. But if you don't, I could be wrong but it seems to me nobody here is going to have a solution for you....

                1 Reply Last reply
                0
                • GuapoG Offline
                  GuapoG Offline
                  Guapo
                  wrote on last edited by Guapo
                  #16

                  @JNBarchan

                  The Login Class is my QMainWindow.

                  int main(int argc, char *argv[])
                  {
                      QApplication a(argc, argv);
                      Login w;
                  
                      w.show();
                  
                      return a.exec();
                  }
                  
                  ........
                  
                  Login::Login(QWidget *parent) :
                      QMainWindow(parent),
                      ui(new Ui::Login)
                  {
                      ui->setupUi(this);
                  
                      path_images=QString("%1/images/").arg(QDir::currentPath());
                      QPixmap pix(QString("%1%2").arg(path_images,"selo_sabordelivery.png"));
                   //   QPixmap pix("/mnt/midia4/prj/qt/sql/sql_app/selo_sabordelivery.png");
                      ui->label_pic->setPixmap(pix);
                  
                      if(!connOpen())
                          ui->label_db->setText("Falha ao conectar DataBase");
                      else
                          ui->label_db->setText("DataBase Conectado...");
                  }
                  

                  and I´m loading my library (.so) inside this class...This class has a GUI.

                  I put this message before loading library and didn´t show anything....I´m trying to understand what is going on.

                  tks

                  jsulmJ 1 Reply Last reply
                  0
                  • GuapoG Guapo

                    @JNBarchan

                    The Login Class is my QMainWindow.

                    int main(int argc, char *argv[])
                    {
                        QApplication a(argc, argv);
                        Login w;
                    
                        w.show();
                    
                        return a.exec();
                    }
                    
                    ........
                    
                    Login::Login(QWidget *parent) :
                        QMainWindow(parent),
                        ui(new Ui::Login)
                    {
                        ui->setupUi(this);
                    
                        path_images=QString("%1/images/").arg(QDir::currentPath());
                        QPixmap pix(QString("%1%2").arg(path_images,"selo_sabordelivery.png"));
                     //   QPixmap pix("/mnt/midia4/prj/qt/sql/sql_app/selo_sabordelivery.png");
                        ui->label_pic->setPixmap(pix);
                    
                        if(!connOpen())
                            ui->label_db->setText("Falha ao conectar DataBase");
                        else
                            ui->label_db->setText("DataBase Conectado...");
                    }
                    

                    and I´m loading my library (.so) inside this class...This class has a GUI.

                    I put this message before loading library and didn´t show anything....I´m trying to understand what is going on.

                    tks

                    jsulmJ Offline
                    jsulmJ Offline
                    jsulm
                    Lifetime Qt Champion
                    wrote on last edited by
                    #17

                    @Guapo said in Qmessagebox showing "Loading....":

                    connOpen

                    what does this one do?

                    https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    0
                    • GuapoG Offline
                      GuapoG Offline
                      Guapo
                      wrote on last edited by Guapo
                      #18

                      connOpen only it´s makes a MySql conection

                      bool connOpen(){

                          lerconf();  // read text file
                      
                          mydb=QSqlDatabase::addDatabase("QMYSQL");
                          mydb.setDatabaseName("controle_restaurante");
                      
                          mydb.setHostName(database_nome);
                          mydb.setPort(database_port.toInt());
                          mydb.setUserName(database_user);
                          mydb.setPassword(database_senha);
                      
                          if(!mydb.open()){
                              qDebug() << "Falha ao conectar ao DataBase" << mydb.lastError().text();
                              return false;
                          }
                          else{
                              qDebug() << ("Conectado...");
                              return true;
                          }
                      
                      }
                      
                      1 Reply Last reply
                      0
                      • SGaistS Offline
                        SGaistS Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on last edited by
                        #19

                        Do you mean you want to have some sort of splash screen while that library is being loaded ?

                        Out of curiosity, why do you need to load it by hand ?

                        Interested in AI ? www.idiap.ch
                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                        1 Reply Last reply
                        1
                        • GuapoG Offline
                          GuapoG Offline
                          Guapo
                          wrote on last edited by Guapo
                          #20

                          This is for restaurant app. Here in Brazil, all restaurants needs a device called SAT, connected to USB and the internet (to send all sales data to our beloved government) :). This device has its own library to create a sale invoice and send all data to government.
                          Load by hand is the way used to access the internal functions.
                          I don´t know another way to acess internal function from a .dll or .so .
                          My intention is open a screen to warning loading, because the user could think software is crashed. This library takes a several seconds to load.

                          jsulmJ 1 Reply Last reply
                          0
                          • GuapoG Guapo

                            This is for restaurant app. Here in Brazil, all restaurants needs a device called SAT, connected to USB and the internet (to send all sales data to our beloved government) :). This device has its own library to create a sale invoice and send all data to government.
                            Load by hand is the way used to access the internal functions.
                            I don´t know another way to acess internal function from a .dll or .so .
                            My intention is open a screen to warning loading, because the user could think software is crashed. This library takes a several seconds to load.

                            jsulmJ Offline
                            jsulmJ Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on last edited by
                            #21

                            @Guapo said in Qmessagebox showing "Loading....":

                            I don´t know another way to acess internal function from a .dll or .so

                            Usually you link your app against a library to use it.
                            See http://doc.qt.io/qtcreator/creator-project-qmake-libraries.html

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            GuapoG 1 Reply Last reply
                            0
                            • jsulmJ jsulm

                              @Guapo said in Qmessagebox showing "Loading....":

                              I don´t know another way to acess internal function from a .dll or .so

                              Usually you link your app against a library to use it.
                              See http://doc.qt.io/qtcreator/creator-project-qmake-libraries.html

                              GuapoG Offline
                              GuapoG Offline
                              Guapo
                              wrote on last edited by
                              #22

                              @jsulm

                              when I tried to use this library, my first option was
                              at my .pro file

                              LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework

                              But I cannot exec the internal function ( ex: rVerificarComunicacao_SAT_Daruma() ).

                              So, I received from the library owner a file to load it´s library and execute internal functions;

                                       bibliotecaDinamica = dlopen("./libDarumaFramework.so", RTLD_NOW); 
                              

                              This is working!

                              Today, I tried to include this line at my .pro file

                              LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework -ldl

                              The library loading is during the aplication load....I can exec the internal function.

                              But this is all inside the Qt Creator....when I tried to exec my aplication from the CL, there is a segmentation fault.
                              I need more information, but this note is only to update you that I´m studying your hint.

                              tks

                              JonBJ 1 Reply Last reply
                              0
                              • GuapoG Guapo

                                @jsulm

                                when I tried to use this library, my first option was
                                at my .pro file

                                LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework

                                But I cannot exec the internal function ( ex: rVerificarComunicacao_SAT_Daruma() ).

                                So, I received from the library owner a file to load it´s library and execute internal functions;

                                         bibliotecaDinamica = dlopen("./libDarumaFramework.so", RTLD_NOW); 
                                

                                This is working!

                                Today, I tried to include this line at my .pro file

                                LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework -ldl

                                The library loading is during the aplication load....I can exec the internal function.

                                But this is all inside the Qt Creator....when I tried to exec my aplication from the CL, there is a segmentation fault.
                                I need more information, but this note is only to update you that I´m studying your hint.

                                tks

                                JonBJ Offline
                                JonBJ Offline
                                JonB
                                wrote on last edited by JonB
                                #23

                                @Guapo said in Qmessagebox showing "Loading....":

                                         bibliotecaDinamica = dlopen("./libDarumaFramework.so", RTLD_NOW); 
                                

                                But this is all inside the Qt Creator....when I tried to exec my aplication from the CL, there is a segmentation fault.

                                1. You need to check the return result of dlopen, as it may fail? Do you proceed to use bibliotecaDinamica without verifying its value?

                                2. ./libDarumaFramework.so is a relative path; it must be found in the current directory. Is your current directory right for this while running from QtCreator, but something else when run from the command line? (I don't know what dlopen's behaviour is exactly, but you might be better with plain libDarumaFramework.so without the leading ./.) Have you put the library in the same directory as your executable, along LD_LIBRARY_PATH, or what?

                                GuapoG 1 Reply Last reply
                                0
                                • JonBJ JonB

                                  @Guapo said in Qmessagebox showing "Loading....":

                                           bibliotecaDinamica = dlopen("./libDarumaFramework.so", RTLD_NOW); 
                                  

                                  But this is all inside the Qt Creator....when I tried to exec my aplication from the CL, there is a segmentation fault.

                                  1. You need to check the return result of dlopen, as it may fail? Do you proceed to use bibliotecaDinamica without verifying its value?

                                  2. ./libDarumaFramework.so is a relative path; it must be found in the current directory. Is your current directory right for this while running from QtCreator, but something else when run from the command line? (I don't know what dlopen's behaviour is exactly, but you might be better with plain libDarumaFramework.so without the leading ./.) Have you put the library in the same directory as your executable, along LD_LIBRARY_PATH, or what?

                                  GuapoG Offline
                                  GuapoG Offline
                                  Guapo
                                  wrote on last edited by
                                  #24

                                  @JNBarchan

                                  Yes...my library is on the same directory as my executable.

                                  int main(int argc, char *argv[])
                                  {
                                  QApplication a(argc, argv);

                                  qDebug()<< "inicio";
                                  
                                  Login w;
                                  
                                  w.show();
                                  
                                  return a.exec();
                                  

                                  }

                                  The segmentation fault occours before "inicio". (only executing in CL at the directory where are all files....this code is ok executing inside the Qt Creator ).

                                  jsulmJ 1 Reply Last reply
                                  0
                                  • GuapoG Guapo

                                    @JNBarchan

                                    Yes...my library is on the same directory as my executable.

                                    int main(int argc, char *argv[])
                                    {
                                    QApplication a(argc, argv);

                                    qDebug()<< "inicio";
                                    
                                    Login w;
                                    
                                    w.show();
                                    
                                    return a.exec();
                                    

                                    }

                                    The segmentation fault occours before "inicio". (only executing in CL at the directory where are all files....this code is ok executing inside the Qt Creator ).

                                    jsulmJ Offline
                                    jsulmJ Offline
                                    jsulm
                                    Lifetime Qt Champion
                                    wrote on last edited by
                                    #25

                                    @Guapo If you want to execute your app outside of QtCreator you need to deploy it.
                                    See http://doc.qt.io/qt-5/deployment.html

                                    https://forum.qt.io/topic/113070/qt-code-of-conduct

                                    GuapoG 1 Reply Last reply
                                    0
                                    • jsulmJ jsulm

                                      @Guapo If you want to execute your app outside of QtCreator you need to deploy it.
                                      See http://doc.qt.io/qt-5/deployment.html

                                      GuapoG Offline
                                      GuapoG Offline
                                      Guapo
                                      wrote on last edited by
                                      #26

                                      @jsulm

                                      I´m trying do execute my aplication only for tests. I´m executing it at the same folder as compiled.

                                      When I do not use this line:

                                      LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework -ldl

                                      It is possible execute it from CL.

                                      When I need to make deployment, I´ve used linuxdeployqt script.

                                      jsulmJ 1 Reply Last reply
                                      0
                                      • GuapoG Guapo

                                        @jsulm

                                        I´m trying do execute my aplication only for tests. I´m executing it at the same folder as compiled.

                                        When I do not use this line:

                                        LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework -ldl

                                        It is possible execute it from CL.

                                        When I need to make deployment, I´ve used linuxdeployqt script.

                                        jsulmJ Offline
                                        jsulmJ Offline
                                        jsulm
                                        Lifetime Qt Champion
                                        wrote on last edited by
                                        #27

                                        @Guapo You can set LD_LIBRARY_PATH to point to the directory where this lib is and then start your app, see http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html

                                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                                        GuapoG 1 Reply Last reply
                                        0
                                        • jsulmJ jsulm

                                          @Guapo You can set LD_LIBRARY_PATH to point to the directory where this lib is and then start your app, see http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html

                                          GuapoG Offline
                                          GuapoG Offline
                                          Guapo
                                          wrote on last edited by Guapo
                                          #28

                                          @jsulm excuse me for this delay.

                                          I found a performance problem and I need to fix it before.

                                          I don´t know if it´s better open a new point to discuss.

                                          This code has an answer in 1sec. This exec a function "EnviarDadosVenda" from my external lib.

                                          
                                          #include <dlfcn.h>
                                          #include <stdio.h>
                                          #include <stdlib.h>
                                          #include <string.h>
                                          #include <inttypes.h>
                                          #include <time.h>
                                          
                                          #include "helpers.c"
                                          
                                          int main(int argc, char *argv[]) 
                                          {
                                          	char * (*_EnviarDadosVenda) (int, char *, char *);
                                          
                                          	void * handle;
                                          	char * error;
                                          	char * resposta;
                                          	char cXML[5000];
                                          
                                          	strcpy(cXML, "this is for XML");
                                          
                                          	handle = dlopen ("./libsat.so", RTLD_LAZY);
                                          
                                          	_EnviarDadosVenda = dlsym(handle, "EnviarDadosVenda");
                                          
                                              typedef char* (*funcao)(int, char*, char*);
                                              funcao runGui = (funcao)dlsym(handle, "EnviarDadosVenda");
                                          
                                              resposta = runGui(_sessao(),"12345678", cXML);  // 1sec to return data
                                          
                                          	printf("======================================================\n");
                                          	printf("\nExecutando funcao: _EnviarDadosVenda2\n");
                                          	printf("\nRetorno: %s\n\n", (char *) resposta);
                                          	printf("==++==================================================\n");
                                          }
                                          
                                          

                                          This function, running in qt, runs the same code in 16 secs. It´s the same function and the same lib.

                                          char * EnviarDadosVenda2_libsat(int numerossessao, QString codigoativacao, QString pszXML){
                                              char * resposta;
                                              char cXML[1100];
                                          
                                              QDateTime agora=QDateTime::currentDateTime();
                                              char* _EnviarDadosVenda(int , char*, char*);
                                          
                                              strcpy(cXML, "My XML data");
                                          
                                              void* handle = dlopen("./libsat.so", RTLD_LAZY);
                                          
                                              typedef char* (*funcao)(int, char*, char*);
                                              funcao runGui = (funcao)dlsym(handle, "EnviarDadosVenda");
                                          
                                              qDebug() << "Vai executar EnviarDadosVenda2_libsat";
                                          
                                              resposta = runGui(numerossessao,"12345678", cXML);  // 16 seconds to return data
                                          
                                              qDebug() << "saiu EnviarDadosVenda2_libsat " << QDateTime::currentDateTime().toTime_t()-agora.toTime_t();
                                          
                                              return resposta;
                                          
                                          }
                                          
                                          
                                          jsulmJ 1 Reply Last reply
                                          0

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved