polybar-dwm/include/events/signal_fwd.hpp

44 lines
852 B
C++
Raw Normal View History

#pragma once
#include "common.hpp"
POLYBAR_NS
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;
namespace signals {
namespace detail {
class signal;
}
namespace eventqueue {
2016-12-23 22:19:42 +01:00
struct exit_reload;
struct notify_change;
struct notify_forcechange;
2016-12-23 22:19:42 +01:00
struct check_state;
} // namespace eventqueue
namespace ipc {
2016-12-26 10:36:14 +01:00
struct command;
struct hook;
struct action;
} // namespace ipc
namespace ui {
2017-01-25 23:36:34 +01:00
struct changed;
struct button_press;
struct visibility_change;
2016-12-16 07:10:45 +01:00
struct dim_window;
2017-01-24 06:59:58 +01:00
struct request_snapshot;
struct update_background;
struct update_geometry;
} // namespace ui
namespace ui_tray {
struct tray_width_change;
struct tray_pos_change;
}
} // namespace signals
POLYBAR_NS_END