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