aboutsummaryrefslogtreecommitdiff
path: root/dbus/portal.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-06-28 04:25:20 +0200
committerdec05eba <dec05eba@protonmail.com>2025-06-28 04:25:26 +0200
commitb9537941c9eba041b7afc8b0f4256c73e35c2387 (patch)
tree84b650502b0a54ae173acfa9b3cf45d5089beb0e /dbus/portal.h
parent2290f0641c91317c4fd05f35d2c0cfc25fba2181 (diff)
Restart portal capture if it's paused for 3 seconds or more (can happen if returning from lock screen)
Remove dbus server, no longer needed. Just run dbus code directly.
Diffstat (limited to 'dbus/portal.h')
-rw-r--r--dbus/portal.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/dbus/portal.h b/dbus/portal.h
deleted file mode 100644
index 6b93aa6..0000000
--- a/dbus/portal.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef GSR_PORTAL_H
-#define GSR_PORTAL_H
-
-typedef enum {
- GSR_PORTAL_CAPTURE_TYPE_MONITOR = 1 << 0,
- GSR_PORTAL_CAPTURE_TYPE_WINDOW = 1 << 1,
- GSR_PORTAL_CAPTURE_TYPE_VIRTUAL = 1 << 2,
- GSR_PORTAL_CAPTURE_TYPE_ALL = GSR_PORTAL_CAPTURE_TYPE_MONITOR | GSR_PORTAL_CAPTURE_TYPE_WINDOW | GSR_PORTAL_CAPTURE_TYPE_VIRTUAL
-} gsr_portal_capture_type;
-
-typedef enum {
- GSR_PORTAL_CURSOR_MODE_HIDDEN = 1 << 0,
- GSR_PORTAL_CURSOR_MODE_EMBEDDED = 1 << 1,
- GSR_PORTAL_CURSOR_MODE_METADATA = 1 << 2
-} gsr_portal_cursor_mode;
-
-#endif /* GSR_PORTAL_H */