summaryrefslogtreecommitdiff
path: root/trunk/ext/tk/lib/tkextlib/tile/tradiobutton.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ext/tk/lib/tkextlib/tile/tradiobutton.rb')
-rw-r--r--trunk/ext/tk/lib/tkextlib/tile/tradiobutton.rb36
1 files changed, 36 insertions, 0 deletions
diff --git a/trunk/ext/tk/lib/tkextlib/tile/tradiobutton.rb b/trunk/ext/tk/lib/tkextlib/tile/tradiobutton.rb
new file mode 100644
index 0000000000..d653a6d256
--- /dev/null
+++ b/trunk/ext/tk/lib/tkextlib/tile/tradiobutton.rb
@@ -0,0 +1,36 @@
+#
+# tradiobutton widget
+# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
+#
+require 'tk'
+require 'tkextlib/tile.rb'
+
+module Tk
+ module Tile
+ class TRadioButton < Tk::RadioButton
+ end
+ TRadiobutton = TRadioButton
+ RadioButton = TRadioButton
+ Radiobutton = TRadioButton
+ end
+end
+
+Tk.__set_toplevel_aliases__(:Ttk, Tk::Tile::Radiobutton,
+ :TkRadiobutton, :TkRadioButton)
+
+
+class Tk::Tile::TRadioButton < Tk::RadioButton
+ include Tk::Tile::TileWidget
+
+ if Tk::Tile::USE_TTK_NAMESPACE
+ TkCommandNames = ['::ttk::radiobutton'.freeze].freeze
+ else
+ TkCommandNames = ['::tradiobutton'.freeze].freeze
+ end
+ WidgetClassName = 'TRadiobutton'.freeze
+ WidgetClassNames[WidgetClassName] = self
+
+ def self.style(*args)
+ [self::WidgetClassName, *(args.map!{|a| _get_eval_string(a)})].join('.')
+ end
+end