-
Notifications
You must be signed in to change notification settings - Fork 114
[Wayland] Add support for xdg-system-bell-v1 protocol #787
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,96 @@ | ||
| /* | ||
| * Copyright (C) 2024 Red Hat Inc. | ||
| * | ||
| * This program is free software; you can redistribute it and/or | ||
| * modify it under the terms of the GNU General Public License as | ||
| * published by the Free Software Foundation; either version 2 of the | ||
| * License, or (at your option) any later version. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, but | ||
| * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| * General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public License | ||
| * along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
| * | ||
| */ | ||
|
|
||
| #include "config.h" | ||
| #include "compositor/compositor-private.h" | ||
|
|
||
| #include "wayland/meta-wayland-system-bell.h" | ||
|
|
||
| #include "core/bell.h" | ||
| #include "wayland/meta-wayland-private.h" | ||
| #include "wayland/meta-wayland-surface.h" | ||
| #include "wayland/meta-wayland-versions.h" | ||
| #include "wayland/meta-wayland.h" | ||
|
|
||
| #include "xdg-system-bell-v1-server-protocol.h" | ||
|
|
||
| static void | ||
| system_bell_destroy (struct wl_client *client, | ||
| struct wl_resource *resource) | ||
| { | ||
| wl_resource_destroy (resource); | ||
| } | ||
|
|
||
| static MetaWindow * | ||
| find_window_from_resource (struct wl_resource *surface_resource) | ||
| { | ||
| MetaWaylandSurface *surface; | ||
|
|
||
| surface = wl_resource_get_user_data (surface_resource); | ||
| if (!surface) | ||
| return NULL; | ||
|
|
||
| return meta_wayland_surface_get_window (surface); | ||
| } | ||
|
|
||
| static void | ||
| system_bell_ring (struct wl_client *client, | ||
| struct wl_resource *resource, | ||
| struct wl_resource *surface_resource) | ||
| { | ||
| MetaDisplay *display = meta_get_display (); | ||
|
|
||
| if (surface_resource) | ||
| meta_bell_notify (display, find_window_from_resource (surface_resource)); | ||
| else | ||
| meta_bell_notify (display, NULL); | ||
| } | ||
|
|
||
| static const struct xdg_system_bell_v1_interface system_bell_implementation = | ||
| { | ||
| system_bell_destroy, | ||
| system_bell_ring, | ||
| }; | ||
|
|
||
| static void | ||
| system_bell_bind (struct wl_client *client, | ||
| void *user_data, | ||
| uint32_t version, | ||
| uint32_t id) | ||
| { | ||
| MetaWaylandCompositor *compositor = user_data; | ||
| struct wl_resource *resource; | ||
|
|
||
| resource = wl_resource_create (client, | ||
| &xdg_system_bell_v1_interface, | ||
| version, id); | ||
| wl_resource_set_implementation (resource, | ||
| &system_bell_implementation, | ||
| compositor, NULL); | ||
| } | ||
|
|
||
| void | ||
| meta_wayland_init_system_bell (MetaWaylandCompositor *compositor) | ||
| { | ||
| if (wl_global_create (compositor->wayland_display, | ||
| &xdg_system_bell_v1_interface, | ||
| META_WP_SYSTEM_BELL_V1_VERSION, | ||
| compositor, | ||
| system_bell_bind) == NULL) | ||
| g_error ("Failed to create xdg_system_bell_v1 global"); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| /* | ||
| * Copyright (C) 2024 Red Hat Inc. | ||
| * | ||
| * This program is free software; you can redistribute it and/or | ||
| * modify it under the terms of the GNU General Public License as | ||
| * published by the Free Software Foundation; either version 2 of the | ||
| * License, or (at your option) any later version. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, but | ||
| * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| * General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public License | ||
| * along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
| * | ||
| */ | ||
|
|
||
| #pragma once | ||
|
|
||
| #include "wayland/meta-wayland-types.h" | ||
|
|
||
| void meta_wayland_init_system_bell (MetaWaylandCompositor *compositor); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be first include?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done