mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
This settings allows user to choose whether to draw a filled rectangle or an outlined rectangle as the preview for window snapping.
44 lines
1,009 B
C
44 lines
1,009 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef LABWC_OVERLAY_H
|
|
#define LABWC_OVERLAY_H
|
|
|
|
#include <wlr/util/box.h>
|
|
#include "common/graphic-helpers.h"
|
|
#include "regions.h"
|
|
#include "view.h"
|
|
|
|
struct overlay_rect {
|
|
struct wlr_scene_node *node;
|
|
bool fill;
|
|
union {
|
|
/* if fill is true */
|
|
struct wlr_scene_rect *scene_rect;
|
|
/* if fill is false */
|
|
struct multi_rect *pixman_rect;
|
|
};
|
|
};
|
|
|
|
struct overlay {
|
|
struct overlay_rect region_rect, edge_rect;
|
|
|
|
/* Represents currently shown or delayed overlay */
|
|
struct {
|
|
/* Region overlay */
|
|
struct region *region;
|
|
|
|
/* Snap-to-edge overlay */
|
|
enum view_edge edge;
|
|
struct output *output;
|
|
} active;
|
|
|
|
/* For delayed snap-to-edge overlay */
|
|
struct wl_event_source *timer;
|
|
};
|
|
|
|
void overlay_reconfigure(struct seat *seat);
|
|
/* Calls overlay_hide() internally if there's no overlay to show */
|
|
void overlay_update(struct seat *seat);
|
|
/* This function must be called when server->grabbed_view is destroyed */
|
|
void overlay_hide(struct seat *seat);
|
|
|
|
#endif
|