mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
These have been long deprecated over in clutter, and (via several vtables) simply forward the call to the equivalent ClutterActor methods Save ourselves the hassle and just use ClutterActor methods directly Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3010>
69 lines
2.3 KiB
JavaScript
69 lines
2.3 KiB
JavaScript
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
import Clutter from 'gi://Clutter';
|
|
import St from 'gi://St';
|
|
|
|
import * as BoxPointer from './boxpointer.js';
|
|
import * as PopupMenu from './popupMenu.js';
|
|
|
|
import * as Main from './main.js';
|
|
|
|
export class BackgroundMenu extends PopupMenu.PopupMenu {
|
|
constructor(layoutManager) {
|
|
super(layoutManager.dummyCursor, 0, St.Side.TOP);
|
|
|
|
this.addSettingsAction(_('Change Background…'), 'gnome-background-panel.desktop');
|
|
this.addMenuItem(new PopupMenu.PopupSeparatorMenuItem());
|
|
this.addSettingsAction(_('Display Settings'), 'gnome-display-panel.desktop');
|
|
this.addSettingsAction(_('Settings'), 'org.gnome.Settings.desktop');
|
|
|
|
this.actor.add_style_class_name('background-menu');
|
|
|
|
layoutManager.uiGroup.add_child(this.actor);
|
|
this.actor.hide();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {Meta.BackgroundActor} actor
|
|
* @param {import('./layout.js').LayoutManager} layoutManager
|
|
*/
|
|
export function addBackgroundMenu(actor, layoutManager) {
|
|
actor.reactive = true;
|
|
actor._backgroundMenu = new BackgroundMenu(layoutManager);
|
|
actor._backgroundManager = new PopupMenu.PopupMenuManager(actor);
|
|
actor._backgroundManager.addMenu(actor._backgroundMenu);
|
|
|
|
function openMenu(x, y) {
|
|
Main.layoutManager.setDummyCursorGeometry(x, y, 0, 0);
|
|
actor._backgroundMenu.open(BoxPointer.PopupAnimation.FULL);
|
|
}
|
|
|
|
let clickAction = new Clutter.ClickAction();
|
|
clickAction.connect('long-press', (action, theActor, state) => {
|
|
if (state === Clutter.LongPressState.QUERY) {
|
|
return (action.get_button() === 0 ||
|
|
action.get_button() === 1) &&
|
|
!actor._backgroundMenu.isOpen;
|
|
}
|
|
if (state === Clutter.LongPressState.ACTIVATE) {
|
|
let [x, y] = action.get_coords();
|
|
openMenu(x, y);
|
|
actor._backgroundManager.ignoreRelease();
|
|
}
|
|
return true;
|
|
});
|
|
clickAction.connect('clicked', action => {
|
|
if (action.get_button() === 3) {
|
|
let [x, y] = action.get_coords();
|
|
openMenu(x, y);
|
|
}
|
|
});
|
|
actor.add_action(clickAction);
|
|
|
|
actor.connect('destroy', () => {
|
|
actor._backgroundMenu.destroy();
|
|
actor._backgroundMenu = null;
|
|
actor._backgroundManager = null;
|
|
});
|
|
}
|