docs(signal): document newly added signals

This commit is contained in:
Benno Fünfstück 2018-08-13 18:42:43 +02:00 committed by Patrick Ziegler
parent 2d385150bd
commit b20ad041e9

View File

@ -120,9 +120,11 @@ namespace signals {
struct request_snapshot : public detail::value_signal<request_snapshot, string> {
using base_type::base_type;
};
/// emitted whenever the desktop background slice changes
struct update_background : public detail::base_signal<update_background> {
using base_type::base_type;
};
/// emitted when the bar geometry changes (such as position of the bar on the screen)
struct update_geometry : public detail::base_signal<update_geometry> {
using base_type::base_type;
};