nixos-configs/devices/wim/config/ags/js/misc/cursorbox.js

89 lines
2.2 KiB
JavaScript
Raw Normal View History

import Variable from 'resource:///com/github/Aylur/ags/variable.js';
import { EventBox } from 'resource:///com/github/Aylur/ags/widget.js';
const { Gtk } = imports.gi;
2023-09-04 22:27:34 -04:00
2023-12-18 18:00:30 -05:00
/**
* @typedef {import('types/widgets/eventbox').EventBoxProps} EventBoxProps
* @typedef {import('types/widgets/eventbox').default} EventBox
2023-12-20 17:14:07 -05:00
*/
/** @param {EventBoxProps & {
* on_primary_click_release?: function(EventBox):void
* }} o
2023-12-18 18:00:30 -05:00
*/
export default ({
attribute,
on_primary_click_release = () => {/**/},
...props
}) => {
// Make this variable to know if the function should
// be executed depending on where the click is released
const CanRun = Variable(true);
const Disabled = Variable(false);
2023-12-20 17:14:07 -05:00
let widget = EventBox();
const wrapper = EventBox({
cursor: 'pointer',
attribute: {
...attribute,
disabled: Disabled,
get_child: () => widget.child,
2023-12-20 17:14:07 -05:00
/** @param {import('types/widgets/box').default} new_child */
set_child: (new_child) => {
widget.child = new_child;
},
},
}).hook(Disabled, (self) => {
self.cursor = Disabled.value ?
'not-allowed' :
'pointer';
});
widget = EventBox({
...props,
sensitive: Disabled.bind().transform((v) => !v),
on_primary_click_release: () => {
// Every click, do a one shot connect to
// CanRun to wait for location of click
const id = CanRun.connect('changed', () => {
if (CanRun.value) {
on_primary_click_release(wrapper);
}
CanRun.disconnect(id);
});
},
});
wrapper.child = widget;
const gesture = Gtk.GestureLongPress.new(widget);
widget.hook(gesture, () => {
const pointer = gesture.get_point(null);
const x = pointer[1];
const y = pointer[2];
if ((!x || !y) || (x === 0 && y === 0)) {
return;
}
CanRun.value = !(
x > widget.get_allocated_width() ||
y > widget.get_allocated_height()
);
}, 'end');
return wrapper;
};