mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-11-17 07:48:28 +01:00
20 lines
751 B
C
20 lines
751 B
C
#ifndef _SWAY_IPC_JSON_H
|
|
#define _SWAY_IPC_JSON_H
|
|
#include <json.h>
|
|
#include "sway/output.h"
|
|
#include "sway/tree/container.h"
|
|
#include "sway/input/input-manager.h"
|
|
|
|
json_object *ipc_json_get_version(void);
|
|
|
|
json_object *ipc_json_get_binding_mode(void);
|
|
|
|
json_object *ipc_json_describe_disabled_output(struct sway_output *o);
|
|
json_object *ipc_json_describe_non_desktop_output(struct sway_output_non_desktop *o);
|
|
json_object *ipc_json_describe_node(struct sway_node *node);
|
|
json_object *ipc_json_describe_node_recursive(struct sway_node *node);
|
|
json_object *ipc_json_describe_input(struct sway_input_device *device);
|
|
json_object *ipc_json_describe_seat(struct sway_seat *seat);
|
|
json_object *ipc_json_describe_bar_config(struct bar_config *bar);
|
|
|
|
#endif
|