2021-01-06 14:46:57 +00:00
|
|
|
#pragma once
|
|
|
|
#include "common.hpp"
|
|
|
|
#include "tags/context.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
|
|
|
|
class renderer_interface {
|
|
|
|
public:
|
|
|
|
virtual void render_offset(const tags::context& ctxt, int pixels) = 0;
|
2021-01-06 15:53:52 +00:00
|
|
|
virtual void render_text(const tags::context& ctxt, const string&& str) = 0;
|
2021-01-06 14:46:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
POLYBAR_NS_END
|