parent
8bd0b732e7
commit
557e4c7a52
32 changed files with 281 additions and 12 deletions
modules/ags/gtk4/widgets/subclasses
27
modules/ags/gtk4/widgets/subclasses/box.ts
Normal file
27
modules/ags/gtk4/widgets/subclasses/box.ts
Normal file
|
@ -0,0 +1,27 @@
|
|||
import { register } from 'astal';
|
||||
import { Astal, Gtk } from 'astal/gtk4';
|
||||
|
||||
import astalify, { type AstalifyProps, type ConstructProps } from '../astalify';
|
||||
|
||||
|
||||
export type BoxProps = ConstructProps<
|
||||
BoxClass,
|
||||
Astal.Box.ConstructorProps & AstalifyProps
|
||||
>;
|
||||
|
||||
@register({ GTypeName: 'Box' })
|
||||
export class BoxClass extends astalify(Astal.Box) {
|
||||
constructor({ cssName = 'box', ...props }: BoxProps = {}) {
|
||||
super({ cssName, ...props });
|
||||
}
|
||||
|
||||
getChildren(self: BoxClass) {
|
||||
return self.get_children();
|
||||
}
|
||||
|
||||
setChildren(self: BoxClass, children: Gtk.Widget[]) {
|
||||
return self.set_children(children);
|
||||
}
|
||||
}
|
||||
|
||||
export const Box = (props?: BoxProps) => new BoxClass(props);
|
Loading…
Add table
Add a link
Reference in a new issue