如何检测GNOME AppMenu上的点击?

时间:2018-04-30 12:27:45

标签: javascript ubuntu gnome gnome-3 gnome-shell

我正在尝试禁用GNOME应用程序菜单(左侧的小部件,位于顶部面板中的" Activities"按钮的右侧),以便对其进行点击以通过它进入底层面板,因此即使单击此按钮,也可以将窗口从最大化状态拖动。有可能吗?

或者,更好的方法是将左键单击传递给底层面板。我认为这也应该是可行的,但我不熟悉API以及我应该怎么做,即使我更喜欢这个选项。

我试过,首先设置Main.panel.statusArea.appMenu.container.enabled = false和类似的东西,但我无法猜出实际的名字。链接到这方面的文档会很棒。

之后,我发现我可以枚举各种元素的所有成员,如下:

for(var propertyName in this._appMenu.container) {
    log(propertyName);
}

虽然,我仍然无法弄清楚该物业将会是什么,或者我应该在哪里看。

我想将代码添加到扩展程序中,因此优先使用JavaScript代码。

非常感谢。

1 个答案:

答案 0 :(得分:0)

相关事件是我在此文档中找到的button-press-eventbutton-release-eventhttps://people.gnome.org/~gcampagna/docs/Clutter-1.0/Clutter.Actor.htmlhttps://developer.gnome.org/clutter/stable/clutter-Events.html

我使用以下方式订阅了它们:

this._wmHandlerIDs.push(Main.panel.statusArea.appMenu.actor.connect(
  'button-press-event', Lang.bind(this, this._click)
));

this._wmHandlerIDs.push(Main.panel.statusArea.appMenu.actor.connect(
  'button-release-event', Lang.bind(this, this._clicked)
));

Main._handledClick = 1; // ignore first click on the panel
Main._cancelClick = 0; // indicates if the button is still held

然后我可以破解我的方式并使应用程序按钮表现为标题栏:

_click: function (actor, event) {
    if (event.get_button() == 1) {
        Main._cancelClick = 0;
        if (event.get_click_count() == 1 && global.display.focus_window.get_maximized()) {
            Mainloop.timeout_add(100, function () {
                if (Main._handledClick == 1) {
                    Main._handledClick = 0;
                } else {
                    if (Main._cancelClick == 0) {
                        /* disable the following mice temporarly so
                        that this hack works; a better way would be 
                        nice; maybe that would also fix the mouse
                        button remaining stuck when dragging the
                        window */
                        Util.spawn(['xinput', '--disable', '12']);
                        Util.spawn(['xinput', '--disable', '15']);
                        Util.spawn(['xinput', '--disable', '16']);
                        Main.panel.statusArea.appMenu.hide();
                        Util.spawn(['xinput', '--enable', '12']);
                        Util.spawn(['xinput', '--enable', '15']);
                        Util.spawn(['xinput', '--enable', '16']);
                        Util.spawn(['xdotool', 'mousedown', '1']);
                        Mainloop.timeout_add(100, function () {
                            Main.panel.statusArea.appMenu.show();
                        });
                    }
                }
            });
        }
    } else if (event.get_button() == 2) {
        global.display.focus_window.delete(global.get_current_time());
        Mainloop.timeout_add(10, function () {
            Util.spawn(['xdotool', 'key', 'Escape']);
        });
    }
},

_clicked: function (actor, event) {
    if (event.get_button() == 1) {
        Main._cancelClick = 1;
        if (event.get_click_count() == 2) {
            if (global.display.focus_window.get_maximized()) {
                global.display.focus_window.unmaximize(MAXIMIZED);
            } else {
                global.display.focus_window.maximize(MAXIMIZED);
            }
        }
    }
},

我相信这些进口是必需的:

const Main           = imports.ui.main;
const Mainloop       = imports.mainloop;
const Meta           = imports.gi.Meta;
const MAXIMIZED      = Meta.MaximizeFlags.BOTH;

也许它可以帮助某些人缩短他们在搜索文档时的艰苦奋斗。