Sha256: d8ed5f2f45fe94725f174ffc8bcb42af0d8be6e3609eeb2f5a5dcda1624bbb24

Contents?: true

Size: 1.93 KB

Versions: 17

Compression:

Stored size: 1.93 KB

Contents

#!/usr/bin/env ruby
$VERBOSE = true; $:.unshift File.dirname($0)

require 'Qt'
require './lcdrange.rb'
require './cannon.rb'

class MyWidget < Qt::Widget

    def initialize(parent = nil)
        super
        quit = Qt::PushButton.new('&Quit')
        quit.setFont(Qt::Font.new('Times', 18, Qt::Font::Bold))
    
        connect(quit, SIGNAL('clicked()'), $qApp, SLOT('quit()'))
    
        angle = LCDRange.new( 'ANGLE' )
        angle.range = 5..70
        
        force  = LCDRange.new( 'FORCE' )
        force.range = 10..50
        
        cannonField = CannonField.new( self )

        connect( angle, SIGNAL('valueChanged(int)'),
                cannonField, SLOT('setAngle(int)') )
        connect( cannonField, SIGNAL('angleChanged(int)'),
                angle, SLOT('setValue(int)') )

        connect( force, SIGNAL('valueChanged(int)'),
                cannonField, SLOT('setForce(int)') )
        connect( cannonField, SIGNAL('forceChanged(int)'),
                force, SLOT('setValue(int)') )
        
        shoot = Qt::PushButton.new( '&Shoot' )
        shoot.setFont( Qt::Font.new( 'Times', 18, Qt::Font::Bold ) )

        connect( shoot, SIGNAL('clicked()'), cannonField, SLOT('shoot()') )
            
        topLayout = Qt::HBoxLayout.new
        topLayout.addWidget(shoot)
        topLayout.addStretch(1)

        leftLayout = Qt::VBoxLayout.new()
        leftLayout.addWidget( angle )
        leftLayout.addWidget( force )

        gridLayout = Qt::GridLayout.new
        gridLayout.addWidget( quit, 0, 0 )
        gridLayout.addLayout(topLayout, 0, 1)
        gridLayout.addLayout(leftLayout, 1, 0)
        gridLayout.addWidget( cannonField, 1, 1, 2, 1 )
        gridLayout.setColumnStretch( 1, 10 )
		setLayout(gridLayout)
    
        angle.setValue( 60 )
        force.setValue( 25 )
        angle.setFocus()
    end
end    

app = Qt::Application.new(ARGV)
widget = MyWidget.new
widget.setGeometry( 100, 100, 500, 355 )
widget.show
app.exec

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
qtbindings-4.8.6.2 examples/tutorial/t12/t12.rb
qtbindings-4.8.6.1 examples/tutorial/t12/t12.rb
qtbindings-4.8.6.0 examples/tutorial/t12/t12.rb
qtbindings-4.8.6.0-x86-mingw32 examples/tutorial/t12/t12.rb
qtbindings-4.8.5.2 examples/tutorial/t12/t12.rb
qtbindings-4.8.5.2-x86-mingw32 examples/tutorial/t12/t12.rb
qtbindings-4.8.5.1 examples/tutorial/t12/t12.rb
qtbindings-4.8.5.0 examples/tutorial/t12/t12.rb
qtbindings-4.8.3.0-x86-mingw32 examples/tutorial/t12/t12.rb
qtbindings-4.8.3.0 examples/tutorial/t12/t12.rb
qtbindings-4.6.3.4-x86-mingw32 examples/tutorial/t12/t12.rb
qtbindings-4.6.3.4 examples/tutorial/t12/t12.rb
qtbindings-4.6.3.3 examples/tutorial/t12/t12.rb
qtbindings-4.6.3.2-x86-mingw32 examples/tutorial/t12/t12.rb
qtbindings-4.6.3.2 examples/tutorial/t12/t12.rb
qtbindings-4.6.3.1 examples/tutorial/t12/t12.rb
qtbindings-4.6.3.1-x86-mingw32 examples/tutorial/t12/t12.rb