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

73 lines
1.5 KiB
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Nitpicker mode
* \author Norman Feske
* \date 2006-08-22
*/
/*
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 _MODE_H_
#define _MODE_H_
class Session;
2011-12-22 16:19:25 +01:00
class Mode
{
2013-09-07 02:02:26 +02:00
private:
2011-12-22 16:19:25 +01:00
bool _xray = false;
bool _kill = false;
2011-12-22 16:19:25 +01:00
/*
* Number of currently pressed keys.
* This counter is used to determine if the user
* is dragging an item.
2011-12-22 16:19:25 +01:00
*/
unsigned _key_cnt = 0;
2011-12-22 16:19:25 +01:00
Session *_focused_session = nullptr;
2011-12-22 16:19:25 +01:00
public:
2011-12-22 16:19:25 +01:00
virtual ~Mode() { }
/**
* Accessors
*/
2013-09-07 02:02:26 +02:00
bool xray() const { return _xray; }
bool kill() const { return _kill; }
bool flat() const { return !_xray && !_kill; }
bool drag() const { return _key_cnt > 0; }
2013-09-07 02:02:26 +02:00
void leave_kill() { _kill = false; }
2013-09-07 02:02:26 +02:00
void toggle_kill() { _kill = !_kill; }
void toggle_xray() { _xray = !_xray; }
void inc_key_cnt() { _key_cnt++; }
void dec_key_cnt() { _key_cnt--; }
bool has_key_cnt(unsigned cnt) const { return cnt == _key_cnt; }
Session *focused_session() { return _focused_session; }
Session const *focused_session() const { return _focused_session; }
virtual void focused_session(Session *session) { _focused_session = session; }
2011-12-22 16:19:25 +01:00
bool is_focused(Session const &session) const { return &session == _focused_session; }
2011-12-22 16:19:25 +01:00
/**
* Discard all references to specified view
*/
virtual void forget(Session const &session)
{
if (is_focused(session)) _focused_session = nullptr;
}
2011-12-22 16:19:25 +01:00
};
#endif