Sha256: 8d86e4e7eb7f597b7019d556806b181eb3613056bb5a82ddbe7c7a676ac37ce8

Contents?: true

Size: 1.15 KB

Versions: 18

Compression:

Stored size: 1.15 KB

Contents

#!/usr/bin/env ruby
# wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
# Freely reusable code: see SAMPLES-LICENSE.TXT for details
begin
  require 'rubygems' 
rescue LoadError
end
require 'wx'



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

    Wx::StaticText.new( self, :label => "Hey, if Ousterhout (and Dunn) can do it, so can I.", 
                        :pos => [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

18 entries across 18 versions & 3 rubygems

Version Path
wxruby3-0.9.2 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.1 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.0 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.0.pre.rc.3 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.0.pre.rc.2 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.0.pre.rc.1 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.0.pre.beta.14 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.0.pre.beta.13 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.0.pre.beta.11 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.0.pre.beta.10 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.0.pre.beta.9 samples/bigdemo/wxStaticBitmap.rbw
wxruby3-0.9.0.pre.beta.8 samples/bigdemo/wxStaticBitmap.rbw
wxruby-ruby19-2.0.1-x86-mingw32 samples/bigdemo/wxStaticBitmap.rbw
wxruby-ruby19-2.0.1-x86-linux samples/bigdemo/wxStaticBitmap.rbw
wxruby-ruby19-2.0.1-x86-darwin-9 samples/bigdemo/wxStaticBitmap.rbw
wxruby-2.0.1-x86-mingw32 samples/bigdemo/wxStaticBitmap.rbw
wxruby-2.0.1-x86-linux samples/bigdemo/wxStaticBitmap.rbw
wxruby-2.0.1-universal-darwin-9 samples/bigdemo/wxStaticBitmap.rbw