genode/repos/os/src/server/nitpicker/view_stack.h

234 lines
5.4 KiB
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Nitpicker view stack
* \author Norman Feske
* \date 2006-08-08
*/
/*
2013-01-10 21:44:47 +01:00
* Copyright (C) 2006-2013 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _VIEW_STACK_H_
#define _VIEW_STACK_H_
#include "view.h"
#include "canvas.h"
2011-12-22 16:19:25 +01:00
class Session;
2011-12-22 16:19:25 +01:00
class View_stack
{
private:
Area _size;
2013-09-07 13:16:25 +02:00
Mode &_mode;
Genode::List<View_stack_elem> _views;
View *_default_background = nullptr;
Dirty_rect mutable _dirty_rect;
2011-12-22 16:19:25 +01:00
/**
* Return outline geometry of a view
*
* This geometry depends on the view geometry and the currently active
* Nitpicker mode. In non-flat modes, we incorporate the surrounding
* frame.
2011-12-22 16:19:25 +01:00
*/
Rect _outline(View const &view) const;
2011-12-22 16:19:25 +01:00
/**
* Return top-most view of the view stack
*/
View const *_first_view_const() const { return static_cast<View const *>(_views.first()); }
2011-12-22 16:19:25 +01:00
View *_first_view() { return static_cast<View *>(_views.first()); }
/**
* Find position in view stack for inserting a view
*/
2013-09-07 02:02:26 +02:00
View const *_target_stack_position(View const *neighbor, bool behind);
2011-12-22 16:19:25 +01:00
/**
* Find best visible label position
*/
2013-09-07 02:02:26 +02:00
void _optimize_label_rec(View const *cv, View const *lv, Rect rect, Rect *optimal);
2011-12-22 16:19:25 +01:00
/**
* Position labels that are affected by specified area
*/
void _place_labels(Rect);
2011-12-22 16:19:25 +01:00
/**
* Return view following the specified view in the view stack
2013-09-07 02:02:26 +02:00
*
* The function is a template to capture both const and non-const
* usage.
2011-12-22 16:19:25 +01:00
*/
2013-09-07 02:02:26 +02:00
template <typename VIEW>
VIEW *_next_view(VIEW &view) const;
/**
* Schedule 'rect' to be redrawn
*/
void _mark_view_as_dirty(View &view, Rect rect)
{
_dirty_rect.mark_as_dirty(rect);
}
2011-12-22 16:19:25 +01:00
public:
/**
* Constructor
*/
View_stack(Area size, Mode &mode) : _size(size), _mode(mode)
{
_dirty_rect.mark_as_dirty(Rect(Point(0, 0), _size));
}
2011-12-22 16:19:25 +01:00
/**
* Return size
*/
Area size() const { return _size; }
void size(Area size)
{
_size = size;
_dirty_rect.mark_as_dirty(Rect(Point(0, 0), _size));
}
2011-12-22 16:19:25 +01:00
/**
* Draw views in specified area (recursivly)
*
* \param view current view in view stack
2011-12-22 16:19:25 +01:00
*/
void draw_rec(Canvas_base &, View const *view, Rect) const;
2011-12-22 16:19:25 +01:00
/**
* Draw dirty areas
2011-12-22 16:19:25 +01:00
*/
Dirty_rect draw(Canvas_base &canvas) const
2011-12-22 16:19:25 +01:00
{
Dirty_rect result = _dirty_rect;
_dirty_rect.flush([&] (Rect const &rect) {
draw_rec(canvas, _first_view_const(), rect); });
return result;
2011-12-22 16:19:25 +01:00
}
/**
* Trigger redraw of the whole view stack
*/
void update_all_views()
{
_place_labels(Rect(Point(), _size));
_dirty_rect.mark_as_dirty(Rect(Point(), _size));
}
/**
* Mark all views belonging to the specified session as dirty
2011-12-22 16:19:25 +01:00
*
2013-09-07 02:02:26 +02:00
* \param Session Session that created the view
* \param Rect Buffer area to update
2011-12-22 16:19:25 +01:00
*/
void mark_session_views_as_dirty(Session const &session, Rect rect)
2011-12-22 16:19:25 +01:00
{
for (View *view = _first_view(); view; view = view->view_stack_next()) {
2011-12-22 16:19:25 +01:00
2013-09-07 02:02:26 +02:00
if (!view->belongs_to(session))
2011-12-22 16:19:25 +01:00
continue;
/*
* Determine view portion that displays the buffer portion
* specified by 'rect'.
*/
Point const offset = view->abs_position() + view->buffer_off();
Rect const r = Rect::intersect(Rect(rect.p1() + offset,
rect.p2() + offset),
view->abs_geometry());
_mark_view_as_dirty(*view, r);
2011-12-22 16:19:25 +01:00
}
}
/**
* Refresh area within a view
*
* \param view view that should be updated on screen
*/
void refresh_view(View const &view, Rect);
2011-12-22 16:19:25 +01:00
/**
* Define view geometry
*
* \param rect new geometry of view on screen
*/
void geometry(View &view, Rect rect);
/**
* Define buffer offset of view
2011-12-22 16:19:25 +01:00
*
* \param buffer_off view offset of displayed buffer
*/
void buffer_offset(View &view, Point buffer_off);
2011-12-22 16:19:25 +01:00
/**
* Insert view at specified position in view stack
*
* \param behind insert view in front (true) or
* behind (false) the specified neighbor
*
* To insert a view at the top of the view stack, specify
* neighbor = 0 and behind = true. To insert a view at the
* bottom of the view stack, specify neighbor = 0 and
* behind = false.
*/
void stack(View const &view, View const *neighbor = 0, bool behind = true);
2011-12-22 16:19:25 +01:00
/**
* Set view title
*/
void title(View &view, char const *title);
2011-12-22 16:19:25 +01:00
/**
* Find view at specified position
*/
View *find_view(Point);
/**
* Remove view from view stack
*/
void remove_view(View const &, bool redraw = true);
2011-12-22 16:19:25 +01:00
/**
* Define default background
*/
2013-09-07 02:02:26 +02:00
void default_background(View &view) { _default_background = &view; }
2011-12-22 16:19:25 +01:00
/**
* Return true if view is the default background
*/
bool is_default_background(View const &view) const { return &view == _default_background; }
2011-12-22 16:19:25 +01:00
/**
* Remove all views of specified session from view stack
*
* Rather than removing the views from the view stack, this function moves
* the session views out of the visible screen area.
*/
void lock_out_session(Session const &session)
2011-12-22 16:19:25 +01:00
{
2013-09-07 02:02:26 +02:00
View const *view = _first_view(), *next_view = view->view_stack_next();
2011-12-22 16:19:25 +01:00
while (view) {
if (view->belongs_to(session)) remove_view(*view);
2011-12-22 16:19:25 +01:00
view = next_view;
next_view = view ? view->view_stack_next() : 0;
}
}
};
#endif