Sha256: 85767d5a47552fe011c2d4e28071b5536668f590593df41ed56e65ac8104b9ba

Contents?: true

Size: 1.3 KB

Versions: 4

Compression:

Stored size: 1.3 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

class TestPanel < Wx::Panel
  def initialize(parent, log)
    super(parent, -1)
    
    Wx::StaticText.new( self, -1, "This is a wxStaticBitmap.", 
                        Wx::Point.new(45,5))
    
    bmp_file1 = File.join(File.dirname(__FILE__), 'icons', 'test2.xpm')
    Wx::StaticBitmap.new( self, -1, 
                          Wx::Bitmap.new(bmp_file1, Wx::BITMAP_TYPE_XPM), 
                          Wx::Point.new(80,25)) 
    
    bmp_file2 = File.join(File.dirname(__FILE__), 'icons', 'robert.xpm')
    Wx::StaticBitmap.new( self, -1, 
                          Wx::Bitmap.new(bmp_file2,  Wx::BITMAP_TYPE_XPM), 
                          Wx::Point.new(0, 100))

    Wx::StaticText.new( self, -1, 
                        "Hey, if Ousterhout (and Dunn) can do it, so can I.", 
                        Wx::Point.new(100, 125) )
  end
end

module Demo
  def Demo.run(frame,nb,log)
    win = TestPanel.new(nb, log)
    return win
  end
  
  def Demo.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

4 entries across 4 versions & 1 rubygems

Version Path
wxruby-1.9.5-i386-mswin32 samples/bigdemo/wxStaticBitmap.rbw
wxruby-1.9.4-i386-mswin32 samples/bigdemo/wxStaticBitmap.rbw
wxruby-1.9.2-i386-mswin32 samples/bigdemo/wxStaticBitmap.rbw
wxruby-1.9.1-i386-mswin32 samples/bigdemo/wxStaticBitmap.rbw