nixos-configs/modules/ags/gtk4/widget/subclasses/window.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
625 B
TypeScript

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