From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/ext/tk/lib/tkclass.rb | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 jni/ruby/ext/tk/lib/tkclass.rb (limited to 'jni/ruby/ext/tk/lib/tkclass.rb') diff --git a/jni/ruby/ext/tk/lib/tkclass.rb b/jni/ruby/ext/tk/lib/tkclass.rb new file mode 100644 index 0000000..9918ce6 --- /dev/null +++ b/jni/ruby/ext/tk/lib/tkclass.rb @@ -0,0 +1,47 @@ +# +# tkclass.rb - Tk classes +# Date: 2000/11/27 09:23:36 +# by Yukihiro Matsumoto +# +# $Id: tkclass.rb 25189 2009-10-02 12:04:37Z akr $ + +require "tk" + +TopLevel = TkToplevel +Frame = TkFrame +Label = TkLabel +Button = TkButton +Radiobutton = TkRadioButton +Checkbutton = TkCheckButton +Message = TkMessage +Entry = TkEntry +Spinbox = TkSpinbox +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 +BitmapImage = TkBitmapImage +PhotoImage = TkPhotoImage +Selection = TkSelection +Winfo = TkWinfo +Pack = TkPack +Grid = TkGrid +Place = TkPlace +Variable = TkVariable +Font = TkFont +VirtualEvent = TkVirtualEvent + +def Mainloop + Tk.mainloop +end -- cgit v1.2.3