mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7029 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			47 lines
		
	
	
	
		
			906 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
	
		
			906 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
#
 | 
						|
#               tkclass.rb - Tk classes
 | 
						|
#                       Date: 2000/11/27 09:23:36
 | 
						|
#                       by Yukihiro Matsumoto <matz@caelum.co.jp>
 | 
						|
#
 | 
						|
#                       $Id$
 | 
						|
 | 
						|
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
 |