Glib-Eventable

This is a helper gem for ruby-gnome2 applications.

Instead of writing:

class Window < Gtk::Window
  def initialize
    signal_connect('destroy') { Gtk.main_quit }
  end
end

This allows you to write:

class Window < Gtk::Window
  event destroy: :on_destroy

  def on_destroy
    Gtk.main_quit
  end
end

This allows you to create subclasses of Gtk objects in a more OOP style.

Install

Bundler: gem 'glib-eventable'

RubyGems: gem install glib-eventable

Usage

require 'glib/eventable'

class MyToggleRenderer < Gtk::CellRendererToggle
  event toggled: :on_toggle

  def initialize(column)
    @column = column

    super()
  end

  def on_toggle(path)
    iter = @column.tree_view.model.get_iter(path)

    iter[1] = case iter[1]
    when 'Running' then 'Stopped'
    when 'Stopped' then 'Running'
    end
  end
end

Contributing

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
  • Fork the project
  • Start or switch to a testing/unstable/feature/bugfix branch
  • Commit and push until you are happy with your contribution
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, VERSION or gemspec.

Copyright © 2012 Ryan Scott Lewis [email protected].

The MIT License (MIT) - See LICENSE for further details.