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

32 lines
858 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 MenuButtonProps = ConstructProps<
MenuButton,
Gtk.MenuButton.ConstructorProps & { css: string }
>;
@register({ GTypeName: 'MenuButton' })
export class MenuButton extends astalify(Gtk.MenuButton) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2025-01-01 13:38:44 -05:00
constructor(props?: MenuButtonProps) { super(props as any); }
getChildren(self: MenuButton) {
return [self.popover, self.child];
}
setChildren(self: MenuButton, children: Gtk.Widget[]) {
for (const child of children) {
2025-01-01 13:38:44 -05:00
if (child instanceof Gtk.Popover) {
self.set_popover(child);
}
else {
self.set_child(child);
}
}
}
}