nixos-configs/modules/ags/gtk4/widget/subclasses/box.ts

25 lines
618 B
TypeScript
Raw Normal View History

2025-01-01 02:55:15 -05:00
import { register } from 'astal';
import { Astal, type ConstructProps, Gtk } from 'astal/gtk4';
2025-01-01 02:55:15 -05:00
import astalify from './astalify';
2025-01-01 02:55:15 -05:00
export type BoxProps = ConstructProps<
Box,
Astal.Box.ConstructorProps & { css: string }
>;
@register({ GTypeName: 'Box' })
export class Box extends astalify(Astal.Box) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2025-01-01 02:55:15 -05:00
constructor(props?: BoxProps) { super(props as any); }
getChildren(self: Box) {
return self.get_children();
}
setChildren(self: Box, children: Gtk.Widget[]) {
return self.set_children(children);
2025-01-01 02:55:15 -05:00
}
}