mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 19:46:20 +00:00
49 lines
1.9 KiB
TypeScript
49 lines
1.9 KiB
TypeScript
import { type Client } from "types/service/hyprland"
|
|
import { createSurfaceFromWidget, icon } from "lib/utils"
|
|
import Gdk from "gi://Gdk"
|
|
import Gtk from "gi://Gtk?version=3.0"
|
|
import options from "options"
|
|
import icons from "lib/icons"
|
|
|
|
const monochrome = options.overview.monochromeIcon
|
|
const TARGET = [Gtk.TargetEntry.new("text/plain", Gtk.TargetFlags.SAME_APP, 0)]
|
|
const hyprland = await Service.import("hyprland")
|
|
const apps = await Service.import("applications")
|
|
const dispatch = (args: string) => hyprland.messageAsync(`dispatch ${args}`)
|
|
|
|
export default ({ address, size: [w, h], class: c, title }: Client) => Widget.Button({
|
|
class_name: "client",
|
|
attribute: { address },
|
|
tooltip_text: `${title}`,
|
|
child: Widget.Icon({
|
|
css: options.overview.scale.bind().as(v => `
|
|
min-width: ${(v / 100) * w}px;
|
|
min-height: ${(v / 100) * h}px;
|
|
`),
|
|
icon: monochrome.bind().as(m => {
|
|
const app = apps.list.find(app => app.match(c))
|
|
if (!app)
|
|
return icons.fallback.executable + (m ? "-symbolic" : "")
|
|
|
|
|
|
return icon(
|
|
app.icon_name + (m ? "-symbolic" : ""),
|
|
icons.fallback.executable + (m ? "-symbolic" : ""),
|
|
)
|
|
}),
|
|
}),
|
|
on_secondary_click: () => dispatch(`closewindow address:${address}`),
|
|
on_clicked: () => {
|
|
dispatch(`focuswindow address:${address}`)
|
|
App.closeWindow("overview")
|
|
},
|
|
setup: btn => btn
|
|
.on("drag-data-get", (_w, _c, data) => data.set_text(address, address.length))
|
|
.on("drag-begin", (_, context) => {
|
|
Gtk.drag_set_icon_surface(context, createSurfaceFromWidget(btn))
|
|
btn.toggleClassName("hidden", true)
|
|
})
|
|
.on("drag-end", () => btn.toggleClassName("hidden", false))
|
|
.drag_source_set(Gdk.ModifierType.BUTTON1_MASK, TARGET, Gdk.DragAction.COPY),
|
|
})
|