QT GUI on low resolution display

I want to create a frequency spectrum display with a center frequency
control
on a 800 x 480 LCD display. When I use the QT GUI Frequency Sink with a
slider underneath, the slider scale goes off the bottom of the screen.
Is it
possible to reduce the height of the QT GUI Frequency display? The WX
GUI
FFT sink has a window size parameter.

Regards,

Jim


View this message in context:
http://gnuradio.4.n7.nabble.com/QT-GUI-on-low-resolution-display-tp51236.html
Sent from the GnuRadio mailing list archive at Nabble.com.

On Fri, Nov 7, 2014 at 8:09 PM, Jim L. [email protected] wrote:

Jim

For reasons which go back to the original qtsink work that we brought
in,
we’ve never made the window size and available option. The gui widgets
are
made up of other widgets that also have minimum window sizes before they
run into problems, too. But for the newer style (time, freq,
constellation,
etc.), there are fewer of these to be a problem, so we can probably look
into shrinking the minimum widget size.

Tom

Thank you for your comments Tom. I can make the QT GUI Slider height
smaller
by changing the Python statement
from:
Qwt.QwtSlider(None, Qt.Qt.Horizontal, Qwt.QwtSlider.BottomScale,
Qwt.QwtSlider.BgSlot)
to:
Qwt.QwtSlider(None, Qt.Qt.Horizontal, Qwt.QwtSlider.NoScale,
Qwt.QwtSlider.BgSlot)
That may provide enough room below the QT GUI Frequency Sink for the
slider
widget.


View this message in context:
http://gnuradio.4.n7.nabble.com/QT-GUI-on-low-resolution-display-tp51236p51277.html
Sent from the GnuRadio mailing list archive at Nabble.com.

On Tue, Nov 11, 2014 at 11:07 PM, Jim L. [email protected]
wrote:

widget.

Great.

I’m tempted to add this as an option in the Range block to show or not
show
the slider scale. But we still want to get rid of the use of PyQWT in
GNU
Radio code, so we would likely reimplement this block in C++, anyways,
so
we can add more options like this at that point.

Meanwhile, if a patch happens to come in…

Tom