Displaying 1 result from an estimated 1 matches for "bmp_file1".
Did you mean:
bmp_file
2007 Jul 17
0
[1116] trunk/wxruby2/samples/bigdemo/wxStaticBitmap.rbw: Fix hardcoded image paths, tidy up indenting
...Ousterhout (and Dunn) can do it, so can I.", Wx::Point.new(100, 125))
- end
</del><ins>+ 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.dir...