Sha256: 2b53bbb1825b7e98aff3d5ec3307e2e7bbe355f8af2d75054ab4dc77fe12b641

Contents?: true

Size: 1.05 KB

Versions: 20

Compression:

Stored size: 1.05 KB

Contents

#!/usr/bin/env ruby

begin
  require 'wx'
rescue LoadError => no_wx_err
  begin
    require 'rubygems'
    require 'wx'
  rescue LoadError
    raise no_wx_err
  end
end
include Wx

class MyFrame < Frame
    def initialize
        super(nil, -1, "Wx::Frame demonstration", 
            DEFAULT_POSITION, Size.new(350,200), DEFAULT_FRAME_STYLE)
        panel = Panel.new(self, -1)
        
        button = Button.new(panel, -1, "Close me", Point.new(15,15))
        evt_button( button.get_id ) { on_close_me }
        evt_close { | e | on_close_window(e) }
    end
    
    def on_close_me
        close(true)
    end

    def on_close_window(event)

      event.skip
    end
end

module Demo
    def Demo.run(frame, nb, log)
        win = MyFrame.new
        frame.otherWin = win
        win.center_on_parent(Wx::BOTH)
        win.show(true)
    end
    
    def Demo.overview
        return "This is the wxFrame Overview!"
    
    end
end


if __FILE__ == $0
  run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
  load run_solo_lib
  run File.basename($0)
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
wxruby-1.9.3-i386-mswin32 samples/bigdemo/wxFrame.rbw
wxruby-1.9.2-powerpc-darwin8.10.0 samples/bigdemo/wxFrame.rbw
wxruby-1.9.2-i686-linux samples/bigdemo/wxFrame.rbw
wxruby-1.9.2-i686-darwin8.8.2 samples/bigdemo/wxFrame.rbw
wxruby-1.9.1-powerpc-darwin8.3.0 samples/bigdemo/wxFrame.rbw
wxruby-1.9.1-i686-linux samples/bigdemo/wxFrame.rbw
wxruby-1.9.1-i686-darwin8.4.1 samples/bigdemo/wxFrame.rbw
wxruby-1.9.0-powerpc-darwin8.10.0 samples/bigdemo/wxFrame.rbw
wxruby-1.9.0-i686-linux samples/bigdemo/wxFrame.rbw
wxruby-1.9.0-i686-darwin8.4.1 samples/bigdemo/wxFrame.rbw
wxruby-1.9.0-i386-mswin32 samples/bigdemo/wxFrame.rbw
wxruby-1.9.1-x86_64-linux samples/bigdemo/wxFrame.rbw
wxruby-1.9.2-x86_64-linux samples/bigdemo/wxFrame.rbw
wxruby-1.9.3-universal-darwin samples/bigdemo/wxFrame.rbw
wxruby-1.9.3-x86-linux samples/bigdemo/wxFrame.rbw
wxruby-1.9.4-x86_64-linux samples/bigdemo/wxFrame.rbw
wxruby-1.9.4-x86-linux samples/bigdemo/wxFrame.rbw
wxruby-1.9.5-universal-darwin-9 samples/bigdemo/wxFrame.rbw
wxruby-1.9.5-x86-linux samples/bigdemo/wxFrame.rbw
wxruby-1.9.5-x86_64-linux samples/bigdemo/wxFrame.rbw