Qss qtreeview and checkboxes
-
How to stylize checkboxes in treeview?
!http://www.gamedev.ru/files/images/gd_qtreeview.png(qtreeview)!PS
I post this question at several forums - but still no answers, may be developers can answer this. -
For example with qss:
@
treeView->setStyleSheet(
"QTreeView::indicator:checked { image: url(:/img/checked.png); } "
"QTreeView::indicator:unchecked { image: url(:/img/unchecked.png); } "
);
@