0

我想将我的插件转移到 Gnome 3 中的新 gedit(来自 Gnome 2 Gedit),但它们并不都有效。

我已将它们的位置从 ~/,gnome2/gedit 更改为 ~/.local/share/gedit,并将所有文件从 *.gedit-plugin 重命名为 *.plugin,并将这些文件中的标题从[Gedit 插件] 到 [插件]。我现在可以在首选项的插件选项卡中看到它们,但启用它们会导致错误。

有没有简单的修复方法?

4

1 回答 1

3

如果您使用python,实际上并不难。您已经转换了 .plugin 文件。在 python 文件中,这是一个典型的差异:

-import gtk
-import gedit
-import gobject
-import pango
+from gi.repository import Gtk, GObject, Gedit

.......

-class PluginName(gedit.Plugin):
+class PluginName(GObject.Object, Gedit.WindowActivatable):
+    window = GObject.property(type=Gedit.Window)
+
     def __init__(self):
-        gedit.Plugin.__init__(self)
+        GObject.Object.__init__(self)
         self._instances = {}

-    def activate(self, window):
-        self._instances[window] = PluginNameWindowHelper(self, window)
+    def do_activate(self):
+        self._instances[self.window] = PluginNameWindowHelper(self, self.window)
+
+    def do_deactivate(self):
+        self._instances[self.window].deactivate()
+        del self._instances[self.window]

-    def deactivate(self, window):
-        self._instances[window].deactivate()
-        del self._instances[window]
+    def do_update_state(self):
+        self._instances[self.window].update_ui()

-    def update_ui(self, window):
-        self._instances[window].update_ui()

.......

-        self._action_group = gtk.ActionGroup("PluginNameActions")
+        self._action_group = Gtk.ActionGroup("PluginNameActions")

.......

-             line = document.get_text(line_start, line_end)
+             line = document.get_text(line_start, line_end, False)

前段时间我转换了 6 个插件,这些是我需要的唯一更改。

于 2012-04-04T06:05:12.350 回答