Can i stylize QTreeWidgetItem like QCheckbox?
For my checkboxes style is:
QCheckBox {
spacing: 15px;
}
QCheckBox::indicator {
width: 20px;
height: 20px;
}
QCheckBox::indicator:unchecked {
image: url(:/styles/img/checkbox_unchecked.png);
}
QCheckBox::indicator:unchecked:hover {
image: url(:/styles/img/checkbox_unchecked_hover.png);
}
QCheckBox::indicator:checked {
image: url(:/styles/img/checkbox_checked.png);
}
QCheckBox::indicator:checked:hover {
image: url(:/styles/img/checkbox_checked_hover.png);
}
And what style would be for QTreeWidgetItem? I can't find it in documentation :(
Thanks!