parent
8bd0b732e7
commit
557e4c7a52
32 changed files with 281 additions and 12 deletions
modules/ags/gtk4/widgets/subclasses
19
modules/ags/gtk4/widgets/subclasses/window.ts
Normal file
19
modules/ags/gtk4/widgets/subclasses/window.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
import { register } from 'astal';
|
||||
import { Astal } from 'astal/gtk4';
|
||||
|
||||
import astalify, { type AstalifyProps, type ConstructProps } 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 = {}) {
|
||||
super({ cssName, ...props });
|
||||
}
|
||||
}
|
||||
|
||||
export const Window = (props?: WindowProps) => new WindowClass(props);
|
Loading…
Add table
Add a link
Reference in a new issue