summaryrefslogtreecommitdiffstats
path: root/ext/tk/lib/tkclass.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-08-13 05:37:52 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-08-13 05:37:52 +0000
commit29b7d942bfe9a92b5c3124e235fa54b5de31dccf (patch)
tree3ea2e607f9ea08c56830ef7b803cd259e3d67c7f /ext/tk/lib/tkclass.rb
parenta2af08da0c33d2dcde870b491f62a8bd0c1c6b81 (diff)
downloadruby-29b7d942bfe9a92b5c3124e235fa54b5de31dccf.tar.gz
ruby-29b7d942bfe9a92b5c3124e235fa54b5de31dccf.tar.xz
ruby-29b7d942bfe9a92b5c3124e235fa54b5de31dccf.zip
remove marshal/gtk/kconv
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@518 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tkclass.rb')
-rw-r--r--ext/tk/lib/tkclass.rb38
1 files changed, 38 insertions, 0 deletions
diff --git a/ext/tk/lib/tkclass.rb b/ext/tk/lib/tkclass.rb
new file mode 100644
index 000000000..0b33d4ec8
--- /dev/null
+++ b/ext/tk/lib/tkclass.rb
@@ -0,0 +1,38 @@
+#
+# tkclass.rb - Tk classes
+# $Date$
+# by Yukihiro Matsumoto <matz@caelum.co.jp>
+
+require "tk"
+
+TopLevel = TkToplevel
+Frame = TkFrame
+Label = TkLabel
+Button = TkButton
+Radiobutton = TkRadioButton
+Checkbutton = TkCheckButton
+Message = TkMessage
+Entry = TkEntry
+Text = TkText
+Scale = TkScale
+Scrollbar = TkScrollbar
+Listbox = TkListbox
+Menu = TkMenu
+Menubutton = TkMenubutton
+Canvas = TkCanvas
+Arc = TkcArc
+Bitmap = TkcBitmap
+Line = TkcLine
+Oval = TkcOval
+Polygon = TkcPolygon
+Rectangle = TkcRectangle
+TextItem = TkcText
+WindowItem = TkcWindow
+Selection = TkSelection
+Winfo = TkWinfo
+Pack = TkPack
+Variable = TkVariable
+
+def Mainloop
+ Tk.mainloop
+end