genode/os/include/nitpicker_session/client.h

51 lines
1.2 KiB
C
Raw Normal View History

2011-12-22 15:19:25 +00:00
/*
* \brief Client-side nitpicker session interface
* \author Norman Feske
* \date 2006-08-23
*/
/*
2013-01-10 20:44:47 +00:00
* Copyright (C) 2006-2013 Genode Labs GmbH
2011-12-22 15:19:25 +00: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 _INCLUDE__NITPICKER_SESSION__CLIENT_H_
#define _INCLUDE__NITPICKER_SESSION__CLIENT_H_
#include <nitpicker_session/capability.h>
#include <base/rpc_client.h>
namespace Nitpicker { struct Session_client; }
2011-12-22 15:19:25 +00:00
struct Nitpicker::Session_client : public Rpc_client<Session>
{
explicit Session_client(Session_capability session)
: Rpc_client<Session>(session) { }
2011-12-22 15:19:25 +00:00
Framebuffer::Session_capability framebuffer_session() {
return call<Rpc_framebuffer_session>(); }
2011-12-22 15:19:25 +00:00
Input::Session_capability input_session() {
return call<Rpc_input_session>(); }
2011-12-22 15:19:25 +00:00
View_capability create_view() {
return call<Rpc_create_view>(); }
2011-12-22 15:19:25 +00:00
void destroy_view(View_capability view) {
call<Rpc_destroy_view>(view); }
int background(View_capability view) {
return call<Rpc_background>(view); }
Framebuffer::Mode mode() {
return call<Rpc_mode>(); }
void buffer(Framebuffer::Mode mode, bool alpha) {
call<Rpc_buffer>(mode, alpha); }
};
2011-12-22 15:19:25 +00:00
#endif /* _INCLUDE__NITPICKER_SESSION__CLIENT_H_ */