Tagged Questions
The qslider tag has no wiki summary.
3
votes
1answer
509 views
How to draw a picture instead of the slider on Qt QSlider?
I have created a class that inherits from QSlider. I want to draw a picture on the slider (grabber) instead of showing the plain one. How to do it?
--
I found an answer and posted after I had ...
1
vote
1answer
48 views
Rotations with QQuaternion and QSlider
I have implemented an Objectrotation with QQuaternion and QPushButton.
As long as the plus_x_button is pushed the slot rotate_plus_x() is activated.
Respectively for minus_x.
void ...
1
vote
3answers
50 views
How to connect a QSlider to QDoubleSpinBox
I want to connect a QSlider to a QDoubleSpinBox but while the code compiles fine and runs for simple QSpinBox, it doesn't work for QDoubleSpinBox
QSlider *horizontalSlider1 = new QSlider();
...
1
vote
3answers
296 views
Difficulty Manipulating QSlider in a QGridLayout
I'm trying to create a dynamic QSlider that accepts a QVector of integer values and maps them underneath the QSlider relative to what position they represent.
Here's a screenshot of what I have now:
...
0
votes
0answers
49 views
QSlider is not sliding
Somehow my QSlider is not sliding. I am only able to click on the slider and then the slider changes his position. I have checked with examples but everything seems to be the same.
Here is one of my ...
0
votes
1answer
55 views
Qt C++ Connect QSlider to QWebView's setTextSizeMultiplier
How do I connect QSlider to QWebView's setTextSizeMultiplier in Qt? I want to web's text to get smaller or larger depending on the slider's value when it changes.
This is how I'm trying to do it, but ...
0
votes
1answer
76 views
Adding a QSlider using Qt
I would like to add a QSlider in a QToolButton just like volume control in windows OS.
Can any body help me how to achieve this in Qt?
0
votes
1answer
134 views
QT QSlider Margins
I'm making a widget that consists of a QGridLayout which maps out a QSlider and a few QPushButtons. In my widget, I'm able to position the buttons against the rightmost side of the container widget. ...
0
votes
1answer
297 views
QSlider stepping?
I'd like to specify the steps that a QSlider can slide, like it is possible for the QSpinBox by using setSingleStep. I tried to use setSingleStep of QAbstractSlider, but this seems to have no effect.
...
0
votes
1answer
255 views
QSlider focus issue (Mac Leopard) with QApplication::focusChanged(QWidget*,QWidget*)
I'm using Qt 4.6.0 in Leopard 10.5.8. I have a few sliders. Every time I slide/click on a slider, it gets focus in Windows. However, it does not get focus on Mac. I have to manually click Tab to ...