|
From: Øyvind 'b. H. <bo...@dh...> - 2015-02-26 20:21:50
|
I'm curious how you prevent the user from simply disconnecting. Like,
clicking on the desktop and doing alt+f4 and such.
On 26/02/15 20:23, Peter Astrand wrote:
>
> It's in the code, xkeymap.c:
>
> case XK_Return:
> if ((get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))
> && (get_key_state(state, XK_Control_L)
> || get_key_state(state, XK_Control_R)))
> {
> /* Ctrl-Alt-Enter: toggle full screen */
> if (pressed)
> xwin_toggle_fullscreen();
> return True;
> }
> break;
>
> Br,
> Peter
>
> On Thu, 26 Feb 2015, Neil Underwood wrote:
>
>> I'd like to use rdesktop as part of a simple thin client set up on a
>> Raspberry Pi for 3 kiosks in the lobby at my office. My biggest concern
>> is the ability to toggle out of full screen mode with Ctrl-Alt-Enter.
>> Is this something that is managed through keymapping within rdesktop or
>> is this handled by the WM/DE? I didn't see anything obvious when
>> browsing the rdesktop code.
>>
>> I realize an alternative would be to strip down the underlying desktop
>> and adjust permissions to basically not allow anything but rdesktop to
>> be running, but this would be a much more elegant solution to avoid
>> leaving full screen to begin with.
>>
>> Thanks
>> ------------------------------------------------------------------------------
>> Dive into the World of Parallel Programming The Go Parallel Website, sponsored
>> by Intel and developed in partnership with Slashdot Media, is your hub for all
>> things parallel software development, from weekly thought leadership blogs to
>> news, videos, case studies, tutorials and more. Take a look and join the
>> conversation now. http://goparallel.sourceforge.net/
>> _______________________________________________
>> rdesktop-users mailing list
>> rde...@li...
>> https://lists.sourceforge.net/lists/listinfo/rdesktop-users
>>
>
>
> ---
> Peter Astrand ThinLinc Chief Developer
> Cendio AB https://cendio.com
> Teknikringen 8 https://twitter.com/ThinLinc
> 583 30 Linkoping https://facebook.com/ThinLinc
> Phone: +46-13-214600 https://google.com/+CendioThinLinc
>
> ------------------------------------------------------------------------------
> Dive into the World of Parallel Programming The Go Parallel Website, sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for all
> things parallel software development, from weekly thought leadership blogs to
> news, videos, case studies, tutorials and more. Take a look and join the
> conversation now. http://goparallel.sourceforge.net/
> _______________________________________________
> rdesktop-users mailing list
> rde...@li...
> https://lists.sourceforge.net/lists/listinfo/rdesktop-users
>
|