After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 703049 - help overlay conflicts with fullscreen windows
help overlay conflicts with fullscreen windows
Status: RESOLVED FIXED
Product: gnome-control-center
Classification: Core
Component: Wacom
3.8.x
Other Linux
: Normal normal
: ---
Assigned To: Joaquim Rocha
Control-Center Maintainers
3.10
Depends on:
Blocks:
 
 
Reported: 2013-06-25 12:09 UTC by Jakub Steiner
Modified: 2013-07-22 17:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
wacom: Make the OSD Window be a popup one (3.20 KB, patch)
2013-07-18 10:41 UTC, Joaquim Rocha
needs-work Details | Review
wacom: Make the OSD Window be a popup one (3.10 KB, patch)
2013-07-22 15:10 UTC, Joaquim Rocha
accepted-commit_now Details | Review

Description Jakub Steiner 2013-06-25 12:09:30 UTC
The help/configuration overlay painted over a fullscreen window makes it hidden.

See bug #698641 for context.
Comment 1 Jasper St. Pierre (not reading bugmail) 2013-07-16 15:37:41 UTC
The help overlay should be an override-redirect (GTK_TYPE_POPUP) window. That will stop the full-screen logic from kicking in.
Comment 2 Bastien Nocera 2013-07-16 15:44:51 UTC
Agreed.
Comment 3 Joaquim Rocha 2013-07-18 10:41:29 UTC
Created attachment 249485 [details] [review]
wacom: Make the OSD Window be a popup one

This is necessary because, otherwise, showing the OSD Window on top of
a fullscreen window will hide the latter.

I had to explicitly grab the keyboard or else the window wouldn't get the user input (necessary to hide it when pressing Escape).
Comment 4 Bastien Nocera 2013-07-22 09:47:09 UTC
Review of attachment 249485 [details] [review]:

How will this interact with other shortcuts, like Alt+Tab?

::: plugins/wacom/gsd-wacom-osd-window.c
@@ +1424,3 @@
+grab_keyboard (GsdWacomOSDWindow *self)
+{
+	GdkDevice *device, *keyb;

*kbd is better.

@@ +1428,3 @@
+
+	gdk_window = gtk_widget_get_window (GTK_WIDGET (self));
+	device = gtk_get_current_event_device ();

That's useless. If you clicked on the button to show the keyboard, this will be NULL.

@@ +1447,3 @@
+		keyb = device;
+	else
+		keyb = gdk_device_get_associated_device (device);

Run a for loop on the devices from gdk_device_manager_list_devices() and check their types instead.

@@ +1457,3 @@
+			     GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK,
+			     NULL, GDK_CURRENT_TIME) != GDK_GRAB_SUCCESS) {
+		g_warning ("Could not grab the keyboard device...");

To print that sort of thing, I'm not sure that we need to know.
Comment 5 Joaquim Rocha 2013-07-22 15:10:21 UTC
Created attachment 249810 [details] [review]
wacom: Make the OSD Window be a popup one

New version with Bastien's suggested changes.
Comment 6 Bastien Nocera 2013-07-22 15:40:06 UTC
Review of attachment 249810 [details] [review]:

Looks fine after that.

::: plugins/wacom/gsd-wacom-osd-window.c
@@ +1435,3 @@
+	devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
+
+	for (l = devices; l != NULL; l = g_list_next (l)) {

l = l->next

@@ +1446,3 @@
+	g_list_free (devices);
+
+	if (kbd == NULL) {

g_assert (kbd);
it's impossible for this to happen so an assertion is in order.
Comment 7 Bastien Nocera 2013-07-22 15:40:32 UTC
Review of attachment 249810 [details] [review]:

Looks fine after that.

::: plugins/wacom/gsd-wacom-osd-window.c
@@ +1435,3 @@
+	devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
+
+	for (l = devices; l != NULL; l = g_list_next (l)) {

l = l->next

@@ +1446,3 @@
+	g_list_free (devices);
+
+	if (kbd == NULL) {

g_assert (kbd);
it's impossible for this to happen so an assertion is in order.
Comment 8 Joaquim Rocha 2013-07-22 17:47:38 UTC
Pushed.

commit ff4406ccf0cd83868320ce6cbc0ad8a8b47f1cee