Use a shorter/simpler license convention, stops the header taking so much space. Follow the SPDX license specification: https://spdx.org/licenses - C/C++/objc/objc++ - Python - Shell Scripts - CMake, GNUmakefile While most of the source tree has been included - `./extern/` was left out. - `./intern/cycles` & `./intern/atomic` are also excluded because they use different header conventions. doc/license/SPDX-license-identifiers.txt has been added to list SPDX all used identifiers. See P2788 for the script that automated these edits. Reviewed By: brecht, mont29, sergey Ref D14069
34 lines
879 B
C++
34 lines
879 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2001-2002 NaN Holding BV. All rights reserved. */
|
|
|
|
/** \file
|
|
* \ingroup GHOST
|
|
* Declaration of GHOST_EventPrinter class.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "GHOST_IEventConsumer.h"
|
|
|
|
/**
|
|
* An Event consumer that prints all the events to standard out.
|
|
* Really useful when debugging.
|
|
*/
|
|
class GHOST_EventPrinter : public GHOST_IEventConsumer {
|
|
public:
|
|
/**
|
|
* Prints all the events received to std out.
|
|
* \param event: The event that can be handled or not.
|
|
* \return Indication as to whether the event was handled.
|
|
*/
|
|
bool processEvent(GHOST_IEvent *event);
|
|
|
|
protected:
|
|
/**
|
|
* Converts GHOST key code to a readable string.
|
|
* \param key: The GHOST key code to convert.
|
|
* \param str: The GHOST key code converted to a readable string.
|
|
*/
|
|
void getKeyString(GHOST_TKey key, char str[32]) const;
|
|
};
|