GUACAMOLE-249: Move keyboard-related source back to root of RDP (ease merge). Not truly needed as much as the rest of the restructure.
This commit is contained in:
parent
f57382f885
commit
2bbc4bfbff
@ -57,15 +57,15 @@ libguac_client_rdp_la_SOURCES = \
|
|||||||
channels/rdpsnd/rdpsnd.c \
|
channels/rdpsnd/rdpsnd.c \
|
||||||
client.c \
|
client.c \
|
||||||
color.c \
|
color.c \
|
||||||
|
decompose.c \
|
||||||
download.c \
|
download.c \
|
||||||
error.c \
|
error.c \
|
||||||
fs.c \
|
fs.c \
|
||||||
gdi.c \
|
gdi.c \
|
||||||
glyph.c \
|
glyph.c \
|
||||||
input.c \
|
input.c \
|
||||||
keyboard/decompose.c \
|
keyboard.c \
|
||||||
keyboard/keyboard.c \
|
keymap.c \
|
||||||
keyboard/keymap.c \
|
|
||||||
log.c \
|
log.c \
|
||||||
ls.c \
|
ls.c \
|
||||||
plugins/channels.c \
|
plugins/channels.c \
|
||||||
@ -99,15 +99,15 @@ noinst_HEADERS = \
|
|||||||
channels/rdpsnd/rdpsnd.h \
|
channels/rdpsnd/rdpsnd.h \
|
||||||
client.h \
|
client.h \
|
||||||
color.h \
|
color.h \
|
||||||
|
decompose.h \
|
||||||
download.h \
|
download.h \
|
||||||
error.h \
|
error.h \
|
||||||
fs.h \
|
fs.h \
|
||||||
gdi.h \
|
gdi.h \
|
||||||
glyph.h \
|
glyph.h \
|
||||||
input.h \
|
input.h \
|
||||||
keyboard/decompose.h \
|
keyboard.h \
|
||||||
keyboard/keyboard.h \
|
keymap.h \
|
||||||
keyboard/keymap.h \
|
|
||||||
log.h \
|
log.h \
|
||||||
ls.h \
|
ls.h \
|
||||||
plugins/channels.h \
|
plugins/channels.h \
|
||||||
@ -217,31 +217,31 @@ BUILT_SOURCES = \
|
|||||||
_generated_channel_entry_wrappers.c \
|
_generated_channel_entry_wrappers.c \
|
||||||
_generated_keymaps.c
|
_generated_keymaps.c
|
||||||
|
|
||||||
rdp_keymaps = \
|
rdp_keymaps = \
|
||||||
$(srcdir)/keyboard/keymaps/base.keymap \
|
$(srcdir)/keymaps/base.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/failsafe.keymap \
|
$(srcdir)/keymaps/failsafe.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/de_de_qwertz.keymap \
|
$(srcdir)/keymaps/de_de_qwertz.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/de_ch_qwertz.keymap \
|
$(srcdir)/keymaps/de_ch_qwertz.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/en_gb_qwerty.keymap \
|
$(srcdir)/keymaps/en_gb_qwerty.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/en_us_qwerty.keymap \
|
$(srcdir)/keymaps/en_us_qwerty.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/es_es_qwerty.keymap \
|
$(srcdir)/keymaps/es_es_qwerty.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/fr_fr_azerty.keymap \
|
$(srcdir)/keymaps/fr_fr_azerty.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/fr_ch_qwertz.keymap \
|
$(srcdir)/keymaps/fr_ch_qwertz.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/it_it_qwerty.keymap \
|
$(srcdir)/keymaps/it_it_qwerty.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/ja_jp_qwerty.keymap \
|
$(srcdir)/keymaps/ja_jp_qwerty.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/pt_br_qwerty.keymap \
|
$(srcdir)/keymaps/pt_br_qwerty.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/sv_se_qwerty.keymap \
|
$(srcdir)/keymaps/sv_se_qwerty.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/da_dk_qwerty.keymap \
|
$(srcdir)/keymaps/da_dk_qwerty.keymap \
|
||||||
$(srcdir)/keyboard/keymaps/tr_tr_qwerty.keymap
|
$(srcdir)/keymaps/tr_tr_qwerty.keymap
|
||||||
|
|
||||||
_generated_keymaps.c: $(rdp_keymaps)
|
_generated_keymaps.c: $(rdp_keymaps)
|
||||||
$(AM_V_GEN) $(srcdir)/keyboard/keymaps/generate.pl $(rdp_keymaps)
|
$(AM_V_GEN) $(srcdir)/keymaps/generate.pl $(rdp_keymaps)
|
||||||
|
|
||||||
_generated_channel_entry_wrappers.c: $(srcdir)/plugins/channels.h $(srcdir)/plugins/generate-entry-wrappers.pl
|
_generated_channel_entry_wrappers.c: $(srcdir)/plugins/channels.h $(srcdir)/plugins/generate-entry-wrappers.pl
|
||||||
$(AM_V_GEN) $(srcdir)/plugins/generate-entry-wrappers.pl $(srcdir)/plugins/channels.h
|
$(AM_V_GEN) $(srcdir)/plugins/generate-entry-wrappers.pl $(srcdir)/plugins/channels.h
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
$(rdp_keymaps) \
|
$(rdp_keymaps) \
|
||||||
plugins/generate-entry-wrappers.pl \
|
keymaps/generate.pl \
|
||||||
keyboard/keymaps/generate.pl
|
plugins/generate-entry-wrappers.pl
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "keyboard/keyboard.h"
|
#include "keyboard.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The X11 keysym for the dead key which types a grave (`).
|
* The X11 keysym for the dead key which types a grave (`).
|
@ -17,11 +17,11 @@
|
|||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef GUAC_RDP_KEYBOARD_DECOMPOSE_H
|
#ifndef GUAC_RDP_DECOMPOSE_H
|
||||||
#define GUAC_RDP_KEYBOARD_DECOMPOSE_H
|
#define GUAC_RDP_DECOMPOSE_H
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "keyboard/keyboard.h"
|
#include "keyboard.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attempts to type the given keysym by decomposing the associated character
|
* Attempts to type the given keysym by decomposing the associated character
|
@ -22,7 +22,7 @@
|
|||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "common/recording.h"
|
#include "common/recording.h"
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
#include "keyboard/keyboard.h"
|
#include "keyboard.h"
|
||||||
#include "rdp.h"
|
#include "rdp.h"
|
||||||
|
|
||||||
#include <freerdp/freerdp.h>
|
#include <freerdp/freerdp.h>
|
||||||
|
@ -19,9 +19,9 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "keyboard/decompose.h"
|
#include "decompose.h"
|
||||||
#include "keyboard/keyboard.h"
|
#include "keyboard.h"
|
||||||
#include "keyboard/keymap.h"
|
#include "keymap.h"
|
||||||
#include "rdp.h"
|
#include "rdp.h"
|
||||||
|
|
||||||
#include <freerdp/freerdp.h>
|
#include <freerdp/freerdp.h>
|
@ -20,7 +20,7 @@
|
|||||||
#ifndef GUAC_RDP_KEYBOARD_H
|
#ifndef GUAC_RDP_KEYBOARD_H
|
||||||
#define GUAC_RDP_KEYBOARD_H
|
#define GUAC_RDP_KEYBOARD_H
|
||||||
|
|
||||||
#include "keyboard/keymap.h"
|
#include "keymap.h"
|
||||||
|
|
||||||
#include <guacamole/client.h>
|
#include <guacamole/client.h>
|
||||||
|
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include "keyboard/keymap.h"
|
#include "keymap.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
@ -17,8 +17,8 @@
|
|||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef GUAC_RDP_KEYBOARD_KEYMAP_H
|
#ifndef GUAC_RDP_KEYMAP_H
|
||||||
#define GUAC_RDP_KEYBOARD_KEYMAP_H
|
#define GUAC_RDP_KEYMAP_H
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
@ -43,7 +43,7 @@ my @keymaps = ();
|
|||||||
open OUTPUT, ">", "_generated_keymaps.c";
|
open OUTPUT, ">", "_generated_keymaps.c";
|
||||||
print OUTPUT
|
print OUTPUT
|
||||||
'#include "config.h"' . "\n"
|
'#include "config.h"' . "\n"
|
||||||
. '#include "keyboard/keymap.h"' . "\n"
|
. '#include "keymap.h"' . "\n"
|
||||||
. '#include <freerdp/input.h>' . "\n"
|
. '#include <freerdp/input.h>' . "\n"
|
||||||
. '#include <freerdp/locale/keyboard.h>' . "\n"
|
. '#include <freerdp/locale/keyboard.h>' . "\n"
|
||||||
. "\n"
|
. "\n"
|
@ -35,7 +35,7 @@
|
|||||||
#include "fs.h"
|
#include "fs.h"
|
||||||
#include "gdi.h"
|
#include "gdi.h"
|
||||||
#include "glyph.h"
|
#include "glyph.h"
|
||||||
#include "keyboard/keyboard.h"
|
#include "keyboard.h"
|
||||||
#include "plugins/channels.h"
|
#include "plugins/channels.h"
|
||||||
#include "pointer.h"
|
#include "pointer.h"
|
||||||
#include "print-job.h"
|
#include "print-job.h"
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
#include "common/recording.h"
|
#include "common/recording.h"
|
||||||
#include "common/surface.h"
|
#include "common/surface.h"
|
||||||
#include "fs.h"
|
#include "fs.h"
|
||||||
#include "keyboard/keyboard.h"
|
#include "keyboard.h"
|
||||||
#include "print-job.h"
|
#include "print-job.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include "keyboard/keymap.h"
|
#include "keymap.h"
|
||||||
|
|
||||||
#include <freerdp/freerdp.h>
|
#include <freerdp/freerdp.h>
|
||||||
#include <guacamole/user.h>
|
#include <guacamole/user.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user