Sha256: 052b2fc9f8b7dd16d90a06c44ad9bc97a04a8ec86ea2551f59a32e7e2b35edde

Contents?: true

Size: 638 Bytes

Versions: 64

Compression:

Stored size: 638 Bytes

Contents

=begin
  gdk_layout.rb - Ruby/Pango sample script.

  Copyright (c) 2003-2006 Ruby-GNOME2 Project
  This program is licenced under the same licence as Ruby-GNOME2.

  $Id: gdk_layout.rb,v 1.7 2006/06/17 13:36:11 mutoh Exp $
=end

require 'gtk2'

window = Gtk::Window.new("Ruby/Pango sample")
window.signal_connect("destroy"){Gtk.main_quit}
window.realize

gdkwin = window.window
gc = Gdk::GC.new(gdkwin)

layout = window.create_pango_layout
layout.set_markup(File.readlines("sample.txt").to_s, "$")
window.signal_connect("expose_event") do
  gdkwin.draw_layout(gc, 10, 10, layout)
end

window.set_default_size(500,400).show_all

Gtk.main

Version data entries

64 entries across 64 versions & 1 rubygems

Version Path
pango-2.0.1-x86-mingw32 sample/gdk_layout.rb
pango-2.0.1 sample/gdk_layout.rb
pango-2.0.0-x86-mingw32 sample/gdk_layout.rb
pango-2.0.0 sample/gdk_layout.rb
pango-1.2.6-x86-mingw32 sample/gdk_layout.rb
pango-1.2.6 sample/gdk_layout.rb
pango-1.2.5-x86-mingw32 sample/gdk_layout.rb
pango-1.2.5 sample/gdk_layout.rb
pango-1.2.4-x86-mingw32 sample/gdk_layout.rb
pango-1.2.4 sample/gdk_layout.rb
pango-1.2.3 sample/gdk_layout.rb
pango-1.2.3-x86-mingw32 sample/gdk_layout.rb
pango-1.2.2-x86-mingw32 sample/gdk_layout.rb
pango-1.2.2 sample/gdk_layout.rb
pango-1.2.1-x86-mingw32 sample/gdk_layout.rb
pango-1.2.1 sample/gdk_layout.rb
pango-1.2.0-x86-mingw32 sample/gdk_layout.rb
pango-1.2.0 sample/gdk_layout.rb
pango-1.1.9-x86-mingw32 sample/gdk_layout.rb
pango-1.1.9 sample/gdk_layout.rb