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