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. Passing user Input to Slots
Forum Updated to NodeBB v4.3 + New Features

Passing user Input to Slots

Scheduled Pinned Locked Moved Solved General and Desktop
17 Posts 3 Posters 2.0k Views 1 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.
  • J JohnSRV

    @JonB after the User clicks the Button a Dialog Window pops up where the User can insert an IP Adress for example.

    void boxconec::Target_IP()
    {
    	QString TargetIP = QInputDialog::getText(this, "Choose Target system", "Enter the IP Address of the Target System:");
    	ui->IPAdress->setText(TargetIP);
    }
    

    So I want to pass this TargetIP Variable to a Function that connects to a QTcp Server listening under the given Address. How can I pass that information to my Client Function?

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

    @JohnSRV
    I will leave you in my colleague @mrjj's capable hands for guiding you now :)

    1 Reply Last reply
    2
    • mrjjM mrjj

      @JohnSRV
      How does you client function look like ?
      can you just add the new parameter and call it

      void boxconec::Target_IP()
      {
      	QString TargetIP = QInputDialog::getText(this, "Choose Target system", "Enter the IP Address of the Target System:");
      	ui->IPAdress->setText(TargetIP);
      ClientFunction(TargetIP);
      }
      
      J Offline
      J Offline
      JohnSRV
      wrote on last edited by
      #7

      @mrjj Hey thanks for your reply and sorry for my late Reply. My Client Function is not complete so I tried to test this with a Simple QFile.

      void BoxConnector::ProjectButtonPushed()
      {
      	QString ProjectPath_UserInput = QInputDialog::getText(this, "Project", "Enter the Path to the Project");
      	ui->Project_Path->setText(ProjectPath_UserInput);
      	QFile Project (Project_UserInput ); 
      	if (Project.exists())
      	{
      		QMessageBox msgBox; 
      		msgBox.setText("Opening the Project..");
      	}
      	else
      	{
      		QMessageBox ErrorBox; 
      		ErrorBox.setText("couldn't find the Project..");
      	}
      }
      

      I can't seem to get a Message box neither for "Opening the Project.." nor for "couldn't find with the Project". Does the User Input get passed correctly to the QFile with this Code??

      mrjjM JonBJ 2 Replies Last reply
      0
      • J JohnSRV

        @mrjj Hey thanks for your reply and sorry for my late Reply. My Client Function is not complete so I tried to test this with a Simple QFile.

        void BoxConnector::ProjectButtonPushed()
        {
        	QString ProjectPath_UserInput = QInputDialog::getText(this, "Project", "Enter the Path to the Project");
        	ui->Project_Path->setText(ProjectPath_UserInput);
        	QFile Project (Project_UserInput ); 
        	if (Project.exists())
        	{
        		QMessageBox msgBox; 
        		msgBox.setText("Opening the Project..");
        	}
        	else
        	{
        		QMessageBox ErrorBox; 
        		ErrorBox.setText("couldn't find the Project..");
        	}
        }
        

        I can't seem to get a Message box neither for "Opening the Project.." nor for "couldn't find with the Project". Does the User Input get passed correctly to the QFile with this Code??

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

        Hi
        You need to call msgBox.exec(); to have it show.
        Currently, you just set its text but dont tell it to show:=)
        https://doc.qt.io/qt-5/qmessagebox.html

        Also since you want the user to input the FULL path to a project what about using FileDialog instead so the user can browse to file and not have to type it all?

        https://doc.qt.io/qt-5/qfiledialog.html

        1 Reply Last reply
        3
        • J JohnSRV

          @mrjj Hey thanks for your reply and sorry for my late Reply. My Client Function is not complete so I tried to test this with a Simple QFile.

          void BoxConnector::ProjectButtonPushed()
          {
          	QString ProjectPath_UserInput = QInputDialog::getText(this, "Project", "Enter the Path to the Project");
          	ui->Project_Path->setText(ProjectPath_UserInput);
          	QFile Project (Project_UserInput ); 
          	if (Project.exists())
          	{
          		QMessageBox msgBox; 
          		msgBox.setText("Opening the Project..");
          	}
          	else
          	{
          		QMessageBox ErrorBox; 
          		ErrorBox.setText("couldn't find the Project..");
          	}
          }
          

          I can't seem to get a Message box neither for "Opening the Project.." nor for "couldn't find with the Project". Does the User Input get passed correctly to the QFile with this Code??

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

          @JohnSRV
          QMessageBox::setText() simply sets the text for the message box, it does not show it. You need to call QMessageBox::exec() to do that.

          1 Reply Last reply
          3
          • J Offline
            J Offline
            JohnSRV
            wrote on last edited by
            #10

            Thank you all for your help ! I solved my problem with the snippet from @mrjj

            void boxconec::Target_IP()
            {
            	QString TargetIP = QInputDialog::getText(this, "Choose Target system", "Enter the IP Address of the Target System:");
            	ui->IPAdress->setText(TargetIP);
            ClientFunction(TargetIP);
            }
            

            The Application will get more complicated where the ClientFunction returns a Value that has to be passed to another slot but I'm not there yet. As for now I'm gonna mark this question as solved.

            Thank you !

            JonBJ 1 Reply Last reply
            2
            • J JohnSRV

              Thank you all for your help ! I solved my problem with the snippet from @mrjj

              void boxconec::Target_IP()
              {
              	QString TargetIP = QInputDialog::getText(this, "Choose Target system", "Enter the IP Address of the Target System:");
              	ui->IPAdress->setText(TargetIP);
              ClientFunction(TargetIP);
              }
              

              The Application will get more complicated where the ClientFunction returns a Value that has to be passed to another slot but I'm not there yet. As for now I'm gonna mark this question as solved.

              Thank you !

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

              @JohnSRV
              What you have ended up with is fine. But be aware you have not encountered any signal/slot stuff in it. In effect, the signal/slot stuff is being hidden from you inside QInputDialog::getText(), and what you see at this level is a synchronous program.

              1 Reply Last reply
              0
              • J Offline
                J Offline
                JohnSRV
                wrote on last edited by
                #12

                Hello Everyone,

                I'm back on this topic now. I have a GUI where the User can choose which Project he wants to work with. When he pushes the Button "choose Project" a QFileDialog gets opened.

                void BoxConnector::ProjectButtonPushed()
                {
                QString ProjectPath_UserInput = QFileDialog::getOpenFileName(this, tr("Open Project"), "C:/Users/Project");
                

                Now I have many other buttons in my GUI where the user could manipulate the chosen project. How Can I pass the Path of the chosen Project to the other Slots?

                I for example have a Button where the User could insert a Simulation Step Size

                void BoxConnector::SimStepSizePushed()
                {
                	QString SimSize_UserInput = QInputDialog::getText(this, "Simulation Step Size", "Insert Simulation Step Size");
                }
                

                How Can I pass the Path of the chosen Project in the first Slot to this Slot for example so I could manipulate the Simulation Step Size of the chosen Project?

                mrjjM 1 Reply Last reply
                0
                • J JohnSRV

                  Hello Everyone,

                  I'm back on this topic now. I have a GUI where the User can choose which Project he wants to work with. When he pushes the Button "choose Project" a QFileDialog gets opened.

                  void BoxConnector::ProjectButtonPushed()
                  {
                  QString ProjectPath_UserInput = QFileDialog::getOpenFileName(this, tr("Open Project"), "C:/Users/Project");
                  

                  Now I have many other buttons in my GUI where the user could manipulate the chosen project. How Can I pass the Path of the chosen Project to the other Slots?

                  I for example have a Button where the User could insert a Simulation Step Size

                  void BoxConnector::SimStepSizePushed()
                  {
                  	QString SimSize_UserInput = QInputDialog::getText(this, "Simulation Step Size", "Insert Simulation Step Size");
                  }
                  

                  How Can I pass the Path of the chosen Project in the first Slot to this Slot for example so I could manipulate the Simulation Step Size of the chosen Project?

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

                  Hi
                  Just make
                  QString ProjectPath_UserInput;
                  a member of BoxConnector
                  so all slots and methods has access.

                  J 1 Reply Last reply
                  1
                  • mrjjM mrjj

                    Hi
                    Just make
                    QString ProjectPath_UserInput;
                    a member of BoxConnector
                    so all slots and methods has access.

                    J Offline
                    J Offline
                    JohnSRV
                    wrote on last edited by
                    #14

                    @mrjj I declared a QString in the BoxConnector.h.

                    Its Value gets set in the ProjectButtonPushed() Slot. When I call this String in another Slot it seems to be empty.

                    mrjjM 1 Reply Last reply
                    0
                    • J JohnSRV

                      @mrjj I declared a QString in the BoxConnector.h.

                      Its Value gets set in the ProjectButtonPushed() Slot. When I call this String in another Slot it seems to be empty.

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

                      @JohnSRV
                      make sure you didnt do the classic error.
                      you line should be be
                      ProjectPath_UserInput = QFileDialog::getOpenFileName(this, tr("Open Project"), "C:/Users/Project");

                      and NOT
                      QString ProjectPath_UserInput = QFileDialog::getOpenFileName(this, tr("Open Project"), "C:/Users/Project");
                      as then you still use local variable..

                      1 Reply Last reply
                      1
                      • J Offline
                        J Offline
                        JohnSRV
                        wrote on last edited by
                        #16

                        As a matter of fact I did make the classic Mistake. Thanks !!!

                        mrjjM 1 Reply Last reply
                        1
                        • J JohnSRV

                          As a matter of fact I did make the classic Mistake. Thanks !!!

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

                          @JohnSRV
                          Thats is why its a classic, very easy to do :)

                          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