Top "Qcheckbox" questions

A QCheckBox is a GUI class from the Qt toolkit which provides a checkbox with a text label.

Qt5 - setting background color to QPushButton and QCheckBox

I'm trying to change the background color of a QAbstractButton (either a QPushButton or QCheckBox) in Qt5 and having zero …

qt qt5 qpushbutton qcheckbox
Set widget background color

I use QCheckBox in QTableWidgetCell QWidget *widget = new QWidget(); QCheckBox *checkBox = new QCheckBox(); QHBoxLayout *layout = new QHBoxLayout(widget); layout->…

qt qtablewidget qcheckbox
Changing QCheckBox indicator rectangle color

I'm trying to change only the color of QCheckBox indicator rectangle. Currently I succeed to draw the right and the …

qt qitemdelegate qcheckbox
QT - uncheck check box

Guys please let me know how to uncheck the check box using QT C++.

c++ qt qcheckbox
how to change QCheckBox text label color in Qt?

I'm unable to change the color of Qcheckbox in QT, can somebody help me with code to change color of …

c++ qt checkbox qcheckbox
Increase check box size not its text using QCheckbox?

How do I increase the size of the check box for the QCheckBox control and not the text size? Thanks.

qt qcheckbox
Qt - Centering a checkbox in a QTable

In QtCreater I added a table to my project. in my code I am generating some data to output into …

c++ qt qt-creator qtablewidgetitem qcheckbox
checkbox and itemdelegate in a tableview

I'm doing an implementation of a CheckBox that inherits from QitemDelegate, to put it into a QTableView. the problem is …

qt qtableview qitemdelegate qcheckbox
Change checkbox position for a QCheckBox

I have a QCheckbox in a grid layout defined as such: self.isSubfactorCheckbox = QtGui.QCheckBox('Is &subfactor', self) By …

qt pyqt pyqt4 qcheckbox
How to make QCheckBox readonly, but not grayed-out

Any good way to make a checkbox readonly, but also not grayed-out (hardly visible). I have used setEnabled(bool) which …

c++ qt qcheckbox