2016-12-05 19:41:00 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
|
|
|
POLYBAR_NS
|
|
|
|
|
|
|
|
namespace signals {
|
2016-12-20 04:05:43 +00:00
|
|
|
namespace eventqueue {
|
2016-12-05 19:41:00 +00:00
|
|
|
struct process_quit;
|
|
|
|
struct process_update;
|
|
|
|
struct process_input;
|
|
|
|
struct process_check;
|
2016-12-22 21:11:03 +00:00
|
|
|
struct process_broadcast;
|
2016-12-05 19:41:00 +00:00
|
|
|
}
|
|
|
|
namespace ipc {
|
|
|
|
struct process_command;
|
|
|
|
struct process_hook;
|
|
|
|
struct process_action;
|
|
|
|
}
|
|
|
|
namespace ui {
|
2016-12-21 03:50:43 +00:00
|
|
|
struct tick;
|
2016-12-05 19:41:00 +00:00
|
|
|
struct button_press;
|
|
|
|
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;
|
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;
|
|
|
|
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
|