Displaying 5 results from an estimated 5 matches for "xungrabserv".
Did you mean:
xungrabserver
2000 May 31
0
gnome-ssh-askpass patch
...XGrabServer(GDK_DISPLAY());
+ /* XGrabServer(GDK_DISPLAY()); */
gdk_pointer_grab(dialog->window, TRUE, 0, NULL, NULL, GDK_CURRENT_TIME);
gdk_keyboard_grab(dialog->window, FALSE, GDK_CURRENT_TIME);
@@ -90,7 +90,7 @@
result = gnome_dialog_run(GNOME_DIALOG(dialog));
/* Ungrab */
- XUngrabServer(GDK_DISPLAY());
+ /* XUngrabServer(GDK_DISPLAY()); */
gdk_pointer_ungrab(GDK_CURRENT_TIME);
gdk_keyboard_ungrab(GDK_CURRENT_TIME);
gdk_flush();
@@ -119,9 +119,9 @@
gnome_init("GNOME ssh-askpass", "0.1", argc, argv);
- if (argc == 2)
+ /* if (argc == 2)
message...
2012 Jan 13
0
[PATCH 1/1] Ported gnome-ssh-askpass2 to gtk3.
...GDK_GRAB_SUCCESS)
+ break;
+ usleep(GRAB_WAIT * 1000);
+ if (++grab_tries > GRAB_TRIES) {
+ failed = "keyboard";
+ goto nograbkb;
+ }
+ }
+ if (grab_server) {
+ gdk_x11_grab_server();
+ }
+
+ result = gtk_dialog_run(GTK_DIALOG(dialog));
+
+ /* Ungrab */
+ if (grab_server)
+ XUngrabServer(GDK_DISPLAY_XDISPLAY(gdk_display_get_default()));
+ if (grab_pointer)
+ gdk_pointer_ungrab(GDK_CURRENT_TIME);
+ gdk_keyboard_ungrab(GDK_CURRENT_TIME);
+ gdk_flush();
+
+ /* Report passphrase if user selected OK */
+ passphrase = g_strdup(gtk_entry_get_text(GTK_ENTRY(entry)));
+ if (result == GTK...
2003 Oct 29
2
OpenSSH and Redhat 8
John,
The following steps should work for you (or anyone buildling on a
RedHat box):
1) Get the official OpenSSH source RPM from
ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/rpm/SRPMS/openssh-3.7.1p2-1.src.rpm
2) Do 'rpmbuild --rebuild ./openssh-3.7.1p2-1.src.rpm' from where you
saved the file.
3) This should create the following files in /usr/src/redhat/RPMS/i386:
2010 Mar 01
2
[Bug 1725] New: use x11.pc when linking gnome-ssh-askpass2
...dd-needed, which effectively
means that it requires applications to explicitly link against
libraries that provide functions that they explicitly call. (Obviously
inter-library linkage doesn't have to be specified by the application -
that would be unreasonable.)
Since gnome-ssh-askpass2 uses XUngrabServer (incidentally, why doesn't
it use gdk_x11_ungrab_server to go with the existing call to
gdk_x11_grab_server?), it should link against libX11 itself as well as
relying on libgdk-x11's linkage.
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are rece...
2019 Nov 01
0
Wine release 4.19
...nership stubs.
winex11.drv: Implement X11DRV_D3DKMTSetVidPnSourceOwner.
winex11.drv: Implement X11DRV_D3DKMTCheckVidPnExclusiveOwnership.
dxgi: Implement dxgi_output_ReleaseOwnership().
dxgi: Implement dxgi_output_TakeOwnership().
winex11.drv: Call XFlush() right after XUngrabServer().
winex11.drv: Use underscore style for struct x11drv_display_device_handler.
winex11.drv: Retrieve virtual and primary monitor rectangles from SetupAPI.
winex11.drv: Handle display device events in the desktop thread.
--
Alexandre Julliard
julliard at winehq.org