Sha256: 7591b0a70c5c952dcbfdb6d29b44c233c4b00a8a4f0f0ed5192c2409daee985d

Contents?: true

Size: 526 Bytes

Versions: 1

Compression:

Stored size: 526 Bytes

Contents

require 'jldrill/contexts/ShowInfoContext'
require 'jldrill/views/gtk/widgets/InfoWindow'
require 'gtk2'

module JLDrill::Gtk

	class InfoView < JLDrill::ShowInfoContext::InfoView

        attr_reader :infoWindow
        	
		def initialize(context)
			super(context)
			@infoWindow = InfoWindow.new(self)
		end
		
		def getWidget
			@infoWindow
		end

        def destroy
            @infoWindow.destroy
        end

        def run(info)
            super(info)
            @infoWindow.execute(info)
        end
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jldrill-0.5.1.7 lib/jldrill/views/gtk/InfoView.rb