mirror of
https://github.com/xsghetti/HyprCrux.git
synced 2025-07-04 06:10:40 -04:00
158 lines
3.2 KiB
JavaScript
158 lines
3.2 KiB
JavaScript
import Gtk from "gi://Gtk?version=3.0"
|
|
import options from '../options.js';
|
|
|
|
export const Padding = (name,
|
|
css = "",
|
|
hexpand = true,
|
|
vexpand = true,
|
|
) => Widget.EventBox({
|
|
hexpand,
|
|
vexpand,
|
|
can_focus: false,
|
|
child: Widget.Box({ css }),
|
|
setup: w => w.on("button-press-event", () => App.toggleWindow(name)),
|
|
})
|
|
|
|
const PopupRevealer = (
|
|
name,
|
|
child,
|
|
transition = "slide_down",
|
|
) => Widget.Box(
|
|
{ css: "padding: 1px;", class_name: "popup-borderbox" },
|
|
Widget.Revealer({
|
|
transition,
|
|
child: Widget.Box({
|
|
class_name: "window-content",
|
|
child,
|
|
}),
|
|
transitionDuration: options.theme.PopupTransitionDuration,
|
|
setup: self => self.hook(App, (_, wname, visible) => {
|
|
if (wname === name)
|
|
self.reveal_child = visible
|
|
}),
|
|
}),
|
|
)
|
|
|
|
const Layout = (name, child, transition) => ({
|
|
"center": () => Widget.CenterBox({},
|
|
Padding(name),
|
|
Widget.CenterBox(
|
|
{ vertical: true },
|
|
Padding(name),
|
|
PopupRevealer(name, child, transition),
|
|
Padding(name),
|
|
),
|
|
Padding(name),
|
|
),
|
|
"top": () => Widget.CenterBox({},
|
|
Padding(name),
|
|
Widget.Box(
|
|
{ vertical: true },
|
|
PopupRevealer(name, child, transition),
|
|
Padding(name),
|
|
),
|
|
Padding(name),
|
|
),
|
|
"top-right": () => Widget.Box({},
|
|
Padding(name),
|
|
Widget.Box(
|
|
{
|
|
hexpand: false,
|
|
vertical: true,
|
|
},
|
|
PopupRevealer(name, child, transition),
|
|
Padding(name),
|
|
),
|
|
),
|
|
"top-center": () => Widget.Box({},
|
|
Padding(name),
|
|
Widget.Box(
|
|
{
|
|
hexpand: false,
|
|
vertical: true,
|
|
},
|
|
PopupRevealer(name, child, transition),
|
|
Padding(name),
|
|
),
|
|
Padding(name),
|
|
),
|
|
"top-left": () => Widget.Box({},
|
|
Widget.Box(
|
|
{
|
|
hexpand: false,
|
|
vertical: true,
|
|
},
|
|
PopupRevealer(name, child, transition),
|
|
Padding(name),
|
|
),
|
|
Padding(name),
|
|
),
|
|
"bottom-left": () => Widget.Box({},
|
|
Widget.Box(
|
|
{
|
|
hexpand: false,
|
|
vertical: true,
|
|
},
|
|
Padding(name),
|
|
PopupRevealer(name, child, transition),
|
|
),
|
|
Padding(name),
|
|
),
|
|
"bottom-center": () => Widget.Box({},
|
|
Padding(name),
|
|
Widget.Box(
|
|
{
|
|
hexpand: false,
|
|
vertical: true,
|
|
},
|
|
Padding(name),
|
|
PopupRevealer(name, child, transition),
|
|
),
|
|
Padding(name),
|
|
),
|
|
"bottom-right": () => Widget.Box({},
|
|
Padding(name),
|
|
Widget.Box(
|
|
{
|
|
hexpand: false,
|
|
vertical: true,
|
|
},
|
|
Padding(name),
|
|
PopupRevealer(name, child, transition),
|
|
),
|
|
),
|
|
"right": () => Widget.Box({},
|
|
Padding(name),
|
|
Widget.Box(
|
|
{
|
|
hexpand: false,
|
|
vertical: true,
|
|
},
|
|
// Padding(name),
|
|
PopupRevealer(name, child, transition),
|
|
),
|
|
),
|
|
})
|
|
|
|
export default ({
|
|
name,
|
|
child,
|
|
layout = "center",
|
|
transition,
|
|
exclusivity = "ignore",
|
|
...props
|
|
}) => Widget.Window({
|
|
name,
|
|
class_names: [name, "popup-window"],
|
|
popup: true,
|
|
visible: false,
|
|
keymode: "on-demand",
|
|
exclusivity,
|
|
layer: "top",
|
|
anchor: ["top", "bottom", "right", "left"],
|
|
child: Layout(name, child, transition)[layout](),
|
|
...props,
|
|
setup: (self => {
|
|
self.keybind("Escape", () => App.closeWindow(name))
|
|
})
|
|
})
|