mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
dd98bd67a0
Make the revised 'vbox_pointer' component the new 'pointer' component. Fixes #2585
39 lines
742 B
C++
39 lines
742 B
C++
/*
|
|
* \brief shape report
|
|
* \author Christian Prochaska
|
|
* \date 2015-03-20
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2015-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 _INCLUDE__POINTER__SHAPE_REPORT_H_
|
|
#define _INCLUDE__POINTER__SHAPE_REPORT_H_
|
|
|
|
namespace Pointer {
|
|
|
|
enum {
|
|
MAX_WIDTH = 100,
|
|
MAX_HEIGHT = 100,
|
|
MAX_SHAPE_SIZE = MAX_WIDTH*MAX_HEIGHT*4
|
|
};
|
|
|
|
struct Shape_report;
|
|
}
|
|
|
|
struct Pointer::Shape_report
|
|
{
|
|
bool visible;
|
|
unsigned int x_hot;
|
|
unsigned int y_hot;
|
|
unsigned int width;
|
|
unsigned int height;
|
|
unsigned char shape[MAX_SHAPE_SIZE];
|
|
};
|
|
|
|
#endif /* _INCLUDE__POINTER__SHAPE_REPORT_H_ */
|