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. Bind Timer with a bool variable.
Forum Updated to NodeBB v4.3 + New Features

Bind Timer with a bool variable.

Scheduled Pinned Locked Moved Unsolved General and Desktop
36 Posts 6 Posters 4.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.
  • T thomasGl

    Hey. I how can i make that label to show my counter?

    void mainWin::onCount()
    {
        if(counter==4)
        {
            labb->show();
            labb->setText("Hello World");
        }
    
    
        counter++;
        
        qDebug()<<counter;    //i want that counter to be shown with that label2
        
        label2->setText(counter);  //i want that label to show my  counter
    
    
    
    }
    
    jsulmJ Online
    jsulmJ Online
    jsulm
    Lifetime Qt Champion
    wrote on last edited by
    #27

    @thomasGl said in Bind Timer with a bool variable.:

    //i want that label to show my counter

    Then convert it to a string first using https://doc.qt.io/qt-6/qstring.html#number ...

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

    1 Reply Last reply
    0
    • T thomasGl

      Hey. I how can i make that label to show my counter?

      void mainWin::onCount()
      {
          if(counter==4)
          {
              labb->show();
              labb->setText("Hello World");
          }
      
      
          counter++;
          
          qDebug()<<counter;    //i want that counter to be shown with that label2
          
          label2->setText(counter);  //i want that label to show my  counter
      
      
      
      }
      
      JonBJ Offline
      JonBJ Offline
      JonB
      wrote on last edited by
      #28

      @thomasGl
      As you learn you need to read the documentation for yourself, not ask at every stage. QLabel::setText() accepts a QString as its argument. You have a number in counter. So look through/search the QString Class documentation page for a suitable method to convert a number to string....

      EDIT
      It seems @jsulm has already given this away. Shame! :( It's better you learn how to do programming than just ask and be told....

      jsulmJ 1 Reply Last reply
      1
      • JonBJ JonB

        @thomasGl
        As you learn you need to read the documentation for yourself, not ask at every stage. QLabel::setText() accepts a QString as its argument. You have a number in counter. So look through/search the QString Class documentation page for a suitable method to convert a number to string....

        EDIT
        It seems @jsulm has already given this away. Shame! :( It's better you learn how to do programming than just ask and be told....

        jsulmJ Online
        jsulmJ Online
        jsulm
        Lifetime Qt Champion
        wrote on last edited by jsulm
        #29

        @JonB Agree. I really wonder why so many people ask questions which can be easily answered by simply looking at documentation...

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

        1 Reply Last reply
        1
        • T Offline
          T Offline
          thomasGl
          wrote on last edited by
          #30

          Hi guys. I dont understand why the button is sometimes not clickable while moving. So i am starting the Timer with one button click and after that the button is moving but sometime its unclickable.

          void mainWindow::timerStart()   //timer is starting
          {
              if(counter==0)
              {
                  sTimer->start(1000);
          
          void MainWindow::buttonMove()  //Pushbutton random position
          {
              int x = rand() % 230;
              int y = rand() % 245;
              but->setGeometry(x, y, 50, 70);
          }
          
          
          QObject::connect(buttton,&Button::clicked,this,&MainWindow::timerStart);  //starts the timer
          
          
          QObject::connect(sTimer,&timer::timeout,this,&MainWindow::buttonMove); //every second the button is moving but i cant always click it because its unclickable i dont understand why? its a Pushbutton 
          
          jsulmJ 1 Reply Last reply
          0
          • T thomasGl

            Hi guys. I dont understand why the button is sometimes not clickable while moving. So i am starting the Timer with one button click and after that the button is moving but sometime its unclickable.

            void mainWindow::timerStart()   //timer is starting
            {
                if(counter==0)
                {
                    sTimer->start(1000);
            
            void MainWindow::buttonMove()  //Pushbutton random position
            {
                int x = rand() % 230;
                int y = rand() % 245;
                but->setGeometry(x, y, 50, 70);
            }
            
            
            QObject::connect(buttton,&Button::clicked,this,&MainWindow::timerStart);  //starts the timer
            
            
            QObject::connect(sTimer,&timer::timeout,this,&MainWindow::buttonMove); //every second the button is moving but i cant always click it because its unclickable i dont understand why? its a Pushbutton 
            
            jsulmJ Online
            jsulmJ Online
            jsulm
            Lifetime Qt Champion
            wrote on last edited by
            #31

            @thomasGl Not possible to say with the code you posted. You can create a minimal compilable application which shows this issue and share it, so others can take a look.

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

            1 Reply Last reply
            0
            • T Offline
              T Offline
              thomasGl
              wrote on last edited by
              #32

              how can i do that?

              jsulmJ 1 Reply Last reply
              0
              • T thomasGl

                how can i do that?

                jsulmJ Online
                jsulmJ Online
                jsulm
                Lifetime Qt Champion
                wrote on last edited by
                #33

                @thomasGl What exactly?

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

                1 Reply Last reply
                0
                • T Offline
                  T Offline
                  thomasGl
                  wrote on last edited by thomasGl
                  #34

                  creating a minimal compilable application and post it. Do you mean my full code?

                  jsulmJ 1 Reply Last reply
                  0
                  • T Offline
                    T Offline
                    thomasGl
                    wrote on last edited by
                    #35

                    Ok my fault it works now. I need make more timer in my code.

                    1 Reply Last reply
                    0
                    • T thomasGl

                      creating a minimal compilable application and post it. Do you mean my full code?

                      jsulmJ Online
                      jsulmJ Online
                      jsulm
                      Lifetime Qt Champion
                      wrote on last edited by
                      #36

                      @thomasGl said in Bind Timer with a bool variable.:

                      Do you mean my full code?

                      No, just a MINIMAL compilable application which shows the problem...

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

                      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