Hi all
Can anybody guides me , Is there anyway to make double sided slider in Qt4.2.
That is there are 2 pointers in the sliders so that we can drag it frm both the sides i.e from right as welll as left.
Thanx
Printable View
Hi all
Can anybody guides me , Is there anyway to make double sided slider in Qt4.2.
That is there are 2 pointers in the sliders so that we can drag it frm both the sides i.e from right as welll as left.
Thanx
Take a look at http://libqxt.sourceforge.net. AFAIR it contains a double head slider.
Thanks fo the help
But What is AFAIR...
Wysota
In which Zone It contains double headed Slider.
Thanx
Hi Wysota
The above Link u sent to me of "QExtensionLibrary ", can be used in Qt4.1 .Quote:
And also tell me How to use this Extension Library in Qt4.1.
Thanx
"As far as I remember"
So? You wanted to know how to implement a double headed slider. Take the sources and implement it for Qt3.
http://libqxt.sourceforge.net/docs/c...panSlider.html
Link against it.Quote:
And also tell me How to use this Extension Library in Qt4.1.
Yaa I wanted to implement a double headed slider in Qt4.1, Which sources should I take.Quote:
So? You wanted to know how to implement a double headed slider. Take the sources and implement it for Qt3.
to implement it.
Which link?Quote:
And also tell me How to use this Extension Library in Qt4.1.
Link against it.
Hi all
Is there anyone who guides me , how to make double headed Slider in Qt4.1
Pls help if anybody knows about it .
Thanx
:confused:
I don't understand... Compile libqxt and use it...
http://libqxt.sourceforge.net/docs/c...panSlider.html
This is what you want, right?
Link against the libqxt library!Quote:
Which link?
Hi. Unfortunately the version of QxtSpanSlider in libqxt svn trunk is pretty immature. Here are links to revised files:
They will get merged back to the development branch after certain build system issues have been solved.
Hi
I m working on Qt4.1 on Intel MAC machine
Is it possible to install libqxt on MAC Operating System
Actually I tried to install libqxt
and when I make the file I got errors.
pls tell me what should i do now.Quote:
make[1]: *** [QxtApplication_x11.o] Error 1
make: *** [sub-src_gui-make_default] Error 2
Did you run configure first?
Yes I run configure first.
Thanx
I ' ll try this...
Thanx 4 d soln.
I tried it
It works but shows Vertical Slider and the two heads on it also cross each other, I dont even understand how it works,
But I m trying to understand it...
QxtSpanSlider inherits QSlider so you can make it horizontal in the same way. Either pass Qt::Horizontal to the constructor or use QAbstractSlider::setOrientation().
Lower boundary value of the span:
- QxtSpanSlider::lowerValue() - returns the lower boundary of the span
- QxtSpanSlider::setLowerValue(int lower) - sets the lower boundary of the span
- QxtSpanSlider::lowerValueChanged(int lower) - a signal which is emitted whenever the lower boundary of the span changes
Upper boundary value of the span:
- QxtSpanSlider::upperValue() - returns the upper boundary of the span
- QxtSpanSlider::setUpperValue(int lower) - sets the upper boundary of the span
- QxtSpanSlider::lowerUpperChanged(int lower) - a signal which is emitted whenever the upper boundary of the span changes
In addition, QxtSpanSlider provides QxtSpanSlider::setSpan(int lower, int upper) and QxtSpanSlider::spanChanged(int lower, int upper).
Hi
How Can I add QSpinBox in the file "QxtSpanSlider" u had given me yesterday ,for showing lower head and upper head values in the spinboxes.
Thanx
Do you mean how to connect corresponding signals and slots?
Code:
connect(lowerSpinBox, SIGNAL(valueChanged(int)), spanSlider, SLOT(setLowerValue(int))); connect(upperSpinBox, SIGNAL(valueChanged(int)), spanSlider, SLOT(setUpperValue(int))); connect(spanSlider, SIGNAL(lowerValueChanged(int)), lowerSpinBox, SLOT(setValue(int))); connect(spanSlider, SIGNAL(upperValueChanged(int)), upperSpinBox, SLOT(setValue(int)));
Thanx jpn
But I knw how to connect QSPinBox and Sliders.
Actuallly I want to know how to add QSpinBoxes in the module that is given by you For QExtSpanSlider.
Thanx