File: PluginSystemInitializer.py

package info (click to toggle)
scribes 0.4~r543-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 6,836 kB
  • ctags: 6,779
  • sloc: python: 32,963; perl: 2,747; xml: 2,233; sh: 847; makefile: 597
file content (36 lines) | stat: -rw-r--r-- 980 bytes parent folder | download
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
class Initializer(object):

	def __init__(self, editor, uri):
		editor.response()
		self.__init_attributes(editor)
		self.__sigid1 = editor.connect_after("loaded-file", self.__loaded_cb)
		self.__sigid2 = editor.connect("load-error", self.__loaded_cb)
		if not uri: self.__init_plugins()
		editor.response()

	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)
		del self
		self = None
		return

	def __init_plugins(self):
		self.__editor.response()
		self.__editor.move_view_to_cursor(True)
		from PluginInitializer.Manager import Manager
		Manager(self.__editor)
		self.__editor.emit("ready")
		self.__editor.refresh()
		self.__destroy()
		return False

	def __loaded_cb(self, *args):
		self.__editor.response()
		from gobject import idle_add
		idle_add(self.__init_plugins, priority=999999)
		return False