mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
26 lines
550 B
Ruby
26 lines
550 B
Ruby
![]() |
#
|
||
|
# tlabelframe widget
|
||
|
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
||
|
#
|
||
|
require 'tk'
|
||
|
require 'tkextlib/tile.rb'
|
||
|
|
||
|
module Tk
|
||
|
module Tile
|
||
|
class TLabelframe < Tk::Tile::TFrame
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class Tk::Tile::TLabelframe < Tk::Tile::TFrame
|
||
|
include Tk::Tile::TileWidget
|
||
|
|
||
|
if Tk::Tile::USE_TTK_NAMESPACE
|
||
|
TkCommandNames = ['::ttk::labelframe'.freeze].freeze
|
||
|
else
|
||
|
TkCommandNames = ['::tlabelframe'.freeze].freeze
|
||
|
end
|
||
|
WidgetClassName = 'TLabelframe'.freeze
|
||
|
WidgetClassNames[WidgetClassName] = self
|
||
|
end
|