mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
alt-tab preview: restore functionality after move to scene-graph
This commit is contained in:
parent
296e58079f
commit
15a5b710db
7 changed files with 98 additions and 4 deletions
|
|
@ -1,7 +1,17 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <wlr/types/wlr_scene.h>
|
||||
struct wlr_scene_node;
|
||||
struct wlr_scene_rect;
|
||||
struct wlr_scene_tree;
|
||||
struct wlr_surface;
|
||||
|
||||
struct wlr_scene_rect *lab_wlr_scene_get_rect(struct wlr_scene_node *node);
|
||||
struct wlr_scene_tree *lab_scene_tree_from_node(struct wlr_scene_node *node);
|
||||
struct wlr_surface *lab_wlr_surface_from_node(struct wlr_scene_node *node);
|
||||
|
||||
/**
|
||||
* lab_get_prev_node - return previous (sibling) node
|
||||
* @node: node to find the previous node from
|
||||
* Return NULL if previous link is list-head which means node is bottom-most
|
||||
*/
|
||||
struct wlr_scene_node *lab_wlr_scene_get_prev_node(struct wlr_scene_node *node);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue