summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tkextlib/blt/tile/checkbutton.rb
blob: ebe79179a590420eb7c197f5c44dd21df65b51a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
#  tkextlib/blt/tile/checkbutton.rb
#                               by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
#

require 'tk'
require 'tk/checkbutton'
require 'tkextlib/blt/tile.rb'

module Tk::BLT
  module Tile
    class Checkbutton < TkCheckbutton
      TkCommandNames = ['::blt::tile::checkbutton'.freeze].freeze
    end
    CheckButton = Checkbutton
  end
end