6

When a QPushButton is clicked, I want it to remain pressed down until clicked again.

void MainWindow::itemClicked(){

    QPushButton *clickedItem = qobject_cast<QPushButton *>(sender());

    qDebug() << clickedItem->isDown();

    if(!clickedItem->isDown())
        clickedItem->setDown(true);
    else
        clickedItem->setDown(false);
}

This doesn't seem to work. It will cause the button to be pressed down indefinitely.

clickedItem->isDown() is always false.

2 Answers 2

7

isDown always returns false because you are checking it in a slot connected to the clicked signal. The clicked signal is emited when you press down the push button and release it. So every time the button is pressed and released the clicked signal is emited.

setCheckable() would work for you. It will make the button toggle. So when youu click, it'll stay in down state until you click it again.

Sign up to request clarification or add additional context in comments.

Comments

4

It should work out of the box using QAbstractButton::setCheckable(bool).

When set to true it should act the way you want it to act.

5 Comments

Thanks, I know about setCheckable. I'm wondering why isDown doesn't work as expected.
@МикроПингвин Probably because you do it in a slot which is connected to a clicked signal, and the button gets released before the slot is executed. That is why isDown always returns false.
How would I fix this? Would I need to implement a release slot?
@МикроПингвин Why bother? Why not just use QAbstractButton::setCheckable?
as @thuga mentioned, why not use a "checkable pushbutton" and if you need the state of the button ask for it using QAbstractButton::isChecked()

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.