X11: fix toggle-fullscreen option functionality
This commit is contained in:
parent
767d54ce18
commit
0c84c81401
186
channels/client/tables.c
Normal file
186
channels/client/tables.c
Normal file
@ -0,0 +1,186 @@
|
|||||||
|
/**
|
||||||
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
||||||
|
* Static Entry Point Tables
|
||||||
|
*
|
||||||
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "tables.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
extern BOOL VCAPITYPE rdpsnd_VirtualChannelEntry(PCHANNEL_ENTRY_POINTS);
|
||||||
|
extern BOOL VCAPITYPE remdesk_VirtualChannelEntry(PCHANNEL_ENTRY_POINTS);
|
||||||
|
extern BOOL VCAPITYPE encomsp_VirtualChannelEntry(PCHANNEL_ENTRY_POINTS);
|
||||||
|
extern BOOL VCAPITYPE rdpdr_VirtualChannelEntry(PCHANNEL_ENTRY_POINTS);
|
||||||
|
extern BOOL VCAPITYPE rail_VirtualChannelEntry(PCHANNEL_ENTRY_POINTS);
|
||||||
|
extern BOOL VCAPITYPE drdynvc_VirtualChannelEntry(PCHANNEL_ENTRY_POINTS);
|
||||||
|
extern BOOL VCAPITYPE cliprdr_VirtualChannelEntry(PCHANNEL_ENTRY_POINTS);
|
||||||
|
|
||||||
|
extern void rdpgfx_DVCPluginEntry();
|
||||||
|
extern void tsmf_DVCPluginEntry();
|
||||||
|
extern void rdpei_DVCPluginEntry();
|
||||||
|
extern void disp_DVCPluginEntry();
|
||||||
|
extern void echo_DVCPluginEntry();
|
||||||
|
extern void audin_DVCPluginEntry();
|
||||||
|
|
||||||
|
extern void smartcard_DeviceServiceEntry();
|
||||||
|
extern void parallel_DeviceServiceEntry();
|
||||||
|
extern void drive_DeviceServiceEntry();
|
||||||
|
extern void serial_DeviceServiceEntry();
|
||||||
|
|
||||||
|
|
||||||
|
const STATIC_ENTRY CLIENT_VirtualChannelEntry_TABLE[] =
|
||||||
|
{
|
||||||
|
|
||||||
|
{ "rdpsnd", rdpsnd_VirtualChannelEntry },
|
||||||
|
{ "remdesk", remdesk_VirtualChannelEntry },
|
||||||
|
{ "encomsp", encomsp_VirtualChannelEntry },
|
||||||
|
{ "rdpdr", rdpdr_VirtualChannelEntry },
|
||||||
|
{ "rail", rail_VirtualChannelEntry },
|
||||||
|
{ "drdynvc", drdynvc_VirtualChannelEntry },
|
||||||
|
{ "cliprdr", cliprdr_VirtualChannelEntry },
|
||||||
|
{ NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_ENTRY CLIENT_DVCPluginEntry_TABLE[] =
|
||||||
|
{
|
||||||
|
|
||||||
|
{ "rdpgfx", rdpgfx_DVCPluginEntry },
|
||||||
|
{ "tsmf", tsmf_DVCPluginEntry },
|
||||||
|
{ "rdpei", rdpei_DVCPluginEntry },
|
||||||
|
{ "disp", disp_DVCPluginEntry },
|
||||||
|
{ "echo", echo_DVCPluginEntry },
|
||||||
|
{ "audin", audin_DVCPluginEntry },
|
||||||
|
{ NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_ENTRY CLIENT_DeviceServiceEntry_TABLE[] =
|
||||||
|
{
|
||||||
|
|
||||||
|
{ "smartcard", smartcard_DeviceServiceEntry },
|
||||||
|
{ "parallel", parallel_DeviceServiceEntry },
|
||||||
|
{ "drive", drive_DeviceServiceEntry },
|
||||||
|
{ "serial", serial_DeviceServiceEntry },
|
||||||
|
{ NULL, NULL }
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
const STATIC_ENTRY_TABLE CLIENT_STATIC_ENTRY_TABLES[] =
|
||||||
|
{
|
||||||
|
{ "VirtualChannelEntry", CLIENT_VirtualChannelEntry_TABLE },
|
||||||
|
{ "DVCPluginEntry", CLIENT_DVCPluginEntry_TABLE },
|
||||||
|
{ "DeviceServiceEntry", CLIENT_DeviceServiceEntry_TABLE },
|
||||||
|
{ NULL, NULL }
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
extern void alsa_freerdp_rdpsnd_client_subsystem_entry();
|
||||||
|
extern void alsa_freerdp_tsmf_client_audio_subsystem_entry();
|
||||||
|
extern void alsa_freerdp_audin_client_subsystem_entry();
|
||||||
|
|
||||||
|
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_RDPSND_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ "alsa", "", alsa_freerdp_rdpsnd_client_subsystem_entry },
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_RDPGFX_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_SMARTCARD_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_PARALLEL_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_TSMF_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ "alsa", "audio", alsa_freerdp_tsmf_client_audio_subsystem_entry },
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_REMDESK_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_ENCOMSP_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_RDPDR_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_RDPEI_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_RAIL_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_DRIVE_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_DISP_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_SERIAL_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_ECHO_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_AUDIN_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ "alsa", "", alsa_freerdp_audin_client_subsystem_entry },
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_DRDYNVC_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
const STATIC_SUBSYSTEM_ENTRY CLIENT_CLIPRDR_SUBSYSTEM_TABLE[] =
|
||||||
|
{
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
|
||||||
|
const STATIC_ADDIN_TABLE CLIENT_STATIC_ADDIN_TABLE[] =
|
||||||
|
{
|
||||||
|
{ "rdpsnd", rdpsnd_VirtualChannelEntry, CLIENT_RDPSND_SUBSYSTEM_TABLE },
|
||||||
|
{ "rdpgfx", rdpgfx_DVCPluginEntry, CLIENT_RDPGFX_SUBSYSTEM_TABLE },
|
||||||
|
{ "smartcard", smartcard_DeviceServiceEntry, CLIENT_SMARTCARD_SUBSYSTEM_TABLE },
|
||||||
|
{ "parallel", parallel_DeviceServiceEntry, CLIENT_PARALLEL_SUBSYSTEM_TABLE },
|
||||||
|
{ "tsmf", tsmf_DVCPluginEntry, CLIENT_TSMF_SUBSYSTEM_TABLE },
|
||||||
|
{ "remdesk", remdesk_VirtualChannelEntry, CLIENT_REMDESK_SUBSYSTEM_TABLE },
|
||||||
|
{ "encomsp", encomsp_VirtualChannelEntry, CLIENT_ENCOMSP_SUBSYSTEM_TABLE },
|
||||||
|
{ "rdpdr", rdpdr_VirtualChannelEntry, CLIENT_RDPDR_SUBSYSTEM_TABLE },
|
||||||
|
{ "rdpei", rdpei_DVCPluginEntry, CLIENT_RDPEI_SUBSYSTEM_TABLE },
|
||||||
|
{ "rail", rail_VirtualChannelEntry, CLIENT_RAIL_SUBSYSTEM_TABLE },
|
||||||
|
{ "drive", drive_DeviceServiceEntry, CLIENT_DRIVE_SUBSYSTEM_TABLE },
|
||||||
|
{ "disp", disp_DVCPluginEntry, CLIENT_DISP_SUBSYSTEM_TABLE },
|
||||||
|
{ "serial", serial_DeviceServiceEntry, CLIENT_SERIAL_SUBSYSTEM_TABLE },
|
||||||
|
{ "echo", echo_DVCPluginEntry, CLIENT_ECHO_SUBSYSTEM_TABLE },
|
||||||
|
{ "audin", audin_DVCPluginEntry, CLIENT_AUDIN_SUBSYSTEM_TABLE },
|
||||||
|
{ "drdynvc", drdynvc_VirtualChannelEntry, CLIENT_DRDYNVC_SUBSYSTEM_TABLE },
|
||||||
|
{ "cliprdr", cliprdr_VirtualChannelEntry, CLIENT_CLIPRDR_SUBSYSTEM_TABLE },
|
||||||
|
{ NULL, NULL, NULL }
|
||||||
|
};
|
||||||
|
|
@ -405,14 +405,17 @@ BOOL xf_keyboard_handle_special_keys(xfContext* xfc, KeySym keysym)
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (keysym == XK_Return)
|
if(xfc->fullscreen_toggle)
|
||||||
{
|
{
|
||||||
if (mod.Ctrl && mod.Alt)
|
if (keysym == XK_Return)
|
||||||
{
|
{
|
||||||
/* Ctrl-Alt-Enter: toggle full screen */
|
if (mod.Ctrl && mod.Alt)
|
||||||
xf_toggle_fullscreen(xfc);
|
{
|
||||||
return TRUE;
|
/* Ctrl-Alt-Enter: toggle full screen */
|
||||||
}
|
xf_toggle_fullscreen(xfc);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((keysym == XK_c) || (keysym == XK_C))
|
if ((keysym == XK_c) || (keysym == XK_C))
|
||||||
|
Loading…
Reference in New Issue
Block a user