-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
47 lines (39 loc) · 1.85 KB
/
Copy path__init__.py
File metadata and controls
47 lines (39 loc) · 1.85 KB
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
#!/usr/bin/env python
# This file is part of the Better Python Console Plugin for Gedit
# Copyright (C) 2007 Zeth Green <zethgreen@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 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 St, Fifth Floor, Boston, MA 02110-1301 USA
"""IDLE like Console for Gedit, hit F5 and it executes the module"""
from gi.repository import Gtk, GObject, Gedit
import consolefunctions
import sys
class BetterConsolePlugin(GObject.Object, Gedit.WindowActivatable):
"""This Class creates the Gedit plugin. """
window = GObject.property(type=Gedit.Window)
def __init__(self):
GObject.Object.__init__(self)
self._instances = {}
def do_activate(self):
"""This adds the plugin to the running Gedit. This method is used
when the plugin is turned on and then when Gedit starts"""
home_path = __path__[0]
self._instances[self.window] = consolefunctions.BetterConsoleHelper(self, self.window, home_path)
def do_deactivate(self):
"""This removes the plugin from the running Gedit."""
self._instances[self.window].deactivate()
del self._instances[self.window]
def update_ui(self):
"""We do not use this yet."""
self._instances[self.window].update_ui()