项目作者: mvz

项目描述 :
GirFFI-based bindings for Gtk+. Supports both Gtk+ 2 and Gtk+ 3
高级语言: Ruby
项目地址: git://github.com/mvz/gir_ffi-gtk.git
创建时间: 2012-08-24T11:28:32Z
项目社区:https://github.com/mvz/gir_ffi-gtk

开源协议:GNU Lesser General Public License v2.1

下载


GirFFI-Gtk

GirFFI-based Ruby bindings for Gtk+. Supports both Gtk+ 2 and Gtk+ 3.

Usage

Gtk+ 2:

  1. require 'gir_ffi-gtk2'
  2. Gtk.init
  3. win = Gtk::Window.new :toplevel
  4. win.show
  5. GObject.signal_connect(win, "destroy") { Gtk.main_quit }
  6. Gtk.main

Gtk+ 3:

  1. require 'gir_ffi-gtk3'
  2. Gtk.init
  3. win = Gtk::Window.new :toplevel
  4. win.show
  5. GObject.signal_connect(win, "destroy") { Gtk.main_quit }
  6. Gtk.main

See the examples/ directory for more examples.

Install

  1. gem install gir_ffi-gtk

Requirements

First, make sure the ffi gem is properly installed. See its documentation for
the necessary requirements.

GirFFI-Gtk itself depends on the GirFFI
gem, and the gobject-introspection and gtk+ libaries.

For Debian-like systems, try the following for Gtk+ 3:

  1. apt-get install libgirepository1.0-dev gobject-introspection gir1.2-gtk-3.0

and for Gtk+ 2:

  1. apt-get install libgirepository1.0-dev gobject-introspection gir1.2-gtk-2.0

This gem has not been tested on Mac OS X or Microsoft Windows. YMMV. Pull
requests to support these platforms are welcome.

License

Copyright © 2012–2022 Matijs van Zuijlen

GirFFI-Gtk is free software, distributed under the terms of the GNU Lesser
General Public License, version 2.1 or later. See the file COPYING.LIB for
more information.