sway/sway/meson.build

250 lines
6.0 KiB
Meson
Raw Permalink Normal View History

2017-11-30 11:25:13 +00:00
sway_sources = files(
2017-11-30 08:39:27 +00:00
'commands.c',
2018-04-05 01:32:31 +00:00
'config.c',
'criteria.c',
'decoration.c',
2018-04-05 01:32:31 +00:00
'ipc-json.c',
'ipc-server.c',
2022-03-09 02:14:26 +00:00
'lock.c',
'main.c',
'realtime.c',
'scene_descriptor.c',
'server.c',
'sway_text_node.c',
'swaynag.c',
'xdg_activation_v1.c',
'xdg_decoration.c',
2018-04-05 01:32:31 +00:00
2018-06-27 09:16:49 +00:00
'desktop/idle_inhibit_v1.c',
2018-04-05 01:32:31 +00:00
'desktop/layer_shell.c',
2018-05-13 15:38:56 +00:00
'desktop/output.c',
2018-06-03 06:35:06 +00:00
'desktop/transaction.c',
2018-05-13 15:38:56 +00:00
'desktop/xdg_shell.c',
'desktop/launcher.c',
2018-04-05 01:32:31 +00:00
2017-12-07 12:31:49 +00:00
'input/input-manager.c',
'input/cursor.c',
'input/keyboard.c',
2017-12-07 14:58:32 +00:00
'input/seat.c',
Introduce default seatop This introduces a `default` seat operation which is used when no mouse buttons are being held. This means there is now always a seat operation in progress. It allows us to separate `default` code from the standard cursor management code. The sway_seatop_impl struct has gained callbacks `axis`, `rebase` and `end`, and lost callbacks `finish` and `abort`. `axis` and `rebase` are only used by the default seatop. `end` is called when a seatop is being replaced by another one and allows the seatop to free any resources, though no seatop currently needs to do this. `finish` is no longer required, as each seatop can gracefully finish in their `button` callback. And `abort` is not needed, as calling `end` would achieve the same thing. The struct has also gained a bool named allow_set_cursor which allows the client to set a new cursor during `default` and `down` seatops. Seatops would previously store which button they were started with and stop when that button was released. This behaviour is changed so that it only ends once all buttons are released. So you can start a drag with $mod+left, then click and hold right, release left and it'll continue dragging while the right button is held. The motion callback now accepts dx and dy. Most seatops don't use this as they store the cursor position when the seatop is started and compare it with the current cursor position. This approach doesn't make sense for the default seatop though, hence why dx and dy are needed. The pressed_buttons array has been moved from the sway_cursor struct to the default seatop's data. This is only used for the default seatop to check bindings. The total pressed button count remains in the sway_cursor struct though, because all the other seatops check it to know if they should end. The `down` seatop no longer has a `moved` property. This was used to track if the cursor moved and to recheck focus_follows_mouse, but seems to work without it. The logic for focus_follows_mouse has been refactored. As part of this I've removed the call to wlr_seat_keyboard_has_grab as we don't appear to use keyboard grabs. The functions for handling relative motion, absolute motion and tool axis have been changed. Previously the handler functions were handle_cursor_motion, handle_cursor_motion_absolute and handle_tool_axis. The latter two both called cursor_motion_absolute. Both handle_cursor_motion and cursor_motion_absolute did very similar things. These are now simplified into three handlers and a single common function called cursor_motion. All three handlers call cursor_motion. As cursor_motion works with relative distances, the absolute and tool axis handlers convert them to relative first.
2019-03-16 07:47:39 +00:00
'input/seatop_default.c',
'input/seatop_down.c',
'input/seatop_move_floating.c',
'input/seatop_move_tiling.c',
'input/seatop_resize_floating.c',
'input/seatop_resize_tiling.c',
'input/switch.c',
'input/tablet.c',
'input/text_input.c',
2018-04-05 01:32:31 +00:00
'config/bar.c',
'config/output.c',
'config/seat.c',
'config/input.c',
'commands/assign.c',
2018-03-29 21:20:03 +00:00
'commands/bar.c',
2017-12-27 15:08:18 +00:00
'commands/bind.c',
'commands/border.c',
'commands/client.c',
'commands/create_output.c',
'commands/default_border.c',
'commands/default_floating_border.c',
2018-03-30 14:43:55 +00:00
'commands/default_orientation.c',
2017-11-30 08:39:27 +00:00
'commands/exit.c',
2017-12-04 21:43:49 +00:00
'commands/exec.c',
'commands/exec_always.c',
2018-05-04 12:24:25 +00:00
'commands/floating.c',
'commands/floating_minmax_size.c',
'commands/floating_modifier.c',
2018-02-14 21:47:23 +00:00
'commands/focus.c',
'commands/focus_follows_mouse.c',
'commands/focus_on_window_activation.c',
2018-05-28 03:20:21 +00:00
'commands/focus_wrapping.c',
2018-05-02 13:07:52 +00:00
'commands/font.c',
'commands/for_window.c',
'commands/force_display_urgency_hint.c',
'commands/force_focus_wrapping.c',
2018-04-16 10:36:40 +00:00
'commands/fullscreen.c',
2018-06-09 13:34:56 +00:00
'commands/gaps.c',
'commands/gesture.c',
2018-05-11 22:44:56 +00:00
'commands/hide_edge_borders.c',
'commands/inhibit_idle.c',
2018-01-20 19:10:11 +00:00
'commands/kill.c',
2018-05-14 12:47:10 +00:00
'commands/mark.c',
2019-09-25 14:35:41 +00:00
'commands/max_render_time.c',
2018-04-03 04:47:45 +00:00
'commands/opacity.c',
2017-12-05 17:47:57 +00:00
'commands/include.c',
2017-12-11 09:17:14 +00:00
'commands/input.c',
2018-02-22 23:03:46 +00:00
'commands/layout.c',
2018-03-30 02:10:33 +00:00
'commands/mode.c',
2018-04-05 01:32:31 +00:00
'commands/mouse_warping.c',
'commands/move.c',
'commands/new_float.c',
'commands/new_window.c',
2018-07-16 12:18:12 +00:00
'commands/no_focus.c',
2018-08-07 10:25:04 +00:00
'commands/nop.c',
2018-04-05 01:32:31 +00:00
'commands/output.c',
'commands/popup_during_fullscreen.c',
'commands/primary_selection.c',
2018-04-05 01:32:31 +00:00
'commands/reload.c',
'commands/rename.c',
2018-04-05 01:32:31 +00:00
'commands/resize.c',
'commands/scratchpad.c',
2017-12-14 16:11:56 +00:00
'commands/seat.c',
'commands/seat/attach.c',
'commands/seat/cursor.c',
2017-12-17 15:39:22 +00:00
'commands/seat/fallback.c',
'commands/seat/hide_cursor.c',
'commands/seat/idle.c',
'commands/seat/keyboard_grouping.c',
'commands/seat/pointer_constraint.c',
'commands/seat/shortcuts_inhibitor.c',
'commands/seat/xcursor_theme.c',
2017-12-29 14:31:04 +00:00
'commands/set.c',
2018-05-15 03:14:18 +00:00
'commands/show_marks.c',
'commands/shortcuts_inhibitor.c',
'commands/smart_borders.c',
2018-06-09 13:34:56 +00:00
'commands/smart_gaps.c',
2018-04-05 01:32:31 +00:00
'commands/split.c',
2018-05-24 12:30:44 +00:00
'commands/sticky.c',
2018-03-29 21:49:44 +00:00
'commands/swaybg_command.c',
'commands/swaynag_command.c',
2018-05-26 15:02:21 +00:00
'commands/swap.c',
2018-09-11 07:17:19 +00:00
'commands/tiling_drag.c',
'commands/tiling_drag_threshold.c',
'commands/title_align.c',
'commands/title_format.c',
'commands/titlebar_border_thickness.c',
'commands/titlebar_padding.c',
2018-05-14 12:47:10 +00:00
'commands/unmark.c',
'commands/urgent.c',
2018-04-05 01:32:31 +00:00
'commands/workspace.c',
'commands/workspace_layout.c',
'commands/ws_auto_back_and_forth.c',
2018-11-17 11:29:59 +00:00
'commands/xwayland.c',
2018-04-05 01:32:31 +00:00
'commands/bar/bind.c',
2018-03-29 21:20:03 +00:00
'commands/bar/binding_mode_indicator.c',
'commands/bar/colors.c',
'commands/bar/font.c',
'commands/bar/gaps.c',
2018-03-29 21:20:03 +00:00
'commands/bar/height.c',
'commands/bar/hidden_state.c',
'commands/bar/icon_theme.c',
'commands/bar/id.c',
'commands/bar/mode.c',
'commands/bar/modifier.c',
'commands/bar/output.c',
'commands/bar/pango_markup.c',
'commands/bar/position.c',
'commands/bar/separator_symbol.c',
'commands/bar/status_command.c',
'commands/bar/status_edge_padding.c',
'commands/bar/status_padding.c',
2018-03-29 21:20:03 +00:00
'commands/bar/strip_workspace_numbers.c',
2018-11-17 16:11:28 +00:00
'commands/bar/strip_workspace_name.c',
2018-03-29 21:20:03 +00:00
'commands/bar/swaybar_command.c',
'commands/bar/tray_bind.c',
2018-03-29 21:20:03 +00:00
'commands/bar/tray_output.c',
'commands/bar/tray_padding.c',
'commands/bar/workspace_buttons.c',
'commands/bar/workspace_min_width.c',
2018-03-29 21:20:03 +00:00
'commands/bar/wrap_scroll.c',
2018-04-05 01:32:31 +00:00
2017-12-11 09:17:14 +00:00
'commands/input/accel_profile.c',
'commands/input/calibration_matrix.c',
2017-12-11 09:17:14 +00:00
'commands/input/click_method.c',
2018-09-29 09:49:41 +00:00
'commands/input/drag.c',
2017-12-11 09:17:14 +00:00
'commands/input/drag_lock.c',
'commands/input/dwt.c',
'commands/input/dwtp.c',
2017-12-11 09:17:14 +00:00
'commands/input/events.c',
'commands/input/left_handed.c',
2018-04-24 18:39:29 +00:00
'commands/input/map_from_region.c',
'commands/input/map_to_output.c',
2019-10-29 00:26:00 +00:00
'commands/input/map_to_region.c',
2017-12-11 09:17:14 +00:00
'commands/input/middle_emulation.c',
'commands/input/natural_scroll.c',
'commands/input/pointer_accel.c',
'commands/input/rotation_angle.c',
'commands/input/repeat_delay.c',
'commands/input/repeat_rate.c',
'commands/input/scroll_button.c',
'commands/input/scroll_button_lock.c',
2018-11-17 19:31:33 +00:00
'commands/input/scroll_factor.c',
2017-12-11 09:17:14 +00:00
'commands/input/scroll_method.c',
'commands/input/tap.c',
'commands/input/tap_button_map.c',
'commands/input/tool_mode.c',
'commands/input/xkb_capslock.c',
'commands/input/xkb_file.c',
2017-12-15 10:22:51 +00:00
'commands/input/xkb_layout.c',
'commands/input/xkb_model.c',
'commands/input/xkb_numlock.c',
2017-12-15 10:22:51 +00:00
'commands/input/xkb_options.c',
'commands/input/xkb_rules.c',
'commands/input/xkb_switch_layout.c',
2017-12-15 10:22:51 +00:00
'commands/input/xkb_variant.c',
2018-04-05 01:32:31 +00:00
'commands/output/adaptive_sync.c',
'commands/output/background.c',
'commands/output/disable.c',
'commands/output/dpms.c',
'commands/output/enable.c',
2019-09-25 10:58:27 +00:00
'commands/output/max_render_time.c',
'commands/output/mode.c',
'commands/output/position.c',
'commands/output/power.c',
'commands/output/render_bit_depth.c',
'commands/output/scale.c',
2019-11-13 18:23:36 +00:00
'commands/output/scale_filter.c',
'commands/output/subpixel.c',
'commands/output/toggle.c',
'commands/output/transform.c',
'commands/output/unplug.c',
'tree/arrange.c',
2017-11-30 08:39:27 +00:00
'tree/container.c',
Implement type safe arguments and demote sway_container This commit changes the meaning of sway_container so that it only refers to layout containers and view containers. Workspaces, outputs and the root are no longer known as containers. Instead, root, outputs, workspaces and containers are all a type of node, and containers come in two types: layout containers and view containers. In addition to the above, this implements type safe variables. This means we use specific types such as sway_output and sway_workspace instead of generic containers or nodes. However, it's worth noting that in a few places places (eg. seat focus and transactions) referring to them in a generic way is unavoidable which is why we still use nodes in some places. If you want a TL;DR, look at node.h, as well as the struct definitions for root, output, workspace and container. Note that sway_output now contains a workspaces list, and workspaces now contain a tiling and floating list, and containers now contain a pointer back to the workspace. There are now functions for seat_get_focused_workspace and seat_get_focused_container. The latter will return NULL if a workspace itself is focused. Most other seat functions like seat_get_focus and seat_set_focus now accept and return nodes. In the config->handler_context struct, current_container has been replaced with three pointers: node, container and workspace. node is the same as what current_container was, while workspace is the workspace that the node resides on and container is the actual container, which may be NULL if a workspace itself is focused. The global root_container variable has been replaced with one simply called root, which is a pointer to the sway_root instance. The way outputs are created, enabled, disabled and destroyed has changed. Previously we'd wrap the sway_output in a container when it is enabled, but as we don't have containers any more it needs a different approach. The output_create and output_destroy functions previously created/destroyed the container, but now they create/destroy the sway_output. There is a new function output_disable to disable an output without destroying it. Containers have a new view property. If this is populated then the container is a view container, otherwise it's a layout container. Like before, this property is immutable for the life of the container. Containers have both a `sway_container *parent` and `sway_workspace *workspace`. As we use specific types now, parent cannot point to a workspace so it'll be NULL for containers which are direct children of the workspace. The workspace property is set for all containers, except those which are hidden in the scratchpad as they have no workspace. In some cases we need to refer to workspaces in a container-like way. For example, workspaces have layout and children, but when using specific types this makes it difficult. Likewise, it's difficult for a container to get its parent's layout when the parent could be another container or a workspace. To make it easier, some helper functions have been created: container_parent_layout and container_get_siblings. container_remove_child has been renamed to container_detach and container_replace_child has been renamed to container_replace. `container_handle_fullscreen_reparent(con, old_parent)` has had the old_parent removed. We now unfullscreen the workspace when detaching the container, so this function is simplified and only needs one argument now. container_notify_subtree_changed has been renamed to container_update_representation. This is more descriptive of its purpose. I also wanted to be able to call it with whatever container was changed rather than the container's parent, which makes bubbling up to the workspace easier. There are now state structs per node thing. ie. sway_output_state, sway_workspace_state and sway_container_state. The focus, move and layout commands have been completely refactored to work with the specific types. I considered making these a separate PR, but I'd be backporting my changes only to replace them again, and it's easier just to test everything at once.
2018-08-30 11:00:10 +00:00
'tree/node.c',
'tree/root.c',
2018-01-21 14:09:53 +00:00
'tree/view.c',
2017-11-30 08:39:27 +00:00
'tree/workspace.c',
2018-04-04 00:00:09 +00:00
'tree/output.c',
2017-11-30 08:39:27 +00:00
)
sway_deps = [
2018-04-06 15:49:27 +00:00
cairo,
drm,
2018-03-28 19:47:22 +00:00
jsonc,
libevdev,
2018-03-28 19:47:22 +00:00
libinput,
libudev,
2018-03-28 19:47:22 +00:00
math,
2018-04-06 15:49:27 +00:00
pango,
pcre2,
2017-11-30 08:39:27 +00:00
pixman,
threads,
2017-11-30 08:39:27 +00:00
wayland_server,
wlroots,
2017-12-10 18:59:04 +00:00
xkbcommon,
2022-11-26 19:18:43 +00:00
xcb,
2022-04-17 18:16:35 +00:00
xcb_icccm,
2017-11-30 08:39:27 +00:00
]
2019-01-17 17:02:25 +00:00
if have_xwayland
sway_sources += 'desktop/xwayland.c'
2022-11-26 19:18:43 +00:00
endif
if wlroots_features['libinput_backend']
sway_sources += 'input/libinput.c'
endif
2017-11-30 08:39:27 +00:00
executable(
'sway',
sway_sources + wl_protos_src,
2017-11-30 08:39:27 +00:00
include_directories: [sway_inc],
2017-11-30 11:25:13 +00:00
dependencies: sway_deps,
2017-11-30 13:31:13 +00:00
link_with: [lib_sway_common],
install: true
2017-11-30 08:39:27 +00:00
)