2016-12-05 14:41:00 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
|
|
|
POLYBAR_NS
|
|
|
|
|
|
|
|
namespace signals {
|
2016-12-19 23:05:43 -05:00
|
|
|
namespace eventqueue {
|
2016-12-23 16:19:42 -05:00
|
|
|
struct exit_terminate;
|
|
|
|
struct exit_reload;
|
|
|
|
struct notify_change;
|
|
|
|
struct check_state;
|
|
|
|
struct update;
|
2016-12-05 14:41:00 -05:00
|
|
|
}
|
|
|
|
namespace ipc {
|
|
|
|
struct process_command;
|
|
|
|
struct process_hook;
|
|
|
|
struct process_action;
|
|
|
|
}
|
|
|
|
namespace ui {
|
2016-12-20 22:50:43 -05:00
|
|
|
struct tick;
|
2016-12-05 14:41:00 -05:00
|
|
|
struct button_press;
|
|
|
|
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;
|
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;
|
|
|
|
struct offset_pixel;
|
|
|
|
struct attribute_set;
|
|
|
|
struct attribute_unset;
|
|
|
|
struct attribute_toggle;
|
|
|
|
struct action_begin;
|
|
|
|
struct action_end;
|
|
|
|
struct write_text_ascii;
|
|
|
|
struct write_text_unicode;
|
|
|
|
struct write_text_string;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
POLYBAR_NS_END
|