Displaying 1 result from an estimated 1 matches for "thm_w".
Did you mean:
  shm_w
  
2004 Jan 08
3
pictorG
...'
include Wx
ID_SETROOT,ID_TOOLBAR,ID_SHOWCAT,ID_EDITLAB,=(1..40).to_a # nicer way???
# Tree = Tree(label, children) | Object (where Object is String...)
class Tree
  attr_reader :label, :children
  def initialize label, children=nil
    @label, @children = label, children
  end
end
THM_HEIGHT=THM_WIDTH=128
#========================================================================
class MyImageFrame < Dialog # -- opens a dialog to show a picture
  def initialize parent, title, filename
    super(parent, -1, title)
    @bitmap=Bitmap.new(filename,BITMAP_TYPE_ANY) # why should I say BITMAP_TY...