kiwmi/include/server.h

36 lines
908 B
C
Raw Normal View History

2019-02-17 12:19:28 +00:00
/* 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_SERVER_H
#define KIWMI_SERVER_H
2019-03-26 20:45:00 +00:00
#include <stdbool.h>
2019-10-16 16:59:29 +00:00
#include "desktop/desktop.h"
#include "input/input.h"
2019-03-07 18:25:38 +00:00
2019-02-17 12:19:28 +00:00
struct kiwmi_server {
struct wl_display *wl_display;
2019-04-08 16:10:37 +00:00
struct wl_event_loop *wl_event_loop;
2019-02-17 12:19:28 +00:00
struct wlr_backend *backend;
const char *socket;
2019-10-18 20:42:30 +00:00
char *config_path;
struct kiwmi_lua *lua;
2019-03-17 19:04:52 +00:00
struct kiwmi_desktop desktop;
2019-03-17 19:17:41 +00:00
struct kiwmi_input input;
struct {
struct wl_signal destroy;
} events;
2019-02-17 12:19:28 +00:00
};
2019-10-18 20:42:30 +00:00
bool server_init(struct kiwmi_server *server, char *config_path);
2019-02-18 11:37:23 +00:00
bool server_run(struct kiwmi_server *server);
2019-02-17 12:19:28 +00:00
void server_fini(struct kiwmi_server *server);
#endif /* KIWMI_SERVER_H */