summaryrefslogtreecommitdiff
path: root/trunk/ext/tk/lib/tkextlib/blt/tile/checkbutton.rb
blob: da230b592578f6accbef2d9e44bab047aabdcd92 (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 < Tk::CheckButton
      TkCommandNames = ['::blt::tile::checkbutton'.freeze].freeze
    end
    Checkbutton = CheckButton
  end
end