genode/repos/gems/src/app/menu_view/widget.h

253 lines
5.5 KiB
C
Raw Normal View History

/*
* \brief Common base class for all widgets
* \author Norman Feske
* \date 2009-09-11
*/
/*
* Copyright (C) 2014-2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _WIDGET_H_
#define _WIDGET_H_
/* Genode includes */
#include <util/xml_generator.h>
/* local includes */
#include <widget_factory.h>
2017-08-09 19:52:19 +02:00
#include <list_model_from_xml.h>
namespace Menu_view {
struct Margin;
struct Widget;
typedef Margin Padding;
}
struct Menu_view::Margin
{
unsigned left, right, top, bottom;
Margin(unsigned left, unsigned right, unsigned top, unsigned bottom)
:
left(left), right(right), top(top), bottom(bottom)
{ }
unsigned horizontal() const { return left + right; }
unsigned vertical() const { return top + bottom; }
};
class Menu_view::Widget : public List<Widget>::Element
{
public:
enum { NAME_MAX_LEN = 32 };
typedef String<NAME_MAX_LEN> Name;
typedef Name Type_name;
struct Unique_id
{
unsigned value = 0;
/**
* Constructor
*
* Only to be called by widget factory.
*/
Unique_id(unsigned value) : value(value) { }
/**
* Default constructor creates invalid ID
*/
Unique_id() { }
bool operator != (Unique_id const &other) { return other.value != value; }
bool valid() const { return value != 0; }
};
2017-08-09 19:52:19 +02:00
static Type_name node_type_name(Xml_node node)
{
char type[NAME_MAX_LEN];
node.type_name(type, sizeof(type));
return Type_name(Cstring(type));
}
2017-08-09 19:52:19 +02:00
static Name node_name(Xml_node node)
{
2017-08-09 19:52:19 +02:00
return Decorator::string_attribute(node, "name", node_type_name(node));
}
2017-08-09 19:52:19 +02:00
private:
2017-08-09 19:52:19 +02:00
Type_name const _type_name;
Name const _name;
2017-08-09 19:52:19 +02:00
Unique_id const _unique_id;
2017-08-09 19:52:19 +02:00
protected:
2017-08-09 19:52:19 +02:00
Widget_factory &_factory;
2017-08-09 19:52:19 +02:00
List<Widget> _children;
2017-08-09 19:52:19 +02:00
struct Model_update_policy : List_model_update_policy<Widget>
{
2017-08-09 19:52:19 +02:00
Widget_factory &_factory;
2017-08-09 19:52:19 +02:00
Model_update_policy(Widget_factory &factory) : _factory(factory) { }
2017-08-09 19:52:19 +02:00
void destroy_element(Widget &w) { _factory.destroy(&w); }
2017-08-09 19:52:19 +02:00
Widget &create_element(Xml_node elem_node)
{
if (Widget *w = _factory.create(elem_node))
return *w;
2017-08-09 19:52:19 +02:00
throw Unknown_element_type();
}
2017-08-09 19:52:19 +02:00
void update_element(Widget &w, Xml_node node) { w.update(node); }
2017-08-09 19:52:19 +02:00
static bool element_matches_xml_node(Widget const &w, Xml_node node)
{
return node.has_type(w._type_name.string())
&& Widget::node_name(node) == w._name;
}
2017-08-09 19:52:19 +02:00
} _model_update_policy { _factory };
2017-08-09 19:52:19 +02:00
inline void _update_children(Xml_node node)
{
update_list_model_from_xml(_model_update_policy, _children, node);
}
void _draw_children(Surface<Pixel_rgb888> &pixel_surface,
Surface<Pixel_alpha8> &alpha_surface,
Point at) const
{
for (Widget const *w = _children.first(); w; w = w->next())
w->draw(pixel_surface, alpha_surface, at + w->geometry.p1());
}
virtual void _layout() { }
Rect _inner_geometry() const
{
return Rect(Point(margin.left, margin.top),
Area(geometry.w() - margin.horizontal(),
geometry.h() - margin.vertical()));
}
public:
Margin margin { 0, 0, 0, 0 };
/*
* Position relative to the parent widget and actual size, defined by
* the parent
*/
Rect geometry;
/*
* Return x/y positions of the edges of the widget with the margin
* applied
*/
Rect edges() const { return Rect(Point(geometry.x1() + margin.left,
geometry.y1() + margin.top),
Point(geometry.x2() - margin.right,
geometry.y2() - margin.bottom)); }
Widget(Widget_factory &factory, Xml_node node, Unique_id unique_id)
:
2017-08-09 19:52:19 +02:00
_type_name(node_type_name(node)),
_name(node_name(node)),
_unique_id(unique_id),
_factory(factory)
{ }
virtual ~Widget()
{
while (Widget *w = _children.first()) {
_children.remove(w);
2017-08-09 19:52:19 +02:00
_model_update_policy.destroy_element(*w);
}
}
2017-08-09 19:52:19 +02:00
bool has_name(Name const &name) const { return name == _name; }
virtual void update(Xml_node node) = 0;
virtual Area min_size() const = 0;
virtual void draw(Surface<Pixel_rgb888> &pixel_surface,
Surface<Pixel_alpha8> &alpha_surface,
Point at) const = 0;
void size(Area size)
{
geometry = Rect(geometry.p1(), size);
_layout();
}
void position(Point position)
{
geometry = Rect(position, geometry.area());
}
/**
* Return unique ID of inner-most hovered widget
*
* This function is used to track changes of the hover model.
*/
virtual Unique_id hovered(Point at) const
{
if (!_inner_geometry().contains(at))
return Unique_id();
for (Widget const *w = _children.first(); w; w = w->next()) {
Unique_id res = w->hovered(at - w->geometry.p1());
if (res.valid())
return res;
}
return _unique_id;
}
2017-08-09 19:52:19 +02:00
void print(Output &out) const
{
Genode::print(out, _name);
}
virtual void gen_hover_model(Xml_generator &xml, Point at) const
{
if (_inner_geometry().contains(at)) {
xml.node(_type_name.string(), [&]() {
xml.attribute("name", _name.string());
xml.attribute("xpos", geometry.x1());
xml.attribute("ypos", geometry.y1());
xml.attribute("width", geometry.w());
xml.attribute("height", geometry.h());
for (Widget const *w = _children.first(); w; w = w->next()) {
w->gen_hover_model(xml, at - w->geometry.p1());
}
});
}
}
};
#endif /* _WIDGET_H_ */