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. URGENT : How to Show Another Window From MainWindow in QT using c++
QtWS25 Last Chance

URGENT : How to Show Another Window From MainWindow in QT using c++

Scheduled Pinned Locked Moved Solved General and Desktop
qt creator
42 Posts 6 Posters 9.2k Views
  • 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.
  • Jasmin QuinnJ Offline
    Jasmin QuinnJ Offline
    Jasmin Quinn
    wrote on last edited by
    #1

    Hello am creating a desktop application in qt using c++ and am struggling with linking two projects together. The first project is a chess game and the second one is from where i want to start . I want to add a new QPushbutton "Play a game" then a new window will open showing the game . I added all .cpp and .h file from the first project to my project and i don't know how can i call the second window . I could've done it if it had a .ui file with just setmodel but i can't because it doesn't have one. I don't know If i am making any sense right now but i'll provide you with screenshots just so you get me more. The first project (the game): https://github.com/subeshb1/Chess

    Application.png
    game.png

    1 Reply Last reply
    0
    • mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi
      If you dont have name classhes between the projects, you can show the other windows
      by including its files the "target" project and then simply new and show the second window.

      Like
      game = new Game();
      game->show();
      game->displayMainMenu();

      Jasmin QuinnJ 1 Reply Last reply
      0
      • nageshN Offline
        nageshN Offline
        nagesh
        wrote on last edited by
        #3

        @Jasmin-Quinn If first project built executable is available, then you can run on click of button using "QProcess"
        https://doc.qt.io/qt-5/qprocess.html

        Jasmin QuinnJ 1 Reply Last reply
        1
        • mrjjM mrjj

          Hi
          If you dont have name classhes between the projects, you can show the other windows
          by including its files the "target" project and then simply new and show the second window.

          Like
          game = new Game();
          game->show();
          game->displayMainMenu();

          Jasmin QuinnJ Offline
          Jasmin QuinnJ Offline
          Jasmin Quinn
          wrote on last edited by
          #4

          @mrjj
          OUTPUT: 01:41:08: The process was ended forcefully.

          I added these lines in my .pro file:
          TARGET = Chess
          TEMPLATE = app

          and these on my mainwindow.cpp:
          void MainWindow::on_lancer_partie_clicked()
          {

          game = new Game();
          game->show();
          game->displayMainMenu();
          }

          mrjjM 1 Reply Last reply
          0
          • nageshN nagesh

            @Jasmin-Quinn If first project built executable is available, then you can run on click of button using "QProcess"
            https://doc.qt.io/qt-5/qprocess.html

            Jasmin QuinnJ Offline
            Jasmin QuinnJ Offline
            Jasmin Quinn
            wrote on last edited by Jasmin Quinn
            #5

            @nagesh Eventhough i prefer to include them all in one project can you provide me with an example of how i can run it on click using QProcess because i looked it out and couldn't find something helpful

            1 Reply Last reply
            0
            • A Offline
              A Offline
              Anonymous_Banned275
              wrote on last edited by
              #6

              @Jasmin-Quinn said in URGENT : How to Show Another Window From MainWindow in QT using c++:

              linking two projects together.

              I am not sure if I understand the above.

              Let me say this - SUB_DIRS concept is to manage multiple INDEPENDENT project. By manage I mean they are NOT running as ONE project "out of the box".

              However, with some effort they can all work as a single project.
              ( I do use QProcess)
              I am deliberately avoiding using term "linked together" - that should be reserved for real "linker".

              Utilizing SUB_DIRS concept I am using "MDI" as top project and executing SUB_DIRS "subprojects" by using "windows standard " menu driven "actions" coded in "MDI" .

              So if I understand your task to be able "link one project from another" -
              in my case "main controlling project " is "MDI" and one of my "other projects" is "scan for local Bluetooth devices"....
              The SUB_DIRS used this way may sound too convoluted - but it does aid in code reusing.

              Jasmin QuinnJ 1 Reply Last reply
              2
              • Jasmin QuinnJ Jasmin Quinn

                @mrjj
                OUTPUT: 01:41:08: The process was ended forcefully.

                I added these lines in my .pro file:
                TARGET = Chess
                TEMPLATE = app

                and these on my mainwindow.cpp:
                void MainWindow::on_lancer_partie_clicked()
                {

                game = new Game();
                game->show();
                game->displayMainMenu();
                }

                mrjjM Offline
                mrjjM Offline
                mrjj
                Lifetime Qt Champion
                wrote on last edited by
                #7

                @Jasmin-Quinn

                The process was ended forcefully.

                It means it crashed.

                I can see it also has a resource.qrc
                file which you also need for its graphics.
                (and the PNG files also, placed in sub folder)

                alt text

                So i guess thats the reason for the crash.

                Jasmin QuinnJ 1 Reply Last reply
                0
                • mrjjM mrjj

                  @Jasmin-Quinn

                  The process was ended forcefully.

                  It means it crashed.

                  I can see it also has a resource.qrc
                  file which you also need for its graphics.
                  (and the PNG files also, placed in sub folder)

                  alt text

                  So i guess thats the reason for the crash.

                  Jasmin QuinnJ Offline
                  Jasmin QuinnJ Offline
                  Jasmin Quinn
                  wrote on last edited by
                  #8

                  @mrjj Capture.PNG
                  they're all in but still same error

                  mrjjM 1 Reply Last reply
                  0
                  • Jasmin QuinnJ Jasmin Quinn

                    @mrjj Capture.PNG
                    they're all in but still same error

                    mrjjM Offline
                    mrjjM Offline
                    mrjj
                    Lifetime Qt Champion
                    wrote on last edited by
                    #9

                    @Jasmin-Quinn
                    Hi
                    The path is wrong
                    you have 2 times images and in the original example there is only one folder
                    so it still can't find the pngs

                    For test i added to a default GUI app and it just works so
                    don't give up on it. its just the image path not being correct, then it should run.

                    make sure the PNG files are in the project folder.
                    (same as where your .pro file is)
                    in a subfolder called Images
                    It cannot be in any more sub folders as then path in code is wrong.

                    Jasmin QuinnJ 1 Reply Last reply
                    0
                    • mrjjM mrjj

                      @Jasmin-Quinn
                      Hi
                      The path is wrong
                      you have 2 times images and in the original example there is only one folder
                      so it still can't find the pngs

                      For test i added to a default GUI app and it just works so
                      don't give up on it. its just the image path not being correct, then it should run.

                      make sure the PNG files are in the project folder.
                      (same as where your .pro file is)
                      in a subfolder called Images
                      It cannot be in any more sub folders as then path in code is wrong.

                      Jasmin QuinnJ Offline
                      Jasmin QuinnJ Offline
                      Jasmin Quinn
                      wrote on last edited by
                      #10

                      @mrjj Hello Sir, actually the second folder wasn't open so the pictures are only included in :/imagesCapture.PNG

                      1 Reply Last reply
                      0
                      • A Anonymous_Banned275

                        @Jasmin-Quinn said in URGENT : How to Show Another Window From MainWindow in QT using c++:

                        linking two projects together.

                        I am not sure if I understand the above.

                        Let me say this - SUB_DIRS concept is to manage multiple INDEPENDENT project. By manage I mean they are NOT running as ONE project "out of the box".

                        However, with some effort they can all work as a single project.
                        ( I do use QProcess)
                        I am deliberately avoiding using term "linked together" - that should be reserved for real "linker".

                        Utilizing SUB_DIRS concept I am using "MDI" as top project and executing SUB_DIRS "subprojects" by using "windows standard " menu driven "actions" coded in "MDI" .

                        So if I understand your task to be able "link one project from another" -
                        in my case "main controlling project " is "MDI" and one of my "other projects" is "scan for local Bluetooth devices"....
                        The SUB_DIRS used this way may sound too convoluted - but it does aid in code reusing.

                        Jasmin QuinnJ Offline
                        Jasmin QuinnJ Offline
                        Jasmin Quinn
                        wrote on last edited by
                        #11

                        @AnneRanch Thank you Sir but am a beginner and i really looked it out but could'nt find something close to my case ! can you tell me how i can run it on click using QProcess and what should i include / add in my .pro file

                        mrjjM 1 Reply Last reply
                        0
                        • Jasmin QuinnJ Jasmin Quinn

                          @AnneRanch Thank you Sir but am a beginner and i really looked it out but could'nt find something close to my case ! can you tell me how i can run it on click using QProcess and what should i include / add in my .pro file

                          mrjjM Offline
                          mrjjM Offline
                          mrjj
                          Lifetime Qt Champion
                          wrote on last edited by
                          #12

                          @Jasmin-Quinn
                          Hi
                          I looked over the code for chess.

                          Do notice it has a global variable called game it uses all over the place.
                          You must have the same in your project.

                          In main.cpp it
                          has
                          Game *game;

                          and the other modules use that.

                          Did you do the same in your project?

                          Also, do you know how to use the debugger ? It can be used to find out what crashes.
                          But might be the game variable since the images now seem fine.

                          Jasmin QuinnJ 1 Reply Last reply
                          0
                          • A Offline
                            A Offline
                            Anonymous_Banned275
                            wrote on last edited by
                            #13

                            @Jasmin-Quinn I would suggest to "back-up " a little.
                            Start with "new project" -> Application (Qt) ->Qt Widget Application
                            plain "application".

                            Now you can add a class to your one and only project.

                            Then you have a simple "display window " application and its "form" and a test class - all as one project.
                            Add "testFunction " to your class.

                            In QtDesigner add "button" and use "go to slot" - click - to build "SIGNAL /SLOT"
                            Then you have a function where you can actually test the "click button".

                            Then you add debugging - #inlcude <QDebug> - and use QDebug in your "button pushed " function to output test message. .

                            Then let the "button pushed" test function to create an instance of your class and execute the testFunction - 'button pushed".

                            That is in essence what you asking , is it not ?
                            You have "main window" "widget" and you can create another "widget" - by simply replacing the button click "show debug message" with your other "project" / window./widget.

                            All of this is done letting the QtCreator /QTDesigner do the grunt work and let them implement whatever they need - .pro etc...
                            ( From personal experience - do not mess with .pro too much)

                            And if you do make typo error - you get more meaningfull error message than the "project terminated...." Those are not that obvious to fix, but with peppering your code with QDebug messages you have an easier job.

                            When the "project terminated" happens - just use debugger , add break points and "step thru" your code until it "breaks". You may not find exact spot where the problem is, but it gets you into "hood" - "close enough for government work".
                            Best of luck coding.

                            1 Reply Last reply
                            0
                            • mrjjM mrjj

                              @Jasmin-Quinn
                              Hi
                              I looked over the code for chess.

                              Do notice it has a global variable called game it uses all over the place.
                              You must have the same in your project.

                              In main.cpp it
                              has
                              Game *game;

                              and the other modules use that.

                              Did you do the same in your project?

                              Also, do you know how to use the debugger ? It can be used to find out what crashes.
                              But might be the game variable since the images now seem fine.

                              Jasmin QuinnJ Offline
                              Jasmin QuinnJ Offline
                              Jasmin Quinn
                              wrote on last edited by
                              #14

                              @mrjj Hi sorry for my late reply, yes i added Game *game in both my main.cpp and mainwindow.h but still crashes . And no i don't know how to use the debugger can you help me?

                              1 Reply Last reply
                              0
                              • A Offline
                                A Offline
                                Anonymous_Banned275
                                wrote on last edited by
                                #15
                                1. Add #include <QDebug> to your main cpp
                                2. Add 3 qDebug line of code to constructor
                                3. Add break point @ line 12 - left click on line number (get red dot)
                                4. click "F5" to start in "debug" mode
                                5. select #3 on bottom status bar - "Application output" to observe qDebug output
                                6. click "F10 " to step into next code line
                                  etc etc .....

                                That is just about the minimal setup to use QDebug.
                                Of course there are many more options - including observing variables .

                                But that will be covered in next lesson... ( just kidding , for now )

                                b2e2275b-6a93-4a28-9ef2-e4e0d8b5fa6b-image.png

                                1 Reply Last reply
                                0
                                • A Offline
                                  A Offline
                                  Anonymous_Banned275
                                  wrote on last edited by
                                  #16

                                  I have added variable int a .
                                  Now when you "step thru" the code you can observe changes in a.
                                  Cool ?
                                  So if the variable does not have value expected....it is usually the coder's fault...

                                  bb0cb5ba-a62c-4e17-8aff-4c21bcd91467-image.png

                                  Jasmin QuinnJ 1 Reply Last reply
                                  1
                                  • A Anonymous_Banned275

                                    I have added variable int a .
                                    Now when you "step thru" the code you can observe changes in a.
                                    Cool ?
                                    So if the variable does not have value expected....it is usually the coder's fault...

                                    bb0cb5ba-a62c-4e17-8aff-4c21bcd91467-image.png

                                    Jasmin QuinnJ Offline
                                    Jasmin QuinnJ Offline
                                    Jasmin Quinn
                                    wrote on last edited by Jasmin Quinn
                                    #17

                                    @AnneRanch Hi !Thank you for your patience and time .
                                    I followed your steps and this is what i got when i clicked on the button
                                    Capture.PNG

                                    jsulmJ 1 Reply Last reply
                                    0
                                    • Jasmin QuinnJ Jasmin Quinn

                                      @AnneRanch Hi !Thank you for your patience and time .
                                      I followed your steps and this is what i got when i clicked on the button
                                      Capture.PNG

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

                                      @Jasmin-Quinn Your "game" pointer seems to be dangling pointer (not pointing to a valid instance). So, make sure game is pointing to a Game instance...

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

                                      Jasmin QuinnJ 1 Reply Last reply
                                      0
                                      • jsulmJ jsulm

                                        @Jasmin-Quinn Your "game" pointer seems to be dangling pointer (not pointing to a valid instance). So, make sure game is pointing to a Game instance...

                                        Jasmin QuinnJ Offline
                                        Jasmin QuinnJ Offline
                                        Jasmin Quinn
                                        wrote on last edited by
                                        #19

                                        @jsulm I don't understand what should I change ! I know the code works pretty fine on its own then i must've made a mistake when calling the game in my project.

                                        • Mainwindow.h
                                          mainwh.png

                                        • Mainwindow.cpp
                                          mainwincpp.png

                                        • main.cpp
                                          maincpp.png

                                        • chessboard.cpp (where the segmentation fault occured)
                                          chessboard.png

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

                                          Hi,

                                          You have static game pointer in your main.cpp file that is never initialized and that is the one used in the Chessboard class.

                                          However, the architecture is wrong. Why would you need a static Game object created somewhere and then all of a sudden the Chessboard class in need to know about it using extern ?

                                          If Chessboard really needs Game then make that relation explicit.

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

                                          Jasmin QuinnJ 1 Reply Last reply
                                          1

                                          • Login

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