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 {
|
2017-01-12 15:12:54 +00:00
|
|
|
struct start;
|
2016-12-23 21:19:42 +00:00
|
|
|
struct exit_terminate;
|
|
|
|
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;
|
2016-12-05 19:41:00 +00:00
|
|
|
}
|
|
|
|
namespace ipc {
|
2016-12-26 09:36:14 +00:00
|
|
|
struct command;
|
|
|
|
struct hook;
|
|
|
|
struct action;
|
2016-12-05 19:41:00 +00:00
|
|
|
}
|
|
|
|
namespace ui {
|
2017-01-19 04:38:42 +00:00
|
|
|
struct ready;
|
2017-01-25 22:36:34 +00:00
|
|
|
struct changed;
|
2016-12-21 03:50:43 +00:00
|
|
|
struct tick;
|
2016-12-05 19:41:00 +00:00
|
|
|
struct button_press;
|
2017-09-03 04:45:45 +00:00
|
|
|
struct cursor_change;
|
2016-12-05 19:41:00 +00:00
|
|
|
struct visibility_change;
|
2016-12-16 06:10:45 +00:00
|
|
|
struct dim_window;
|
2016-12-21 03:50:43 +00:00
|
|
|
struct shade_window;
|
|
|
|
struct unshade_window;
|
2017-01-24 05:59:58 +00:00
|
|
|
struct request_snapshot;
|
2016-12-05 19:41:00 +00:00
|
|
|
}
|
2017-01-01 19:29:38 +00:00
|
|
|
namespace ui_tray {
|
|
|
|
struct mapped_clients;
|
|
|
|
}
|
2016-12-05 19:41:00 +00:00
|
|
|
namespace parser {
|
|
|
|
struct change_background;
|
|
|
|
struct change_foreground;
|
|
|
|
struct change_underline;
|
|
|
|
struct change_overline;
|
|
|
|
struct change_font;
|
|
|
|
struct change_alignment;
|
2017-05-17 21:11:06 +00:00
|
|
|
struct reverse_colors;
|
2016-12-05 19:41:00 +00:00
|
|
|
struct offset_pixel;
|
|
|
|
struct attribute_set;
|
|
|
|
struct attribute_unset;
|
|
|
|
struct attribute_toggle;
|
|
|
|
struct action_begin;
|
|
|
|
struct action_end;
|
2017-01-19 04:38:42 +00:00
|
|
|
struct text;
|
2016-12-05 19:41:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
POLYBAR_NS_END
|