翻訳して勉強するGtkチュートリアル第19章は Clipboard です。
Gtk.Clipboard は、テキストや画像を含む様々なデータの保存領域を提供します。クリップボードを使えば、コピー・切り取り・貼り付けなどのアクションを通してデータをアプリケーション間で共有することができます。これらのアクションは通常3つの方法で行われます: キーボードショートカットを使う・Gtk.MenuItem を使う・Gtk.Button ウィジェットに関数を接続する、の3つです。
クリップボードには、目的に応じて複数の選択項目があります。ほとんどの場合 CLIPBOARD という名前の選択は、ふだんのコピーと貼り付けに使われます。 PRIMARY はもう1つの一般的な選択で、ユーザーがカーソルで選択したテキストを保存します。
19.1. 例
# tut19.py
# クリップボード
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, Gdk
class ClipboardWindow(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self, title="Clipboard Example")
table = Gtk.Table(3, 2)
self.clipboard = Gtk.Clipboard.get(Gdk.SELECTION_CLIPBOARD)
self.entry = Gtk.Entry()
self.image = Gtk.Image.new_from_icon_name("process-stop", Gtk.IconSize.MENU)
button_copy_text = Gtk.Button("Copy Text")
button_paste_text = Gtk.Button("Paste Text")
button_copy_image = Gtk.Button("Copy Image")
button_paste_image = Gtk.Button("Paste Image")
table.attach(self.entry, 0, 1, 0, 1)
table.attach(self.image, 0, 1, 1, 2)
table.attach(button_copy_text, 1, 2, 0, 1)
table.attach(button_paste_text, 2, 3, 0, 1)
table.attach(button_copy_image, 1, 2, 1, 2)
table.attach(button_paste_image, 2, 3, 1, 2)
button_copy_text.connect("clicked", self.copy_text)
button_paste_text.connect("clicked", self.paste_text)
button_copy_image.connect("clicked", self.copy_image)
button_paste_image.connect("clicked", self.paste_image)
self.add(table)
def copy_text(self, widget):
self.clipboard.set_text(self.entry.get_text(), -1)
def paste_text(self, widget):
text = self.clipboard.wait_for_text()
if text is not None:
self.entry.set_text(text)
else:
print("No text on the clipboard.")
def copy_image(self, widget):
if self.image.get_storage_type() == Gtk.ImageType.PIXBUF:
self.clipboard.set_image(self.image.get_pixbuf())
else:
print("No image has been pasted yet.")
def paste_image(self, widget):
image = self.clipboard.wait_for_image()
if image is not None:
self.image.set_from_pixbuf(image)
win = ClipboardWindow()
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()