我有一个QTreeView
,其中包含一个定义选择的样式表。但是,当我使用" fusion"样式,装饰上还有一个蓝色选择矩形:
我尝试在样式表中使用show-decoration-selected: 0;
,并设置setAllColumnsShowFocus(false);
,但无法让它消失。
是否有某种方法可以禁用或重新设置覆盖装饰器的选择部分?
供参考,这是样式表:
QTreeView, QListView, QToolBar, QTableView
{
show-decoration-selected: 0;
background: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 0,
stop: 0 #797979, stop: 0.2 #CCCCCC,
stop: 1.0 #FFFFFF);
alternate-background-color: #333333;
background-image: url(:/metal_scratched);
outline: 0; /* removes focus rectangle*/
}
QTreeView::section, QListView::section, QToolBar::section, QTableView::section
{
border: 1px solid black;
}
QTreeView::item:hover:enabled, QListView::item:hover:enabled, QToolBar::item:hover:enabled, QTableView::item:hover:enabled
{
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 transparent, stop: 0.4 rgba(150,150,150,0.5),
stop: 0.5 rgba(125,125,125,0.5), stop: 1.0 transparent);
border-color: #B0B0B0;
}
QTreeView::item:hover:!enabled, QListView:disabled:hover, QToolBar:disabled:hover, QTableView:disabled:hover
{
/* don't highlight */
}
QTreeView::item:selected, QListView::item:selected, QToolBar::item:selected, QTableView::item:selected
{
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 transparent, stop: 0.4 rgba(75,75,75,0.5),
stop: 0.5 rgba(50,50,50,0.5), stop: 1.0 transparent);
border-color: #5A5A5A;
color: white;
}
答案 0 :(得分:8)
可以通过覆盖样式表中的默认选择颜色来删除蓝色工件。保留其他所有内容(重要的是,继续使用QTreeView::item:selected
定义新的选择颜色),添加以下属性将删除不需要的行为。
QTreeView
{
// everything else the same
selection-background-color: transparent;
}
答案 1 :(得分:-1)
在进一步审查中,我发现真正实现这一目标的唯一方法是设置Qt Application的调色板。
像这样,
QApplication app(argc, argv);
app.setStyle(QStyleFactory::create("fusion"));
QPalette palette;
palette.setColor(QPalette::Highlight, QColor(your-color));