Home

Qt Tutorial - Chapter 5: Building Blocks

Screenshot of tutorial five

This example shows how to create and connect together several widgets by using signals and slots, and how to handle resize events.

#****************************************************************
#**
#** Qt tutorial 5
#**
#****************************************************************/

require 'Qt'

class MyWidget < Qt::VBox

def initialize(parent = nil, name = nil)
    super
    quit = Qt::PushButton.new('Quit', self, 'quit')
    quit.setFont(Qt::Font.new('Times', 18, Qt::Font::Bold))
    
    connect(quit, SIGNAL('clicked()'), $qApp, SLOT('quit()'))
    
    lcd = Qt::LCDNumber.new(2, self, 'lcd')

    slider = Qt::Slider.new(Horizontal, self, 'slider')
    slider.setRange(0, 99)
    slider.setValue(0)

    connect(slider, SIGNAL('valueChanged(int)'), lcd, SLOT('display(int)'))
end

end

a = Qt::Application.new(ARGV)

w = MyWidget.new
a.setMainWidget(w)
w.show
a.exec

Line-by-line Walkthrough

    class MyWidget < Qt::VBox
    def initialize(parent = nil, name = nil)
        super

MyWidget is now derived from Qt::VBox instead of Qt::Widget. That way we use the layout of the Qt::VBox (which places all of its children vertically inside itself). Resizes are now handled automatically by the Qt::VBox and therefore by MyWidget, too.

        lcd  = Qt::LCDNumber.new( 2, self, "lcd" )

lcd is a Qt::LCDNumber, a widget that displays numbers in an LCD-like fashion. This instance is set up to display two digits and to be a child of self. It is named "lcd".

        slider = Qt::Slider.new( Horizontal, self, "slider" )
        slider.setRange( 0, 99 )
        slider.setValue( 0 )

Qt::Slider is a classical slider; the user can use the widget to drag something to adjust an integer value in a range. Here we create a horizontal one, set its range to 0-99 (inclusive, see the Qt::Slider.setRange() documentation) and its initial value to 0.

        connect( slider, SIGNAL('valueChanged(int)'), lcd, SLOT('display(int)') )

Here we use the signal/slot mechanism to connect the slider's valueChanged() signal to the LCD number's display() slot.

Whenever the slider's value changes it broadcasts the new value by emitting the valueChanged() signal. Because that signal is connected to the LCD number's display() slot, the slot is called when the signal is broadcast. Neither of the objects knows about the other. This is essential in component programming.

Slots are otherwise normal ruby instance methods and follow the normal ruby access rules.

Behavior

The LCD number reflects everything you do to the slider, and the widget handles resizing well. Notice that the LCD number widget changes in size when the window is resized (because it can), but the others stay about the same (because otherwise they would look stupid).

Exercises

Try changing the LCD number to add more digits or to change mode. You can even add four push buttons to set the number base.

You can also change the slider's range.

Perhaps it would have been better to use Qt::SpinBox than a slider?

Try to make the application quit when the LCD number overflows.

You're now ready for Chapter 6.

[Previous tutorial] [Next tutorial] [Main tutorial page]


Copyright © 2004 TrolltechTrademarks
Qt 3.3.3