当用户单击 qslider 上的某个位置时,我不想步进,而是想让滑块跳到那个位置。如何实施?
12 回答
在@spyke @Massimo Callegari 和@Ben 的所有版本出现问题后(滑块位置对于整个区域都不正确),我在 QSlider 源代码中发现了一些 Qt 样式功能:QStyle::SH_Slider_AbsoluteSetButtons
.
您必须创建一个可能非常烦人的新 QStyle,或者您使用http://www.qtcentre.org/threads/9208-QSlider-step-customize?p=49035#post49035ProxyStyle
中的用户 jpn 所示
我添加了另一个构造函数并修复了一个错字,但使用了原始源代码的其余部分。
#include <QProxyStyle>
class MyStyle : public QProxyStyle
{
public:
using QProxyStyle::QProxyStyle;
int styleHint(QStyle::StyleHint hint, const QStyleOption* option = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const
{
if (hint == QStyle::SH_Slider_AbsoluteSetButtons)
return (Qt::LeftButton | Qt::MidButton | Qt::RightButton);
return QProxyStyle::styleHint(hint, option, widget, returnData);
}
};
现在您可以在滑块构造函数中设置滑块的样式(如果您的滑块是从 QSlider 派生的):
setStyle(new MyStyle(this->style()));
或者如果它是标准 QSlider,它应该以这种方式工作:
standardSlider.setStyle(new MyStyle(standardSlider->style()));
所以您使用该元素的原始样式,但是如果要求QStyle::SH_Slider_AbsoluteSetButtons
“属性”,您可以根据需要返回;)
也许您必须在删除滑块时销毁这些代理样式,尚未测试。
好吧,我怀疑 Qt 是否有用于此目的的直接功能。
尝试使用自定义小部件。这应该工作!
试试下面的逻辑
class MySlider : public QSlider
{
protected:
void mousePressEvent ( QMouseEvent * event )
{
if (event->button() == Qt::LeftButton)
{
if (orientation() == Qt::Vertical)
setValue(minimum() + ((maximum()-minimum()) * (height()-event->y())) / height() ) ;
else
setValue(minimum() + ((maximum()-minimum()) * event->x()) / width() ) ;
event->accept();
}
QSlider::mousePressEvent(event);
}
};
我也需要这个并尝试了 spyke 解决方案,但它缺少两件事:
- 倒置的外观
- 手柄拾取(当鼠标在手柄上时,不需要直接跳转)
因此,这是经过审查的代码:
void MySlider::mousePressEvent ( QMouseEvent * event )
{
QStyleOptionSlider opt;
initStyleOption(&opt);
QRect sr = style()->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderHandle, this);
if (event->button() == Qt::LeftButton &&
sr.contains(event->pos()) == false)
{
int newVal;
if (orientation() == Qt::Vertical)
newVal = minimum() + ((maximum()-minimum()) * (height()-event->y())) / height();
else
newVal = minimum() + ((maximum()-minimum()) * event->x()) / width();
if (invertedAppearance() == true)
setValue( maximum() - newVal );
else
setValue(newVal);
event->accept();
}
QSlider::mousePressEvent(event);
}
Massimo Callegari 的答案几乎是正确的,但是 newVal 的计算忽略了滑块手柄宽度。当您尝试单击滑块末端附近时会出现此问题。
以下代码为水平滑块修复了这个问题
double halfHandleWidth = (0.5 * sr.width()) + 0.5; // Correct rounding
int adaptedPosX = event->x();
if ( adaptedPosX < halfHandleWidth )
adaptedPosX = halfHandleWidth;
if ( adaptedPosX > width() - halfHandleWidth )
adaptedPosX = width() - halfHandleWidth;
// get new dimensions accounting for slider handle width
double newWidth = (width() - halfHandleWidth) - halfHandleWidth;
double normalizedPosition = (adaptedPosX - halfHandleWidth) / newWidth ;
newVal = minimum() + ((maximum()-minimum()) * normalizedPosition);
这是使用 QStyle.sliderValueFromPosition() 在 python 中的一个简单实现:
class JumpSlider(QtGui.QSlider):
def mousePressEvent(self, ev):
""" Jump to click position """
self.setValue(QtGui.QStyle.sliderValueFromPosition(self.minimum(), self.maximum(), ev.x(), self.width()))
def mouseMoveEvent(self, ev):
""" Jump to pointer position while moving """
self.setValue(QtGui.QStyle.sliderValueFromPosition(self.minimum(), self.maximum(), ev.x(), self.width()))
下面的代码实际上是一个 hack,但它可以在没有子类化 QSlider 的情况下正常工作。您唯一需要做的就是将 QSlider valueChanged 信号连接到您的容器。
注意1:您必须在滑块中设置 pageStep > 0
注意2:它只适用于水平的,从左到右的滑块(你应该改变“sliderPosUnderMouse”的计算以使用垂直方向或倒置外观)
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
// ...
connect(ui->mySlider, SIGNAL(valueChanged(int)),
this, SLOT(mySliderValueChanged(int)));
// ...
}
void MainWindow::mySliderValueChanged(int newPos)
{
// Make slider to follow the mouse directly and not by pageStep steps
Qt::MouseButtons btns = QApplication::mouseButtons();
QPoint localMousePos = ui->mySlider->mapFromGlobal(QCursor::pos());
bool clickOnSlider = (btns & Qt::LeftButton) &&
(localMousePos.x() >= 0 && localMousePos.y() >= 0 &&
localMousePos.x() < ui->mySlider->size().width() &&
localMousePos.y() < ui->mySlider->size().height());
if (clickOnSlider)
{
// Attention! The following works only for Horizontal, Left-to-right sliders
float posRatio = localMousePos.x() / (float )ui->mySlider->size().width();
int sliderRange = ui->mySlider->maximum() - ui->mySlider->minimum();
int sliderPosUnderMouse = ui->mySlider->minimum() + sliderRange * posRatio;
if (sliderPosUnderMouse != newPos)
{
ui->mySlider->setValue(sliderPosUnderMouse);
return;
}
}
// ...
}
我的最终实现基于周围的评论:
class ClickableSlider : public QSlider {
public:
ClickableSlider(QWidget *parent = 0) : QSlider(parent) {}
protected:
void ClickableSlider::mousePressEvent(QMouseEvent *event) {
QStyleOptionSlider opt;
initStyleOption(&opt);
QRect sr = style()->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderHandle, this);
if (event->button() == Qt::LeftButton &&
!sr.contains(event->pos())) {
int newVal;
if (orientation() == Qt::Vertical) {
double halfHandleHeight = (0.5 * sr.height()) + 0.5;
int adaptedPosY = height() - event->y();
if ( adaptedPosY < halfHandleHeight )
adaptedPosY = halfHandleHeight;
if ( adaptedPosY > height() - halfHandleHeight )
adaptedPosY = height() - halfHandleHeight;
double newHeight = (height() - halfHandleHeight) - halfHandleHeight;
double normalizedPosition = (adaptedPosY - halfHandleHeight) / newHeight ;
newVal = minimum() + (maximum()-minimum()) * normalizedPosition;
} else {
double halfHandleWidth = (0.5 * sr.width()) + 0.5;
int adaptedPosX = event->x();
if ( adaptedPosX < halfHandleWidth )
adaptedPosX = halfHandleWidth;
if ( adaptedPosX > width() - halfHandleWidth )
adaptedPosX = width() - halfHandleWidth;
double newWidth = (width() - halfHandleWidth) - halfHandleWidth;
double normalizedPosition = (adaptedPosX - halfHandleWidth) / newWidth ;
newVal = minimum() + ((maximum()-minimum()) * normalizedPosition);
}
if (invertedAppearance())
setValue( maximum() - newVal );
else
setValue(newVal);
event->accept();
} else {
QSlider::mousePressEvent(event);
}
}
};
我认为,
可以使用 QStyle::sliderValueFromPosition() 函数。
http://qt-project.org/doc/qt-5/qstyle.html#sliderValueFromPosition
对上述 JumpSlider 的修改在 PyQt5 中有效:
class JumpSlider(QSlider):
def _FixPositionToInterval(self,ev):
""" Function to force the slider position to be on tick locations """
# Get the value from the slider
Value=QStyle.sliderValueFromPosition(self.minimum(), self.maximum(), ev.x(), self.width())
# Get the desired tick interval from the slider
TickInterval=self.tickInterval()
# Convert the value to be only at the tick interval locations
Value=round(Value/TickInterval)*TickInterval
# Set the position of the slider based on the interval position
self.setValue(Value)
def mousePressEvent(self, ev):
self._FixPositionToInterval(ev)
def mouseMoveEvent(self, ev):
self._FixPositionToInterval(ev)
我一直在网上尝试和搜索,并期待 Qt 能以更聪明的方式做到这一点,不幸的是没有太大的帮助(可能是我没有正确搜索)
好吧,我已经在 Qt creator 中做到了:
- 在 header 中添加一个 eventFilter(以 QObject 和 QEvent 作为参数)(bool 返回类型)
- 在构造函数中初始化..例如..如果你的滑块是 HSlider 然后 ui->HSlider->installEventFilter(this);
在定义中:
一种。检查对象是否是您的滑块类型,例如:
ui->HSlider == Object
湾。检查鼠标单击事件,例如:
QEvent::MouseButtonPress == event->type
C。如果以上所有通过意味着您在滑块上有鼠标事件,请执行以下操作:在定义中:
ui->HSlider->setValue( Qcursor::pos().x() - firstval ); return QMainWindow::eventFilter(object, event);
注意:fistVal :可以通过打印 0 = 滑块初始位置的光标位置来取出(在 的帮助下QCursor::pos().x()
)
希望这可以帮助
一个简单的方法是派生QSlider
并重新实现mousePressEvent(....)
以使用setSliderPosition(int)
.
我也遇到了这个问题。我的解决方案如下所示。
slider->installEventFilter(this);
---
bool MyDialog::eventFilter(QObject *object, QEvent *event)
{
if (object == slider && slider->isEnabled())
{
if (event->type() == QEvent::MouseButtonPress)
{
auto mevent = static_cast<QMouseEvent *>(event);
qreal value = slider->minimum() + (slider->maximum() - slider->minimum()) * mevent->localPos().x() / slider->width();
if (mevent->button() == Qt::LeftButton)
{
slider->setValue(qRound(value));
}
event->accept();
return true;
}
if (event->type() == QEvent::MouseMove)
{
auto mevent = static_cast<QMouseEvent *>(event);
qreal value = slider->minimum() + (slider->maximum() - slider->minimum()) * mevent->localPos().x() / slider->width();
if (mevent->buttons() & Qt::LeftButton)
{
slider->setValue(qRound(value));
}
event->accept();
return true;
}
if (event->type() == QEvent::MouseButtonDblClick)
{
event->accept();
return true;
}
}
return QDialog::eventFilter(object, event);
}
您还可以覆盖 QSlider 的这些事件处理程序。
QSlider::mousePressedEvent
QSlider::mouseMoveEvent
QSlider::mouseDoubleClickEvent