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