nixos-configs/nixosModules/ags/config/widgets/on-screen-keyboard/osk-window.tsx
matt1432 85a9b91aad
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags osk): add spam typing on long press
2024-11-25 17:25:27 -05:00

20 lines
522 B
TypeScript

import { App, Widget } from 'astal/gtk3';
import { register } from 'astal/gobject';
@register()
export default class OskWindow extends Widget.Window {
public startY: number | null = null;
declare public killGestureSigs: () => void;
declare public setSlideUp: () => void;
declare public setSlideDown: () => void;
get_child(): Widget.Box {
return super.get_child() as Widget.Box;
}
constructor({ ...rest }: Widget.WindowProps) {
super({ application: App, ...rest });
}
}