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

# call setup script for general 'tkextlib' libraries
require 'tkextlib/setup.rb'

# call setup script  --  <libdir>/tkextlib/tile.rb
require(File.dirname(File.expand_path(__FILE__)) + '.rb')

class Tk::Tile::TMenubutton < TkMenubutton
  include Tk::Tile::TileWidget

  TkCommandNames = ['tmenubutton'.freeze].freeze
  WidgetClassName = 'TMenubutton'.freeze
  WidgetClassNames[WidgetClassName] = self

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