summaryrefslogtreecommitdiff
path: root/ruby_1_8_5/ext/tk/lib/tkextlib/blt/tabnotebook.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_5/ext/tk/lib/tkextlib/blt/tabnotebook.rb')
-rw-r--r--ruby_1_8_5/ext/tk/lib/tkextlib/blt/tabnotebook.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/ruby_1_8_5/ext/tk/lib/tkextlib/blt/tabnotebook.rb b/ruby_1_8_5/ext/tk/lib/tkextlib/blt/tabnotebook.rb
new file mode 100644
index 0000000000..508fa2b82f
--- /dev/null
+++ b/ruby_1_8_5/ext/tk/lib/tkextlib/blt/tabnotebook.rb
@@ -0,0 +1,21 @@
+#
+# tkextlib/blt/tabnotebook.rb
+# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
+#
+
+require 'tk'
+require 'tkextlib/blt.rb'
+require 'tkextlib/blt/tabset.rb'
+
+module Tk::BLT
+ class Tabnotebook < Tabset
+ TkCommandNames = ['::blt::tabnotebook'.freeze].freeze
+ WidgetClassName = 'Tabnotebook'.freeze
+ WidgetClassNames[WidgetClassName] = self
+
+ def get_tab(index)
+ Tk::BLT::Tabset::Tab.id2obj(tk_send_without_enc('id', tagindex(index)))
+ end
+ alias get_id get_tab
+ end
+end