ca45867506
At the moment it isn't used at all and a lot of data is duplicated. This is a temporary state introduced for nicer diff separation into several commits.
20 lines
602 B
C
20 lines
602 B
C
/* Copyright (c), Charlotte Meyer <dev@buffet.sh>
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#ifndef KIWMI_DESKTOP_POPUP_H
|
|
#define KIWMI_DESKTOP_POPUP_H
|
|
|
|
struct wlr_xdg_popup;
|
|
struct kiwmi_desktop_surface;
|
|
|
|
struct kiwmi_desktop_surface *
|
|
popup_get_desktop_surface(struct wlr_xdg_popup *popup);
|
|
void popup_attach(
|
|
struct wlr_xdg_popup *popup,
|
|
struct kiwmi_desktop_surface *desktop_surface);
|
|
|
|
#endif /* KIWMI_DESKTOP_POPUP_H */
|