forked from valentinbasel/icaro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terminal_vte.py
executable file
·51 lines (47 loc) · 1.53 KB
/
terminal_vte.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# test_terminal_vte.py
#
# Copyright 2015 valentin basel <vbasel@localhost.localdomain>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#
import sys
import gtk
import vte
from utilidades_ventana import UTILIDADES
class TERM_CLEMENTE:
""" Class doc """
def __init__(self,prt):
""" Class initialiser """
src = sys.path[0]
cad=prt
mens = UTILIDADES()
window = gtk.Window()
window.set_title("pyshell")
window.set_default_size(800, 480)
scroll = gtk.ScrolledWindow()
shell = vte.Terminal()
shell.connect("child-exited", gtk.main_quit)
shell.fork_command()
shell.feed_child(cad)
scroll.add(shell)
window.add(scroll)
window.connect('delete-event', lambda x: window.hide())
window.show_all()
#~ gtk.main()