/usr/share/pyshared/SCRIBES/BarObjectManager.py is in scribes 0.4~r543-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | class Manager(object):
def __init__(self, editor):
self.__init_attributes(editor)
editor.set_data("bar_is_active", False)
self.__sigid1 = editor.connect("quit", self.__quit_cb)
self.__sigid2 = editor.connect("add-bar-object", self.__add_cb)
self.__sigid3 = editor.connect("remove-bar-object", self.__remove_cb)
editor.register_object(self)
def __init_attributes(self, editor):
self.__editor = editor
return
def __destroy(self):
self.__editor.disconnect_signal(self.__sigid1, self.__editor)
self.__editor.disconnect_signal(self.__sigid2, self.__editor)
self.__editor.disconnect_signal(self.__sigid3, self.__editor)
self.__editor.unregister_object(self)
del self
self = None
return False
def __add(self, bar):
container = self.__editor.gui.get_widget("BarBox")
from Exceptions import BarBoxAddError
if container.get_children(): raise BarBoxAddError
self.__editor.response()
container.add(bar) if bar.parent is None else bar.reparent(container)
container.show_all()
self.__editor.response()
self.__editor.set_data("bar_is_active", True)
self.__editor.emit("bar-is-active", True)
return False
def __remove(self, bar):
container = self.__editor.gui.get_widget("BarBox")
from Exceptions import BarBoxInvalidObjectError
if not (bar in container.get_children()): raise BarBoxInvalidObjectError
self.__editor.response()
container.hide()
container.remove(bar)
self.__editor.response()
self.__editor.set_data("bar_is_active", False)
self.__editor.emit("bar-is-active", False)
return False
def __quit_cb(self, *args):
self.__destroy()
return False
def __add_cb(self, editor, bar):
self.__add(bar)
return False
def __remove_cb(self, editor, bar):
self.__remove(bar)
return False
|