Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to get a minimal implementation of Python3/GTK3's clipboard working. It will work if and only if I run Gtk.main(). I have even tried a :

While Gtk.event_pending():
    Gtk.main_iteration()

Without it working.

If I run the script with Gtk.main() it behaves as expected allowing me to paste the text into a test GUI editor. This script puts a text string t into the clipboard. The string text will be there if and only if Gtk.main() is called. If it is not called, but clipboard buffer with be cleared of whatever was there, but empty. I would really appreciate help on this. Any ideas how to make it work without calling Gtk.main()?

#! /usr/bin/env python3
# -*- coding: utf-8 -*-

from gi.repository import Gtk
from gi.repository import Gdk
import signal

class Chars(Gtk.Window):
    def __init__(self):
        super().__init__()
        self.connect('destroy', Gtk.main_quit)
        self.show_all()
        self.cb = Gtk.Clipboard.get(Gdk.SELECTION_CLIPBOARD)
        t='Some text'
        self.cb.set_text(t, -1)
        while Gtk.events_pending():
            Gtk.main_iteration()




def main():
    chars = Chars()
    signal.signal(signal.SIGINT, signal.SIG_DFL)
    # Gtk.main() # works if this is uncommented

if __name__ == "__main__":
    main()

Regards, Narnie

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.