2023-08-27 11:28:14 -04:00
|
|
|
export const Closer = ags.Widget.Window({
|
|
|
|
name: 'closer',
|
|
|
|
popup: true,
|
|
|
|
layer: 'top',
|
|
|
|
anchor: 'top bottom left right',
|
|
|
|
|
|
|
|
child: ags.Widget.EventBox({
|
|
|
|
onPrimaryClickRelease: () => {
|
|
|
|
ags.App.closeWindow('powermenu');
|
|
|
|
ags.App.closeWindow('closer');
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
});
|
2023-09-04 22:27:34 -04:00
|
|
|
|
|
|
|
export const Separator = width => ags.Widget.Box({
|
|
|
|
style: `min-width: ${width}px;`,
|
|
|
|
});
|
|
|
|
|
|
|
|
import Gdk from 'gi://Gdk';
|
|
|
|
const display = Gdk.Display.get_default();
|
|
|
|
|
|
|
|
export const EventBox = ({ ...params }) => ags.Widget.EventBox({
|
|
|
|
...params,
|
|
|
|
onHover: box => {
|
|
|
|
box.window.set_cursor(Gdk.Cursor.new_from_name(display, 'pointer'));
|
|
|
|
},
|
|
|
|
onHoverLost: box => {
|
|
|
|
box.window.set_cursor(null);
|
|
|
|
},
|
|
|
|
});
|