genode/os/src/server/nitpicker/canvas.h
Norman Feske 8c8d53777f Generalization of nitpicker's graphics backend
This patch re-arranges nitpicker's graphics backend in a more modular
and expandable way. Generalized versions of the 'Canvas',
'Chunky_canvas', and 'Pixel_*' classes have been moved to
'os/include/util/' and 'os/include/os'. The only remaining parts that
are specific to nitpicker's needs are a few drawing functions, each
located in a distinct header at 'os/include/nitpicker_gfx/'.
2014-01-27 18:54:06 +01:00

103 lines
2.4 KiB
C++

/*
* \brief Graphics backend used by nitpicker
* \author Norman Feske
* \date 2013-12-29
*/
/*
* Copyright (C) 2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _CANVAS_H_
#define _CANVAS_H_
#include <nitpicker_gfx/box_painter.h>
#include <nitpicker_gfx/text_painter.h>
#include <nitpicker_gfx/texture_painter.h>
typedef Genode::Surface_base::Area Area;
typedef Genode::Surface_base::Point Point;
typedef Genode::Surface_base::Rect Rect;
typedef Genode::Color Color;
using Genode::Texture_base;
using Genode::Texture;
/**
* Pixel-type-independent interface of nitpicker's graphics backend
*/
struct Canvas_base
{
virtual Area size() const = 0;
virtual Rect clip() const = 0;
virtual void clip(Rect) = 0;
virtual void flush_pixels(Rect) = 0;
virtual void draw_box(Rect, Color) = 0;
virtual void draw_texture(Point, Texture_base const &, Texture_painter::Mode,
Color mix_color, bool allow_alpha) = 0;
virtual void draw_text(Point, Text_painter::Font const &, Color,
char const *string) = 0;
};
/**
* Pixel-type-specific implementation of nitpicker's graphics backend
*/
template <typename PT>
class Canvas : public Canvas_base, public Genode::Surface_base::Flusher
{
private:
Genode::Surface<PT> _surface;
public:
Canvas(PT *base, Area size) : _surface(base, size)
{
_surface.flusher(this);
}
/**
* Default implementation of Surface_base::Flusher interface
*/
void flush_pixels(Rect) { }
Area size() const { return _surface.size(); }
Rect clip() const { return _surface.clip(); }
void clip(Rect rect) { _surface.clip(rect); }
void draw_box(Rect rect, Color color)
{
Box_painter::paint(_surface, rect, color);
}
void draw_texture(Point pos, Texture_base const &texture_base,
Texture_painter::Mode mode, Color mix_color,
bool allow_alpha)
{
Texture<PT> const &texture = static_cast<Texture<PT> const &>(texture_base);
Texture_painter::paint(_surface, texture, mix_color, pos, mode,
allow_alpha);
}
void draw_text(Point pos, Text_painter::Font const &font,
Color color, char const *string)
{
Text_painter::paint(_surface, pos, font, color, string);
}
};
#endif /* _CANVAS_H_ */