mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
608519363d
New module that uses the X keyboard extension to show keyboard layout and indicators. Ref #84, #200
28 lines
443 B
C++
28 lines
443 B
C++
#pragma once
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include "common.hpp"
|
|
#include "x11/extensions_fwd.hpp"
|
|
|
|
// fwd
|
|
namespace xpp {
|
|
namespace event {
|
|
template <typename Connection, typename... Extensions>
|
|
class registry;
|
|
}
|
|
}
|
|
|
|
POLYBAR_NS
|
|
|
|
// fwd
|
|
class connection;
|
|
|
|
using xpp_registry = xpp::event::registry<connection&, XPP_EXTENSION_LIST>;
|
|
|
|
class registry : public xpp_registry {
|
|
public:
|
|
explicit registry(connection& conn);
|
|
};
|
|
|
|
POLYBAR_NS_END
|