2023-11-16 14:37:09 -05:00
|
|
|
import Variable from 'resource:///com/github/Aylur/ags/variable.js';
|
2023-11-21 01:29:46 -05:00
|
|
|
|
2023-11-06 21:41:30 -05:00
|
|
|
import { Button, EventBox } from 'resource:///com/github/Aylur/ags/widget.js';
|
2023-10-02 12:06:35 -04:00
|
|
|
|
2023-11-16 14:37:09 -05:00
|
|
|
import Gtk from 'gi://Gtk';
|
2023-09-04 22:27:34 -04:00
|
|
|
|
2023-10-02 12:06:35 -04:00
|
|
|
|
2023-11-16 14:37:09 -05:00
|
|
|
// TODO: wrap in another EventBox for disabled cursor
|
2023-10-17 13:47:02 -04:00
|
|
|
export default ({
|
2023-11-06 18:37:23 -05:00
|
|
|
isButton = false,
|
2023-11-21 01:29:46 -05:00
|
|
|
onPrimaryClickRelease = () => { /**/ },
|
2023-10-20 23:11:21 -04:00
|
|
|
...props
|
2023-10-17 13:47:02 -04:00
|
|
|
}) => {
|
2023-11-16 14:37:09 -05:00
|
|
|
// Make this variable to know if the function should
|
|
|
|
// be executed depending on where the click is released
|
|
|
|
const CanRun = Variable(true);
|
|
|
|
|
|
|
|
const properties = {
|
|
|
|
...props,
|
2023-11-16 15:02:00 -05:00
|
|
|
cursor: 'pointer',
|
2023-11-21 01:29:46 -05:00
|
|
|
onPrimaryClickRelease: (self) => {
|
2023-11-16 14:37:09 -05:00
|
|
|
// Every click, do a one shot connect to
|
|
|
|
// CanRun to wait for location of click
|
|
|
|
const id = CanRun.connect('changed', () => {
|
2023-11-21 01:29:46 -05:00
|
|
|
if (CanRun.value) {
|
2023-11-16 14:37:09 -05:00
|
|
|
onPrimaryClickRelease(self);
|
2023-11-21 01:29:46 -05:00
|
|
|
}
|
2023-11-16 14:37:09 -05:00
|
|
|
|
|
|
|
CanRun.disconnect(id);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
let widget;
|
2023-11-21 01:29:46 -05:00
|
|
|
|
|
|
|
if (isButton) {
|
2023-11-16 14:37:09 -05:00
|
|
|
widget = Button(properties);
|
2023-11-21 01:29:46 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
widget = EventBox(properties);
|
|
|
|
}
|
2023-11-16 14:37:09 -05:00
|
|
|
|
|
|
|
const gesture = Gtk.GestureLongPress.new(widget);
|
|
|
|
|
|
|
|
widget.connectTo(gesture, () => {
|
|
|
|
const pointer = gesture.get_point(null);
|
|
|
|
const x = pointer[1];
|
|
|
|
const y = pointer[2];
|
|
|
|
|
2023-11-21 01:29:46 -05:00
|
|
|
if ((!x || !y) || (x === 0 && y === 0)) {
|
2023-11-16 14:37:09 -05:00
|
|
|
return;
|
2023-11-21 01:29:46 -05:00
|
|
|
}
|
2023-11-16 14:37:09 -05:00
|
|
|
|
|
|
|
CanRun.value = !(
|
|
|
|
x > widget.get_allocated_width() ||
|
|
|
|
y > widget.get_allocated_height()
|
|
|
|
);
|
|
|
|
}, 'end');
|
|
|
|
|
|
|
|
return widget;
|
2023-10-20 23:11:21 -04:00
|
|
|
};
|