nixos-configs/modules/ags/gtk4/widget/subclasses/popover.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

20 lines
630 B
TypeScript

import { register } from 'astal';
import { Gtk, type ConstructProps } from 'astal/gtk4';
import astalify, { type AstalifyProps } from './astalify';
export type PopoverProps = ConstructProps<
PopoverClass,
Gtk.Popover.ConstructorProps & AstalifyProps
>;
@register({ GTypeName: 'Popover' })
export class PopoverClass extends astalify(Gtk.Popover) {
constructor({ cssName = 'popover', ...props }: PopoverProps = {}) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
super({ cssName, ...props as any });
}
}
export const Popover = (props?: PopoverProps) => new PopoverClass(props);