mirror of
https://github.com/labwc/labwc.git
synced 2026-04-03 07:15:34 -04:00
Move input related source files into src/input/
This commit is contained in:
parent
d2c403b84f
commit
67a8ae8561
11 changed files with 13 additions and 10 deletions
|
|
@ -41,9 +41,9 @@
|
||||||
#include <wlr/types/wlr_virtual_keyboard_v1.h>
|
#include <wlr/types/wlr_virtual_keyboard_v1.h>
|
||||||
#include <wlr/util/log.h>
|
#include <wlr/util/log.h>
|
||||||
#include <xkbcommon/xkbcommon.h>
|
#include <xkbcommon/xkbcommon.h>
|
||||||
#include "cursor.h"
|
|
||||||
#include "config/keybind.h"
|
#include "config/keybind.h"
|
||||||
#include "config/rcxml.h"
|
#include "config/rcxml.h"
|
||||||
|
#include "input/cursor.h"
|
||||||
#include "regions.h"
|
#include "regions.h"
|
||||||
#include "session-lock.h"
|
#include "session-lock.h"
|
||||||
#if HAVE_NLS
|
#if HAVE_NLS
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@
|
||||||
#include <wlr/types/wlr_scene.h>
|
#include <wlr/types/wlr_scene.h>
|
||||||
#include <wlr/util/log.h>
|
#include <wlr/util/log.h>
|
||||||
#include "common/mem.h"
|
#include "common/mem.h"
|
||||||
#include "cursor.h"
|
|
||||||
#include "dnd.h"
|
#include "dnd.h"
|
||||||
|
#include "input/cursor.h"
|
||||||
#include "labwc.h" /* for struct seat */
|
#include "labwc.h" /* for struct seat */
|
||||||
#include "view.h"
|
#include "view.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "key-state.h"
|
#include "input/key-state.h"
|
||||||
|
|
||||||
#define MAX_PRESSED_KEYS (16)
|
#define MAX_PRESSED_KEYS (16)
|
||||||
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
#include <wlr/interfaces/wlr_keyboard.h>
|
#include <wlr/interfaces/wlr_keyboard.h>
|
||||||
#include "action.h"
|
#include "action.h"
|
||||||
#include "idle.h"
|
#include "idle.h"
|
||||||
#include "key-state.h"
|
#include "input/key-state.h"
|
||||||
#include "labwc.h"
|
#include "labwc.h"
|
||||||
#include "menu/menu.h"
|
#include "menu/menu.h"
|
||||||
#include "regions.h"
|
#include "regions.h"
|
||||||
6
src/input/meson.build
Normal file
6
src/input/meson.build
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
labwc_sources += files(
|
||||||
|
'keyboard.c',
|
||||||
|
'key-state.c',
|
||||||
|
'touch.c',
|
||||||
|
'cursor.c',
|
||||||
|
)
|
||||||
|
|
@ -1,15 +1,12 @@
|
||||||
labwc_sources = files(
|
labwc_sources = files(
|
||||||
'action.c',
|
'action.c',
|
||||||
'buffer.c',
|
'buffer.c',
|
||||||
'cursor.c',
|
|
||||||
'debug.c',
|
'debug.c',
|
||||||
'desktop.c',
|
'desktop.c',
|
||||||
'dnd.c',
|
'dnd.c',
|
||||||
'foreign.c',
|
'foreign.c',
|
||||||
'idle.c',
|
'idle.c',
|
||||||
'interactive.c',
|
'interactive.c',
|
||||||
'keyboard.c',
|
|
||||||
'key-state.c',
|
|
||||||
'layers.c',
|
'layers.c',
|
||||||
'main.c',
|
'main.c',
|
||||||
'node.c',
|
'node.c',
|
||||||
|
|
@ -21,7 +18,6 @@ labwc_sources = files(
|
||||||
'server.c',
|
'server.c',
|
||||||
'session-lock.c',
|
'session-lock.c',
|
||||||
'snap.c',
|
'snap.c',
|
||||||
'touch.c',
|
|
||||||
'theme.c',
|
'theme.c',
|
||||||
'view.c',
|
'view.c',
|
||||||
'view-impl-common.c',
|
'view-impl-common.c',
|
||||||
|
|
@ -39,9 +35,10 @@ if have_xwayland
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
subdir('button')
|
||||||
subdir('common')
|
subdir('common')
|
||||||
subdir('config')
|
subdir('config')
|
||||||
subdir('decorations')
|
subdir('decorations')
|
||||||
subdir('button')
|
subdir('input')
|
||||||
subdir('menu')
|
subdir('menu')
|
||||||
subdir('ssd')
|
subdir('ssd')
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
#include <wlr/types/wlr_touch.h>
|
#include <wlr/types/wlr_touch.h>
|
||||||
#include <wlr/util/log.h>
|
#include <wlr/util/log.h>
|
||||||
#include "common/mem.h"
|
#include "common/mem.h"
|
||||||
#include "key-state.h"
|
#include "input/key-state.h"
|
||||||
#include "labwc.h"
|
#include "labwc.h"
|
||||||
#include "view.h"
|
#include "view.h"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue