Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/python_console.py
blob: ece3d12824cecbedc97aa53cbe342f2efc3aeedf (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

#       python_console.py by/por:
#       Agustin Zubiaga <aguszs97@gmail.com>
#       Daniel Francis <santiago.danielfrancis@gmail.com>
#
#       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 3 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 gtk
import vte

from signal import SIGTERM

import os
import sys


class PythonConsole(vte.Terminal):

    def __init__(self):
        vte.Terminal.__init__(self)

        self.fork_command("python")
        
        self.set_size_request(800, 150)
        
    def _clear_console(self):
        self.grab_focus()
        self.feed("\x1B[H\x1B[J\x1B[0;39m")

class PythonCodeRun(vte.Terminal):
    
    def __init__(self):
        vte.Terminal.__init__(self)
        
        self.set_size_request(800, 150)

    def _run(self, file):
        self.process_id = self.fork_command \
                          (command = "/bin/sh",
                           argv = ["/bin/sh", "-c",
                                   "python %s; sleep 1" % file])
    def _stop(self):
        try:
            os.kill(self.process_id, SIGTERM)
            self._clear_console()
        except:
            pass

    def _clear_console(self):
        self.grab_focus()
        self.feed("\x1B[H\x1B[J\x1B[0;39m")