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. How to prevent the mouse click event from happening when the button is Disabled

How to prevent the mouse click event from happening when the button is Disabled

Scheduled Pinned Locked Moved Unsolved General and Desktop
42 Posts 6 Posters 13.8k 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.
  • J jsulm
    26 Jun 2019, 04:51

    @ManiRon You mean this is the code in the slot connected to clicked() signal?
    What about my other questions? Can you answer them?

    M Offline
    M Offline
    ManiRon
    wrote on 26 Jun 2019, 04:53 last edited by
    #9

    @jsulm I am using a style sheet , so i am not able to see whether the button is greyed out , i create a change in color when it is pressed , the color remains the same till the button is enabled

    J 1 Reply Last reply 26 Jun 2019, 04:55
    0
    • M ManiRon
      26 Jun 2019, 04:53

      @jsulm I am using a style sheet , so i am not able to see whether the button is greyed out , i create a change in color when it is pressed , the color remains the same till the button is enabled

      J Offline
      J Offline
      jsulm
      Lifetime Qt Champion
      wrote on 26 Jun 2019, 04:55 last edited by
      #10

      @ManiRon Are you sure you're disabling the correct button?
      As I said: I can't reproduce such behaviour, there must be something in your code.
      Also you can disable your style sheet and test again.
      And to be sure: in the title you're talking about event, but you mean clicked() signal, correct?

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

      M 1 Reply Last reply 26 Jun 2019, 04:56
      1
      • J jsulm
        26 Jun 2019, 04:55

        @ManiRon Are you sure you're disabling the correct button?
        As I said: I can't reproduce such behaviour, there must be something in your code.
        Also you can disable your style sheet and test again.
        And to be sure: in the title you're talking about event, but you mean clicked() signal, correct?

        M Offline
        M Offline
        ManiRon
        wrote on 26 Jun 2019, 04:56 last edited by
        #11

        @jsulm Yes clicked signal

        1 Reply Last reply
        0
        • M ManiRon
          25 Jun 2019, 12:24

          I want to disable the click event for a QPushbutton when it is disabled, whether it can be done ?

          J Offline
          J Offline
          J.Hilk
          Moderators
          wrote on 26 Jun 2019, 04:59 last edited by
          #12

          @ManiRon
          can you create a minimal example?

          In fact you should!
          Or maybe @jsulm can share his for you ;)


          Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


          Q: What's that?
          A: It's blue light.
          Q: What does it do?
          A: It turns blue.

          J 1 Reply Last reply 26 Jun 2019, 05:04
          0
          • J J.Hilk
            26 Jun 2019, 04:59

            @ManiRon
            can you create a minimal example?

            In fact you should!
            Or maybe @jsulm can share his for you ;)

            J Offline
            J Offline
            jsulm
            Lifetime Qt Champion
            wrote on 26 Jun 2019, 05:04 last edited by
            #13

            @J.Hilk @ManiRon It's as simple as

            connect(ui->pushButton, &QPushButton::clicked, [this](bool){ qDebug() << "Clicked"; ui->pushButton->setDisabled(true);});
            

            And I'm still interested in an answer to this question: Are you sure you're disabling the correct button?

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

            M 2 Replies Last reply 26 Jun 2019, 05:12
            0
            • P Offline
              P Offline
              Pradeep P N
              wrote on 26 Jun 2019, 05:12 last edited by Pradeep P N
              #14

              @jsulm @J-Hilk

              I think the problem here for @ManiRon is the style sheet for the QPushButton

              The Button is actually disabled on Click, but due to the StyleSheet the color difference is not found.

              
              void MainWindow::on_pushButton_clicked()
              {
                  qDebug() << Q_FUNC_INFO;
                  ui->label->setText("Button is Disabled");
                  ui->pushButton->setEnabled(false);
              }
              

              0_1561526021909_Btn.gif

              Pradeep Nimbalkar.
              Upvote the answer(s) that helped you to solve the issue...
              Keep code clean.

              1 Reply Last reply
              3
              • J jsulm
                26 Jun 2019, 05:04

                @J.Hilk @ManiRon It's as simple as

                connect(ui->pushButton, &QPushButton::clicked, [this](bool){ qDebug() << "Clicked"; ui->pushButton->setDisabled(true);});
                

                And I'm still interested in an answer to this question: Are you sure you're disabling the correct button?

                M Offline
                M Offline
                ManiRon
                wrote on 26 Jun 2019, 05:12 last edited by
                #15

                @jsulm Yes Actually i am disabling the button for 3sec only so it accepts the signal again after 3sec , which i came to know when i printed the time with seconds

                1 Reply Last reply
                0
                • J jsulm
                  26 Jun 2019, 05:04

                  @J.Hilk @ManiRon It's as simple as

                  connect(ui->pushButton, &QPushButton::clicked, [this](bool){ qDebug() << "Clicked"; ui->pushButton->setDisabled(true);});
                  

                  And I'm still interested in an answer to this question: Are you sure you're disabling the correct button?

                  M Offline
                  M Offline
                  ManiRon
                  wrote on 26 Jun 2019, 05:14 last edited by
                  #16

                  @jsulm I think the problem here is the timeout that i have given , i think its less

                  P 1 Reply Last reply 26 Jun 2019, 05:22
                  0
                  • M ManiRon
                    26 Jun 2019, 05:14

                    @jsulm I think the problem here is the timeout that i have given , i think its less

                    P Offline
                    P Offline
                    Pradeep P N
                    wrote on 26 Jun 2019, 05:22 last edited by Pradeep P N
                    #17

                    @ManiRon
                    I just tried with Timer it works fine.
                    The Button is disabled for 3s.

                    • Check with your stylesheet.
                    MainWindow::MainWindow(QWidget *parent) :
                        QMainWindow(parent),
                        ui(new Ui::MainWindow)
                    {
                        ui->setupUi(this);
                        ui->label->setVisible(false);
                    
                        tmr = new QTimer(this);
                        connect(tmr, &QTimer::timeout, [this]{
                            ui->pushButton->setEnabled(true);
                        });
                    }
                    
                    void MainWindow::on_pushButton_clicked()
                    {
                        qDebug() << Q_FUNC_INFO << QTime::currentTime().toString();
                    
                        tmr->start();
                        tmr->setInterval(3000);
                    
                        ui->pushButton->setEnabled(false);
                    }
                    

                    0_1561526880214_Btn.gif

                    Pradeep Nimbalkar.
                    Upvote the answer(s) that helped you to solve the issue...
                    Keep code clean.

                    M 1 Reply Last reply 26 Jun 2019, 05:37
                    3
                    • P Offline
                      P Offline
                      Pradeep P N
                      wrote on 26 Jun 2019, 05:37 last edited by Pradeep P N
                      #18

                      Hi @ManiRon

                      Try this with your setStyleSheet()

                      ui->pushButton->setStyleSheet("QPushButton {"
                                                    "background-color:#44c767;"
                                                    "}"
                                                    "QPushButton:disabled {"
                                                    "background-color:gray;"
                                                    "}");
                      

                      0_1561527474438_Btn.gif
                      All the best.

                      Pradeep Nimbalkar.
                      Upvote the answer(s) that helped you to solve the issue...
                      Keep code clean.

                      1 Reply Last reply
                      4
                      • P Pradeep P N
                        26 Jun 2019, 05:22

                        @ManiRon
                        I just tried with Timer it works fine.
                        The Button is disabled for 3s.

                        • Check with your stylesheet.
                        MainWindow::MainWindow(QWidget *parent) :
                            QMainWindow(parent),
                            ui(new Ui::MainWindow)
                        {
                            ui->setupUi(this);
                            ui->label->setVisible(false);
                        
                            tmr = new QTimer(this);
                            connect(tmr, &QTimer::timeout, [this]{
                                ui->pushButton->setEnabled(true);
                            });
                        }
                        
                        void MainWindow::on_pushButton_clicked()
                        {
                            qDebug() << Q_FUNC_INFO << QTime::currentTime().toString();
                        
                            tmr->start();
                            tmr->setInterval(3000);
                        
                            ui->pushButton->setEnabled(false);
                        }
                        

                        0_1561526880214_Btn.gif

                        M Offline
                        M Offline
                        ManiRon
                        wrote on 26 Jun 2019, 05:37 last edited by ManiRon
                        #19

                        @Pradeep-P-N @jsulm @J-Hilk
                        when i created a sample i was absorbing one thing , that when i click the button i disabled it , but while i click the button when it is disabled after enabling the button the click signal gets emitted and the click function is executed by the click signal which was occuring when i clicked the button when it was disabled

                        J 1 Reply Last reply 26 Jun 2019, 05:41
                        0
                        • M ManiRon
                          26 Jun 2019, 05:37

                          @Pradeep-P-N @jsulm @J-Hilk
                          when i created a sample i was absorbing one thing , that when i click the button i disabled it , but while i click the button when it is disabled after enabling the button the click signal gets emitted and the click function is executed by the click signal which was occuring when i clicked the button when it was disabled

                          J Offline
                          J Offline
                          J.Hilk
                          Moderators
                          wrote on 26 Jun 2019, 05:41 last edited by
                          #20

                          @ManiRon said in How to prevent the mouse click event from happening when the button is Disabled:

                          but while i click the button when it is disabled after enabling the button the click signal gets emitted and the click function is executed

                          If true, then that's a bug in the library!


                          Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                          Q: What's that?
                          A: It's blue light.
                          Q: What does it do?
                          A: It turns blue.

                          M P J 3 Replies Last reply 26 Jun 2019, 05:43
                          0
                          • J J.Hilk
                            26 Jun 2019, 05:41

                            @ManiRon said in How to prevent the mouse click event from happening when the button is Disabled:

                            but while i click the button when it is disabled after enabling the button the click signal gets emitted and the click function is executed

                            If true, then that's a bug in the library!

                            M Offline
                            M Offline
                            ManiRon
                            wrote on 26 Jun 2019, 05:43 last edited by
                            #21

                            @J.Hilk how it can be solved ?

                            J 1 Reply Last reply 26 Jun 2019, 06:16
                            0
                            • J J.Hilk
                              26 Jun 2019, 05:41

                              @ManiRon said in How to prevent the mouse click event from happening when the button is Disabled:

                              but while i click the button when it is disabled after enabling the button the click signal gets emitted and the click function is executed

                              If true, then that's a bug in the library!

                              P Offline
                              P Offline
                              Pradeep P N
                              wrote on 26 Jun 2019, 05:44 last edited by Pradeep P N
                              #22

                              @J.Hilk
                              i am bit confused with the statement in fact.

                              "but while i click the button when it is disabled after enabling the button the click signal gets emitted and the click function is executed"

                              • i click the button when it is disabled -> Nothing will work as Button is Disabled.
                              • after enabling the button the click signal gets emitted -> Yes as after 3s timer the button is enabled and can be clicked.

                              Pradeep Nimbalkar.
                              Upvote the answer(s) that helped you to solve the issue...
                              Keep code clean.

                              J 1 Reply Last reply 26 Jun 2019, 05:47
                              0
                              • P Pradeep P N
                                26 Jun 2019, 05:44

                                @J.Hilk
                                i am bit confused with the statement in fact.

                                "but while i click the button when it is disabled after enabling the button the click signal gets emitted and the click function is executed"

                                • i click the button when it is disabled -> Nothing will work as Button is Disabled.
                                • after enabling the button the click signal gets emitted -> Yes as after 3s timer the button is enabled and can be clicked.
                                J Offline
                                J Offline
                                J.Hilk
                                Moderators
                                wrote on 26 Jun 2019, 05:47 last edited by
                                #23

                                @Pradeep-P-N

                                What I get out of @ManiRon statement is:

                                • Button is disabled
                                • Button gets pressed/clicked
                                  • nothing happens, as expected
                                • Button gets set to enabled
                                  • clicked signal is emitted without button interaction

                                Thats not normal behavior in my opinion

                                I'll make a quick test case

                                @ManiRon what Qt Version what OS btw?


                                Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                                Q: What's that?
                                A: It's blue light.
                                Q: What does it do?
                                A: It turns blue.

                                M 1 Reply Last reply 26 Jun 2019, 06:20
                                1
                                • P Offline
                                  P Offline
                                  Pradeep P N
                                  wrote on 26 Jun 2019, 05:52 last edited by
                                  #24

                                  Hmmm, Got it @J-Hilk
                                  Thanks.

                                  @ManiRon Can you share a sample code ?
                                  You said you are using the QTimer.
                                  Just wanted to check if there is anything mismatch with the code.

                                  Pradeep Nimbalkar.
                                  Upvote the answer(s) that helped you to solve the issue...
                                  Keep code clean.

                                  1 Reply Last reply
                                  0
                                  • J J.Hilk
                                    26 Jun 2019, 05:41

                                    @ManiRon said in How to prevent the mouse click event from happening when the button is Disabled:

                                    but while i click the button when it is disabled after enabling the button the click signal gets emitted and the click function is executed

                                    If true, then that's a bug in the library!

                                    J Offline
                                    J Offline
                                    J.Hilk
                                    Moderators
                                    wrote on 26 Jun 2019, 05:57 last edited by
                                    #25

                                    @J.Hilk said in How to prevent the mouse click event from happening when the button is Disabled:

                                    If true, then that's a bug in the library!

                                    Nope, not true 5.12.4 MacOS, no unexpected clicked emits

                                    int main(int argc, char *argv[])
                                    {
                                    
                                        QApplication a(argc, argv);
                                    
                                        auto *btn = new QPushButton("Enabled");
                                        btn->resize(200, 50);
                                        btn->show();
                                    
                                        QObject::connect(btn, &QPushButton::clicked, [btn]()->void{
                                                             btn->setEnabled(false);
                                                             btn->setText("Disabled");
                                                             qDebug("Btn clicked");
                                                         });
                                        QObject::connect(btn, &QPushButton::pressed, []()->void{qDebug("Btn Pressed"); });
                                        QObject::connect(btn, &QPushButton::released, []()->void{qDebug("Btn Released"); });
                                    
                                        QTimer t_reset;
                                        t_reset.setInterval(3000);
                                        QObject::connect(&t_reset, &QTimer::timeout, btn, [btn]()->void{btn->setEnabled(true); btn->setText("Enabled");});
                                    
                                        QObject::connect(btn, &QPushButton::clicked, &t_reset, QOverload<>::of(&QTimer::start));
                                    
                                        return  a.exec();
                                    }
                                    

                                    Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                                    Q: What's that?
                                    A: It's blue light.
                                    Q: What does it do?
                                    A: It turns blue.

                                    1 Reply Last reply
                                    3
                                    • P Offline
                                      P Offline
                                      Pradeep P N
                                      wrote on 26 Jun 2019, 06:03 last edited by Pradeep P N
                                      #26

                                      @J-Hilk
                                      Even i tried on 5.12.3 - Ubuntu 16.04 & the above code ( From my post ).
                                      Also the one shared by you.
                                      It works fine.

                                      • No Click called related to button enable/disable status.

                                      Pradeep Nimbalkar.
                                      Upvote the answer(s) that helped you to solve the issue...
                                      Keep code clean.

                                      1 Reply Last reply
                                      3
                                      • M ManiRon
                                        26 Jun 2019, 05:43

                                        @J.Hilk how it can be solved ?

                                        J Offline
                                        J Offline
                                        jsulm
                                        Lifetime Qt Champion
                                        wrote on 26 Jun 2019, 06:16 last edited by
                                        #27

                                        @ManiRon Please add

                                        qDebug() << ui->pushButton->enabled();
                                        

                                        to your slot and see what it outputs when you click on the button while it is disabled.
                                        And please debug you app more carefully: you say you have a timeout to activate the button again (you should have said that in your first post already)? Did you make sure the button was not yet activated? Is it the same if you disable you style sheet?

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

                                        M 1 Reply Last reply 26 Jun 2019, 06:23
                                        1
                                        • J J.Hilk
                                          26 Jun 2019, 05:47

                                          @Pradeep-P-N

                                          What I get out of @ManiRon statement is:

                                          • Button is disabled
                                          • Button gets pressed/clicked
                                            • nothing happens, as expected
                                          • Button gets set to enabled
                                            • clicked signal is emitted without button interaction

                                          Thats not normal behavior in my opinion

                                          I'll make a quick test case

                                          @ManiRon what Qt Version what OS btw?

                                          M Offline
                                          M Offline
                                          ManiRon
                                          wrote on 26 Jun 2019, 06:20 last edited by ManiRon
                                          #28

                                          @J.Hilk QT 5.5.0 QT Creator version 3.4.2 OS Windows Vista

                                          1 Reply Last reply
                                          0

                                          18/42

                                          26 Jun 2019, 05:37

                                          • Login

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