class TkMultimediaWrapper
Public Class Methods
new()
click to toggle source
#¶ ↑
initialize¶ ↑
#¶ ↑
# File lib/multimedia_paradise/gui/tk/tk_multimedia_wrapper.rb, line 17 def initialize @main_window = TkRoot.new() { title 'Multimedia Wrapper' } @main_window.geometry GUI_WIDTH.to_s+'x'+GUI_HEIGHT.to_s create_frames create_buttons create_keyevents Tk.root.resizable(false, false) Tk.mainloop() end
Public Instance Methods
create_frames()
click to toggle source