class Rabbit::EmbedFrame

Public Instance Methods

fullscreen_available?() click to toggle source
# File lib/rabbit/frame.rb, line 228
def fullscreen_available?
  false
end
iconify_available?() click to toggle source
# File lib/rabbit/frame.rb, line 232
def iconify_available?
  false
end
init_gui(width, height, main_window, window_type=nil) click to toggle source
# File lib/rabbit/frame.rb, line 236
def init_gui(width, height, main_window, window_type=nil)
  @window = Gtk::EventBox.new
  @window.set_size_request(width, height)
  @canvas.attach_to(self, @window)
  @fullscreen_toggled = false
  @fullscreen = false
  @iconify = false
  @main_window = main_window
  @window.show
  @canvas.post_init_gui
end
update_title(new_title) click to toggle source
# File lib/rabbit/frame.rb, line 225
def update_title(new_title)
end