在修改的GNOME扩展代码中获取错误

时间:2014-06-13 12:58:26

标签: gnome-shell-extensions

最近我开始使用GNOME扩展开发。通过在终端中执行gnome-shell-extension-tool --create-extension,我创建了hello world扩展,但是当我更改代码以构建类似扩展的弹出窗口时,我收到此错误enter image description here

我正在使用的JS代码是

const St = imports.gi.St;
const Mainloop = imports.mainloop;
const Main = imports.ui.main;
const Shell = imports.gi.Shell;
const Lang = imports.lang;
const PopupMenu = imports.ui.popupMenu;
const PanelMenu = imports.ui.panelMenu;
const Gettext = imports.gettext;
const MessageTray = imports.ui.messageTray;

const _ = Gettext.gettext;

function _myButton() {
    this._init();
}

_myButton.prototype = {
    __proto__: PanelMenu.Button.prototype,

    _init: function() {
        PanelMenu.Button.prototype._init.call(this, 0.0);
        this._label = new St.Label({ style_class: 'panel-label', text: _("HelloWorld Button") });
        this.actor.set_child(this._label);
        Main.panel._centerBox.add(this.actor, { y_fill: true });

        this._myMenu = new PopupMenu.PopupMenuItem(_('HelloWorld MenuItem'));
        this.menu.addMenuItem(this._myMenu);
        this._myMenu.connect('activate', Lang.bind(this, _showHello));
    },

    _onDestroy: function() {}
};

function _showHello() {

    let text = new St.Label({ style_class: 'helloworld-label', text: _("Hello, world!") });
    let monitor = global.get_primary_monitor();

    global.stage.add_actor(text);
    text.set_position(Math.floor (monitor.width / 2 - text.width / 2),
                      Math.floor(monitor.height / 2 - text.height / 2));

    Mainloop.timeout_add(3000, function () { text.destroy(); });
}


function main(extensionMeta) {

    let userExtensionLocalePath = extensionMeta.path + '/locale';
    Gettext.bindtextdomain("helloworld", userExtensionLocalePath);
    Gettext.textdomain("helloworld");

    let _myPanelButton = new _myButton();
}

任何人都可以告诉我为什么会收到此错误。我正在使用Fedora 20和GNOME Shell 3.10.2.1

1 个答案:

答案 0 :(得分:2)

您缺少enable()中的disable()extension.js功能。这两个是强制性的:enable()是加载扩展程序后的入口点(而不是main());在gnome-tweak-tool中停用后调用disable()。这些基本功能必须存在于所有扩展中,包括" Hello World"你提到的例子。

Gnome Shell文档很少且不足。我猜测你的代码基于非常旧的指导原则,因为main()函数自3.2以来已被弃用。阅读以下参考文献:12