我想拦截QSlider上的QPaintEvent并绘制它。但是我无法找到关于物体几何形状的细节。我可以知道整个小部件的rect(),但是如何判断小部件矩形中第一个tickmark或最后一个的位置? (跟踪通道左右两侧有一个边距)。还是“手柄”的矩形?
答案 0 :(得分:6)
感谢回复中的提示。经过一番调查后,这似乎有效。如果它对某人有用的话:
QStyleOptionSlider opt;
slider->initStyleOption(&opt);
QStyle *styl=style();
Rect rectHandle=styl->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderHandle, NULL);
Rect rectGroove=styl->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderGroove, NULL);
int avl=styl->pixelMetric(QStyle::PM_SliderSpaceAvailable, &opt, this); // width in an horizontal slider of the groove (width of widget - margins)
答案 1 :(得分:1)
您是否想要重新实施油漆事件? 可能是wryte自定义样式表就足够了吗? 以下是来自doks的qslider示例:
QSlider::groove:horizontal {
border: 1px solid #999999;
height: 8px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #B1B1B1, stop:1 #c4c4c4);
margin: 2px 0;
}
QSlider::handle:horizontal {
background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #b4b4b4, stop:1 #8f8f8f);
border: 1px solid #5c5c5c;
width: 18px;
margin: -2px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
border-radius: 3px;
}
答案 2 :(得分:1)
您是否考虑过使用setStyleSheet? 如果您真的想亲自绘制它,可以看看它是如何在Qt源代码中完成的:qt / src / gui / widgets / qslider.cpp