我试图读取常规窗口窗口边框(边框)的颜色。
似乎window->palette().color(QPalette::XXXX)
会这样做,但是XXXX
是什么?或者调色板不可能吗?如果是这样,怎么样?
答案 0 :(得分:2)
您需要使用本机GetSysColorBrush
函数:
QColor getWindowFrameColor() {
// This is the only way to detect that a given color is supported
HBRUSH brush = GetSysColorBrush(COLOR_ACTIVEBORDER);
if (brush) {
DWORD color = GetSysColor(COLOR_ACTIVEBORDER);
return QColor(GetRValue(color), GetGValue(color), GetBValue(color));
// calling DeleteObject(brush) is unnecessary, but would be harmless
}
return QColor();
}
我搜索了COLOR_ACTIVEBORDER
的Qt源代码,唯一的另一种检索方法是在WebKit上运行一些自定义的javascript代码。