Sha256: b7166dfb60fdf8ddf01db575ecb1ffe2ebdc03cf0ba22e39e05bee7ab922d820
Contents?: true
Size: 1.68 KB
Versions: 2
Compression:
Stored size: 1.68 KB
Contents
# Copyright 2004-2006 by Kevin Smith # released under the MIT-style wxruby2 license # This wrapper serves three functions: # 1. It loads the binary library 'wxruby2.so' or 'wxruby.dll', while # still allowing applications to just require 'wx'. # 2. It sets up the version information # 3. It loads in ruby extensions to the core Wx classes. # load the binary library require 'wxruby2' # alias the module Wx = Wxruby2 # Load the version information (should be bundled with all released versions) begin require 'wx/version' rescue LoadError Wx::WXRUBY_VERSION = '0.0.0' end # Convenience string for WxWidgets version info Wx::WXWIDGETS_VERSION = '%i.%i.%i' % [ Wx::WXWIDGETS_MAJOR_VERSION, Wx::WXWIDGETS_MINOR_VERSION, Wx::WXWIDGETS_RELEASE_NUMBER ] # Helper functions require 'wx/helpers' # Load in all the class extension methods written in ruby # evthandler must be required first b/c it sets up methods modified elsewhere require 'wx/classes/evthandler.rb' class_files = File.join( File.dirname(__FILE__), 'wx', 'classes', '*.rb') Dir.glob(class_files) do | class_file | require 'wx/classes/' + class_file[/\w+\.rb$/] end # Load in syntax sweeteners require 'wx/accessors' require 'wx/keyword_ctors' require 'wx/keyword_defs' # If a program is ended by ruby's exit, it can bypass doing the proper # Wx clean-up routines called by Wx::App#on_exit. This can under some # circumstances cause crashes as the application ends. Kernel::at_exit do # This is set in wxRubyApp.OnExit (see swig/classes/App.i) if not $__wx_app_ended__ Wx::THE_APP.on_exit end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wxruby-1.9.8-x86-mingw32 | lib/wx.rb |
wxruby-1.9.8-x86-mswin32-60 | lib/wx.rb |