genode/os/src/server/nitpicker/mode.h
Norman Feske 2f3b67c9e0 nitpicker: Fix implementation of Mode interface
The generalization of nitpicker's graphic backend changed the interface
of 'Mode::forget', which is a (non-pure) virtual function implemented
by 'User_state::forget'. Unfortunately, the signature change was not
applied to 'User_state::forget' so that the actual implementation was
no longer called. This inconsistency remained unnoticed because there
is a default implementation of the virtual function.

The effect of the omission of the 'User_state::forget' call was a
dangling pointer ('User_state::_pointed_view').

Lesson learned: Always annotate functions with the C++11 'override' when
implementing virtual functions.
2014-04-01 16:37:40 +02:00

62 lines
1.2 KiB
C++

/*
* \brief Nitpicker mode
* \author Norman Feske
* \date 2006-08-22
*/
/*
* Copyright (C) 2006-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 _MODE_H_
#define _MODE_H_
class View;
class Canvas_base;
class Mode
{
private:
bool _xray;
bool _kill;
/*
* Last clicked view. This view is receiving keyboard input, except
* for global keys.
*/
View const *_focused_view;
public:
Mode(): _xray(false), _kill(false), _focused_view(0) { }
virtual ~Mode() { }
/**
* Accessors
*/
bool xray() const { return _xray; }
bool kill() const { return _kill; }
bool flat() const { return !_xray && !_kill; }
void leave_kill() { _kill = false; }
void toggle_kill() { _kill = !_kill; }
void toggle_xray() { _xray = !_xray; }
View const *focused_view() const { return _focused_view; }
void focused_view(View const *view) { _focused_view = view; }
/**
* Discard all references to specified view
*/
virtual void forget(Canvas_base &, View const &v) {
if (&v == _focused_view) _focused_view = 0; }
};
#endif