mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
include: reduce global includes in labwc.h
This commit is contained in:
parent
e21fc065c4
commit
e1475a1e47
30 changed files with 78 additions and 52 deletions
|
|
@ -7,7 +7,14 @@
|
|||
#include <time.h>
|
||||
#include <wlr/backend/libinput.h>
|
||||
#include <wlr/types/wlr_cursor_shape_v1.h>
|
||||
#include <wlr/types/wlr_data_device.h>
|
||||
#include <wlr/types/wlr_pointer_constraints_v1.h>
|
||||
#include <wlr/types/wlr_primary_selection.h>
|
||||
#include <wlr/types/wlr_relative_pointer_v1.h>
|
||||
#include <wlr/types/wlr_scene.h>
|
||||
#include <wlr/types/wlr_subcompositor.h>
|
||||
#include <wlr/types/wlr_xcursor_manager.h>
|
||||
#include <wlr/types/wlr_xdg_shell.h>
|
||||
#include <wlr/util/region.h>
|
||||
#include "action.h"
|
||||
#include "common/macros.h"
|
||||
|
|
@ -15,7 +22,6 @@
|
|||
#include "common/scene-helpers.h"
|
||||
#include "common/surface-helpers.h"
|
||||
#include "config/mousebind.h"
|
||||
#include "config/tablet-tool.h"
|
||||
#include "dnd.h"
|
||||
#include "idle.h"
|
||||
#include "input/gestures.h"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,9 @@
|
|||
|
||||
#include "input/ime.h"
|
||||
#include <assert.h>
|
||||
#include <wlr/types/wlr_layer_shell_v1.h>
|
||||
#include <wlr/types/wlr_virtual_keyboard_v1.h>
|
||||
#include <wlr/types/wlr_xdg_shell.h>
|
||||
#include "common/mem.h"
|
||||
#include "node.h"
|
||||
#include "output.h"
|
||||
|
|
|
|||
|
|
@ -6,9 +6,11 @@
|
|||
#include <wlr/backend/multi.h>
|
||||
#include <wlr/backend/session.h>
|
||||
#include <wlr/interfaces/wlr_keyboard.h>
|
||||
#include <wlr/types/wlr_keyboard_group.h>
|
||||
#include "action.h"
|
||||
#include "common/macros.h"
|
||||
#include "common/three-state.h"
|
||||
#include "config/keybind.h"
|
||||
#include "idle.h"
|
||||
#include "input/ime.h"
|
||||
#include "input/key-state.h"
|
||||
|
|
@ -16,6 +18,7 @@
|
|||
#include "menu/menu.h"
|
||||
#include "osd.h"
|
||||
#include "regions.h"
|
||||
#include "session-lock.h"
|
||||
#include "view.h"
|
||||
#include "workspaces.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <wlr/backend/libinput.h>
|
||||
#include <wlr/types/wlr_compositor.h>
|
||||
#include <wlr/types/wlr_tablet_pad.h>
|
||||
#include <wlr/types/wlr_tablet_tool.h>
|
||||
#include <wlr/util/log.h>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
#include "input/touch.h"
|
||||
#include <wayland-util.h>
|
||||
#include <wlr/types/wlr_scene.h>
|
||||
#include <wlr/types/wlr_seat.h>
|
||||
#include <wlr/types/wlr_touch.h>
|
||||
#include <linux/input-event-codes.h>
|
||||
#include "common/macros.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue