summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tk/labelframe.rb
blob: 73d560320049c3fab5aaccf3b49c3843c6213dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# tk/labelframe.rb : treat labelframe widget
#
require 'tk'
require 'tk/frame'

class TkLabelFrame<TkFrame
  TkCommandNames = ['labelframe'.freeze].freeze
  WidgetClassName = 'Labelframe'.freeze
  WidgetClassNames[WidgetClassName] = self
  #def create_self(keys)
  #  if keys and keys != None
  #    tk_call_without_enc('labelframe', @path, *hash_kv(keys, true))
  #  else
  #    tk_call_without_enc('labelframe', @path)
  #  end
  #end
  #private :create_self

  def __val2ruby_optkeys  # { key=>proc, ... }
    super().update('labelwidget'=>proc{|v| window(v)})
  end
  private :__val2ruby_optkeys
end
TkLabelframe = TkLabelFrame