class ClipboardManager::Message

Public Class Methods

new(key) click to toggle source
Calls superclass method
# File lib/clipboard_manager/clipboard_manager.rb, line 51
def initialize(key)
  super
  add_button '_OK', Gtk::ResponseType::OK
end

Public Instance Methods

label(key) click to toggle source
# File lib/clipboard_manager/clipboard_manager.rb, line 56
def label(key)
  Such::Label.new child, key
end
runs() click to toggle source
# File lib/clipboard_manager/clipboard_manager.rb, line 60
def runs
  show_all
  response = run
  destroy
end