2016-06-14 23:32:35 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
2016-12-26 03:40:15 -05:00
|
|
|
namespace xpp {
|
|
|
|
template <typename Connection, template <typename, typename> class...>
|
|
|
|
class gcontext;
|
|
|
|
template <typename Connection, template <typename, typename> class...>
|
|
|
|
class pixmap;
|
|
|
|
template <typename Connection, template <typename, typename> class...>
|
|
|
|
class drawable;
|
|
|
|
template <typename Connection, template <typename, typename> class...>
|
|
|
|
class colormap;
|
|
|
|
template <typename Connection, template <typename, typename> class...>
|
|
|
|
class atom;
|
|
|
|
template <typename Connection, template <typename, typename> class...>
|
|
|
|
class font;
|
|
|
|
template <typename Connection, template <typename, typename> class...>
|
|
|
|
class cursor;
|
2016-12-26 04:27:30 -05:00
|
|
|
namespace event {
|
|
|
|
template <class Event, class... Events>
|
|
|
|
class sink;
|
|
|
|
}
|
2016-12-26 03:40:15 -05:00
|
|
|
}
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
class connection;
|
2016-11-30 04:06:16 -05:00
|
|
|
class registry;
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-11-20 17:04:31 -05:00
|
|
|
using gcontext = xpp::gcontext<connection&>;
|
|
|
|
using pixmap = xpp::pixmap<connection&>;
|
|
|
|
using drawable = xpp::drawable<connection&>;
|
|
|
|
using colormap = xpp::colormap<connection&>;
|
|
|
|
using atom = xpp::atom<connection&>;
|
|
|
|
using font = xpp::font<connection&>;
|
|
|
|
using cursor = xpp::cursor<connection&>;
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|