Python Forum
[GTK] Virtual python shell with Vte.Pty.spawn_async()
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[GTK] Virtual python shell with Vte.Pty.spawn_async()
#3
with your code you can not execute a command

try

import gi
gi.require_version('Gtk', '3.0')
gi.require_version('Vte', '2.91')
from gi.repository import Gtk, Vte, GLib, Pango, Gio
import os
 
class TheWindow(Gtk.Window):
    def __init__(self):
        Gtk.Window.__init__(self, title="GTK3 IDE")
        self.set_default_size(600, 300)
 
        terminal = Vte.Terminal()
        pty = Vte.Pty.new_sync(Vte.PtyFlags.DEFAULT)
        terminal.set_pty(pty)
 
        terminal.spawn_sync(
            Vte.PtyFlags.DEFAULT,
            os.environ['HOME'],
            ["/bin/sh"],
            [],
            GLib.SpawnFlags.DO_NOT_REAP_CHILD,
            None,
            None,
            )
 
        box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
 
        scroller = Gtk.ScrolledWindow()
        scroller.set_hexpand(True)
        scroller.set_vexpand(True)
        scroller.add(terminal)
        box.pack_start(scroller, False, True, 2)
        self.add(box)
 
    def ready(self, pty, task):
        print('pty ', pty)
 
 
win=TheWindow()
win.connect('destroy', Gtk.main_quit)
win.show_all()
Gtk.main()
Reply


Messages In This Thread
RE: [GTK] Virtual python shell with Vte.Pty.spawn_async() - by Axel_Erfurt - Oct-20-2019, 12:16 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Tkinter Shell Terminal Or Shell Output sweetthdevil 5 8,762 Feb-03-2024, 02:51 PM
Last Post: Gribouillis
  [Tkinter] Display on gui instead of Python shell Justin 2 4,243 Mar-05-2017, 06:33 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020