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

28 lines
754 B
TypeScript
Raw Normal View History

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