nixos-configs/modules/ags/gtk4/widget/subclasses/box.ts
matt1432 adb36c2b34
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(ags4): use agsV1 syntax
2025-01-13 10:51:02 -05:00

28 lines
783 B
TypeScript

import { register } from 'astal';
import { Astal, type ConstructProps, Gtk } from 'astal/gtk4';
import astalify, { type AstalifyProps } from './astalify';
export type BoxProps = ConstructProps<
BoxClass,
Astal.Box.ConstructorProps & AstalifyProps
>;
@register({ GTypeName: 'Box' })
export class BoxClass extends astalify(Astal.Box) {
constructor({ cssName = 'box', ...props }: BoxProps = {}) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
super({ cssName, ...props as any });
}
getChildren(self: BoxClass) {
return self.get_children();
}
setChildren(self: BoxClass, children: Gtk.Widget[]) {
return self.set_children(children);
}
}
export const Box = (props?: BoxProps) => new BoxClass(props);