Sha256: 71f0590edca756330c4eff2974a25b5887464b962b2c3bde71cf3e41520a2a4e

Contents?: true

Size: 812 Bytes

Versions: 26

Compression:

Stored size: 812 Bytes

Contents

#!/usr/bin/env ruby
=begin
  to_drawable.rb - Gdk::Pixbuf(GDK methods) sample script.

  Copyright (c) 2002-2015 Ruby-GNOME2 Project Team
  This program is licenced under the same licence as Ruby-GNOME2.
=end

require "gtk3"

filename = "#{File.expand_path(File.dirname(__FILE__))}/gnome-logo-icon.png"

window = Gtk::Window.new("Drawable sample")
window.set_border_width(10)

pixbuf = Gdk::Pixbuf.new(filename)

drawing_area = Gtk::DrawingArea.new
window.add(drawing_area)

drawing_area.set_size_request(pixbuf.width + 40,
                              pixbuf.height + 40)
drawing_area.signal_connect("draw") do |_widget, cr|
  cr.set_source_rgb(1, 1, 1)
  cr.paint
  cr.set_source_pixbuf(pixbuf, 20, 20)
  cr.paint
  false
end

window.show_all
window.signal_connect("delete-event") { Gtk.main_quit }

Gtk.main

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
gtk3-3.0.8-x86-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.8-x64-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.8 sample/misc/to-drawable.rb
gtk3-3.0.7-x86-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.7-x64-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.7 sample/misc/to-drawable.rb
gtk3-3.0.6-x86-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.6-x64-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.6 sample/misc/to-drawable.rb
gtk3-3.0.5-x64-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.5-x86-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.5 sample/misc/to-drawable.rb
gtk3-3.0.4-x86-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.4-x64-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.4 sample/misc/to-drawable.rb
gtk3-3.0.3-x64-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.3-x86-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.3 sample/misc/to-drawable.rb
gtk3-3.0.2-x86-mingw32 sample/misc/to-drawable.rb
gtk3-3.0.2-x64-mingw32 sample/misc/to-drawable.rb