summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tkextlib/tile/tlabel.rb
blob: d2eaf452736f0eb3d4611a590e31039a5ae16ae6 (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
26
27
28
29
30
#
#  tlabel widget
#                               by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
#
require 'tk'
require 'tkextlib/tile.rb'

module Tk
  module Tile
    class TLabel < TkLabel
    end
  end
end

class Tk::Tile::TLabel < TkLabel
  include Tk::Tile::TileWidget

  TkCommandNames = ['tlabel'.freeze].freeze
  WidgetClassName = 'TLabel'.freeze
  WidgetClassNames[WidgetClassName] = self

  def create_self(keys)
    if keys and keys != None
      tk_call_without_enc('tlabel', @path, *hash_kv(keys, true))
    else
      tk_call_without_enc('tlabel', @path)
    end
  end
  private :create_self
end