2016-12-05 20:41:00 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
|
|
|
POLYBAR_NS
|
|
|
|
|
2017-01-01 20:29:38 +01:00
|
|
|
class signal_emitter;
|
|
|
|
class signal_receiver_interface;
|
2017-01-19 11:11:28 +01:00
|
|
|
template <int Priority, typename Signal, typename... Signals>
|
2016-12-26 10:36:14 +01:00
|
|
|
class signal_receiver;
|
|
|
|
|
2016-12-05 20:41:00 +01:00
|
|
|
namespace signals {
|
2017-01-01 20:29:38 +01:00
|
|
|
namespace detail {
|
|
|
|
class signal;
|
|
|
|
}
|
|
|
|
|
2016-12-20 05:05:43 +01:00
|
|
|
namespace eventqueue {
|
2017-01-12 16:12:54 +01:00
|
|
|
struct start;
|
2016-12-23 22:19:42 +01:00
|
|
|
struct exit_terminate;
|
|
|
|
struct exit_reload;
|
|
|
|
struct notify_change;
|
2017-01-09 14:27:55 +01:00
|
|
|
struct notify_forcechange;
|
2016-12-23 22:19:42 +01:00
|
|
|
struct check_state;
|
2019-08-06 19:35:07 +02:00
|
|
|
} // namespace eventqueue
|
2016-12-05 20:41:00 +01:00
|
|
|
namespace ipc {
|
2016-12-26 10:36:14 +01:00
|
|
|
struct command;
|
|
|
|
struct hook;
|
|
|
|
struct action;
|
2019-08-06 19:35:07 +02:00
|
|
|
} // namespace ipc
|
2016-12-05 20:41:00 +01:00
|
|
|
namespace ui {
|
2017-01-19 05:38:42 +01:00
|
|
|
struct ready;
|
2017-01-25 23:36:34 +01:00
|
|
|
struct changed;
|
2016-12-21 04:50:43 +01:00
|
|
|
struct tick;
|
2016-12-05 20:41:00 +01:00
|
|
|
struct button_press;
|
2017-09-02 21:45:45 -07:00
|
|
|
struct cursor_change;
|
2016-12-05 20:41:00 +01:00
|
|
|
struct visibility_change;
|
2016-12-16 07:10:45 +01:00
|
|
|
struct dim_window;
|
2016-12-21 04:50:43 +01:00
|
|
|
struct shade_window;
|
|
|
|
struct unshade_window;
|
2017-01-24 06:59:58 +01:00
|
|
|
struct request_snapshot;
|
2017-05-23 21:32:34 +02:00
|
|
|
struct update_background;
|
2017-08-31 18:26:38 +02:00
|
|
|
struct update_geometry;
|
2019-08-06 19:35:07 +02:00
|
|
|
} // namespace ui
|
2017-01-01 20:29:38 +01:00
|
|
|
namespace ui_tray {
|
|
|
|
struct mapped_clients;
|
|
|
|
}
|
2016-12-05 20:41:00 +01:00
|
|
|
namespace parser {
|
|
|
|
struct change_background;
|
|
|
|
struct change_foreground;
|
|
|
|
struct change_underline;
|
|
|
|
struct change_overline;
|
|
|
|
struct change_font;
|
|
|
|
struct change_alignment;
|
2017-05-17 23:11:06 +02:00
|
|
|
struct reverse_colors;
|
2016-12-05 20:41:00 +01:00
|
|
|
struct offset_pixel;
|
|
|
|
struct attribute_set;
|
|
|
|
struct attribute_unset;
|
|
|
|
struct attribute_toggle;
|
|
|
|
struct action_begin;
|
|
|
|
struct action_end;
|
2017-01-19 05:38:42 +01:00
|
|
|
struct text;
|
2019-01-12 14:51:54 +01:00
|
|
|
struct control;
|
2019-08-06 19:35:07 +02:00
|
|
|
} // namespace parser
|
|
|
|
} // namespace signals
|
2016-12-05 20:41:00 +01:00
|
|
|
|
|
|
|
POLYBAR_NS_END
|