nixos-configs/modules/ags/gtk4/widget/subclasses/stack.ts
matt1432 8871cc8f01
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags4): add rest of subclasses
2025-01-01 13:38:44 -05:00

28 lines
757 B
TypeScript

/* eslint-disable @typescript-eslint/no-explicit-any */
import { register } from 'astal';
import { Gtk, type ConstructProps } from 'astal/gtk4';
import astalify, { filter } from './astalify';
export type StackProps = ConstructProps<
Stack,
Gtk.Stack.ConstructorProps & { css: string }
>;
@register({ GTypeName: 'Stack' })
export class Stack extends astalify(Gtk.Stack) {
constructor(props?: StackProps) { super(props as any); }
setChildren(self: Stack, children: any[]) {
for (const child of filter(children)) {
if (child.name !== '' && child.name !== null) {
self.add_named(child, child.name);
}
else {
self.add_child(child);
}
}
}
}