Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more
# File tk/lib/tk/clipboard.rb, line 47 def self.append(data, keys=nil) args = ['clipboard', 'append'] args.concat(hash_kv(keys)) args.concat(['--', data]) tk_call(*args) end
# File tk/lib/tk/clipboard.rb, line 53 def self.append_on_display(win, data, keys=nil) args = ['clipboard', 'append', '-displayof', win] args.concat(hash_kv(keys)) args.concat(['--', data]) tk_call(*args) end
# File tk/lib/tk/clipboard.rb, line 12 def self.clear(win=nil) if win tk_call_without_enc('clipboard', 'clear', '-displayof', win) else tk_call_without_enc('clipboard', 'clear') end end
# File tk/lib/tk/clipboard.rb, line 19 def self.clear_on_display(win) tk_call_without_enc('clipboard', 'clear', '-displayof', win) end
# File tk/lib/tk/clipboard.rb, line 23 def self.get(type=nil) if type tk_call_without_enc('clipboard', 'get', '-type', type) else tk_call_without_enc('clipboard', 'get') end end
# File tk/lib/tk/clipboard.rb, line 30 def self.get_on_display(win, type=nil) if type tk_call_without_enc('clipboard', 'get', '-displayof', win, '-type', type) else tk_call_without_enc('clipboard', 'get', '-displayof', win) end end
# File tk/lib/tk/clipboard.rb, line 71 def append(data, keys=nil) TkClipboard.append_on_display(self, data, keys) self end
# File tk/lib/tk/clipboard.rb, line 60 def clear TkClipboard.clear_on_display(self) self end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.