mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
22 lines
548 B
C
22 lines
548 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef LABWC_SNAP_CONSTRAINTS_H
|
|
#define LABWC_SNAP_CONSTRAINTS_H
|
|
|
|
#include <wlr/util/edges.h>
|
|
|
|
#include "common/border.h"
|
|
#include "view.h"
|
|
|
|
struct wlr_box;
|
|
|
|
void snap_constraints_set(struct view *view,
|
|
enum wlr_edges direction, struct wlr_box geom);
|
|
|
|
void snap_constraints_invalidate(struct view *view);
|
|
|
|
void snap_constraints_update(struct view *view);
|
|
|
|
struct wlr_box snap_constraints_effective(struct view *view,
|
|
enum wlr_edges direction, bool use_pending);
|
|
|
|
#endif /* LABWC_SNAP_CONSTRAINTS_H */
|