2016-12-05 19:41:00 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
|
|
|
POLYBAR_NS
|
|
|
|
|
2017-01-01 19:29:38 +00:00
|
|
|
class signal_emitter;
|
|
|
|
class signal_receiver_interface;
|
2017-01-19 10:11:28 +00:00
|
|
|
template <int Priority, typename Signal, typename... Signals>
|
2016-12-26 09:36:14 +00:00
|
|
|
class signal_receiver;
|
|
|
|
|
2016-12-05 19:41:00 +00:00
|
|
|
namespace signals {
|
2017-01-01 19:29:38 +00:00
|
|
|
namespace detail {
|
|
|
|
class signal;
|
|
|
|
}
|
|
|
|
|
2016-12-20 04:05:43 +00:00
|
|
|
namespace eventqueue {
|
2016-12-23 21:19:42 +00:00
|
|
|
struct exit_reload;
|
|
|
|
struct notify_change;
|
2017-01-09 13:27:55 +00:00
|
|
|
struct notify_forcechange;
|
2016-12-23 21:19:42 +00:00
|
|
|
struct check_state;
|
2022-03-20 18:09:45 +00:00
|
|
|
} // namespace eventqueue
|
2016-12-05 19:41:00 +00:00
|
|
|
namespace ipc {
|
2016-12-26 09:36:14 +00:00
|
|
|
struct command;
|
|
|
|
struct hook;
|
|
|
|
struct action;
|
2022-03-20 18:09:45 +00:00
|
|
|
} // namespace ipc
|
2016-12-05 19:41:00 +00:00
|
|
|
namespace ui {
|
2017-01-25 22:36:34 +00:00
|
|
|
struct changed;
|
2016-12-05 19:41:00 +00:00
|
|
|
struct button_press;
|
|
|
|
struct visibility_change;
|
2016-12-16 06:10:45 +00:00
|
|
|
struct dim_window;
|
2017-01-24 05:59:58 +00:00
|
|
|
struct request_snapshot;
|
2017-05-23 19:32:34 +00:00
|
|
|
struct update_background;
|
2017-08-31 16:26:38 +00:00
|
|
|
struct update_geometry;
|
2022-03-20 18:09:45 +00:00
|
|
|
} // namespace ui
|
2017-01-01 19:29:38 +00:00
|
|
|
namespace ui_tray {
|
|
|
|
struct mapped_clients;
|
2022-04-15 21:50:04 +00:00
|
|
|
struct tray_width_change;
|
|
|
|
struct tray_pos_change;
|
2017-01-01 19:29:38 +00:00
|
|
|
}
|
2022-03-20 18:09:45 +00:00
|
|
|
} // namespace signals
|
2016-12-05 19:41:00 +00:00
|
|
|
|
|
|
|
POLYBAR_NS_END
|