Sha256: c9ae973f21fc38ea2076a8780b6b27c47cadeb7129ff9a022e102f6ae02772c9

Contents?: true

Size: 1.1 KB

Versions: 22

Compression:

Stored size: 1.1 KB

Contents

require 'Qt'

class CannonField < Qt::Widget
    signals 'angleChanged(int)'
    slots 'setAngle(int)'
    
    def initialize(parent = nil)
        super
        @currentAngle = 45
        setPalette( Qt::Palette.new( Qt::Color.new( 250, 250, 200) ) )
	setAutoFillBackground(true)
    end

    def setAngle( degrees )
        if degrees < 5
            degrees = 5
        elsif degrees > 70
            degrees = 70
        end
        if @currentAngle == degrees
            return
        end
        @currentAngle = degrees
        repaint()
        emit angleChanged( @currentAngle )
    end

    def paintEvent( event )
        painter = Qt::Painter.new( self )

        painter.setPen( Qt::NoPen )
        painter.setBrush( Qt::Brush.new(Qt::blue) )

        painter.translate( 0, rect().bottom() )
        painter.drawPie( Qt::Rect.new(-35, -35, 70, 70), 0, 90*16 )
        painter.rotate( - @currentAngle )
        painter.drawRect( Qt::Rect.new(33, -4, 15, 8) )
        painter.end()
    end


    def sizePolicy()
        return Qt::SizePolicy.new( Qt::SizePolicy::Expanding, Qt::SizePolicy::Expanding )
    end
end

Version data entries

22 entries across 20 versions & 2 rubygems

Version Path
qtbindings-4.8.6.2 examples/tutorial/t9/cannon.rb
qtbindings-4.8.6.1 examples/tutorial/t9/cannon.rb
qtbindings-4.8.6.0 examples/tutorial/t9/cannon.rb
qtbindings-4.8.6.0-x86-mingw32 examples/tutorial/t9/cannon.rb
qtbindings-4.8.5.2 examples/tutorial/t9/cannon.rb
qtbindings-4.8.5.2-x86-mingw32 examples/tutorial/t9/cannon.rb
qtbindings-4.8.5.1 examples/tutorial/t9/cannon.rb
qtbindings-4.8.5.0 examples/tutorial/t9/cannon.rb
qtbindings-4.8.3.0-x86-mingw32 examples/tutorial/t9/cannon.rb
qtbindings-4.8.3.0 examples/tutorial/t9/cannon.rb
qtbindings-4.6.3.4-x86-mingw32 examples/tutorial/t9/cannon.rb
qtbindings-4.6.3.4 examples/tutorial/t9/cannon.rb
qtbindings-4.6.3.3 examples/tutorial/t9/cannon.rb
qtbindings-4.6.3.2-x86-mingw32 examples/tutorial/t9/cannon.rb
qtbindings-4.6.3.2 examples/tutorial/t9/cannon.rb
qtbindings-4.6.3.1 examples/tutorial/t9/cannon.rb
qtbindings-4.6.3.1-x86-mingw32 examples/tutorial/t9/cannon.rb
qtbindings-4.6.3.0 examples/tutorial/t9/cannon.rb
qtbindings-4.6.3.0 ext/ruby/qtruby/examples/tutorial/t9/cannon.rb
qtbindings-4.6.3.0-x86-mingw32 examples/tutorial/t9/cannon.rb