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

22 lines
565 B
TypeScript
Raw Normal View History

2025-01-01 13:38:44 -05:00
import { register } from 'astal';
import { Gtk } from 'astal/gtk4';
2025-01-01 13:38:44 -05:00
import astalify, { type AstalifyProps, type ConstructProps } from '../astalify';
2025-01-01 13:38:44 -05:00
export type ImageProps = ConstructProps<
2025-01-13 10:51:02 -05:00
ImageClass,
Gtk.Image.ConstructorProps & AstalifyProps
2025-01-01 13:38:44 -05:00
>;
@register({ GTypeName: 'Image' })
2025-01-13 10:51:02 -05:00
export class ImageClass extends astalify(Gtk.Image) {
constructor({ cssName = 'image', ...props }: ImageProps = {}) {
super({ cssName, ...props });
2025-01-13 10:51:02 -05:00
}
2025-01-01 13:38:44 -05:00
getChildren() { return []; }
}
2025-01-13 10:51:02 -05:00
export const Image = (props?: ImageProps) => new ImageClass(props);