1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2025-04-03 16:47:30 +03:00
gmenu2x/src/layer.h
Nebuleon Fumika 2a2634b364 Remove all touch-screen-related code
It didn't work anymore, at all. Touchscreen polling occurred only
*after* waiting for a button had completed. So the touchscreen events,
if any, would be ignored until the user had pressed a button, possibly
firing off another action with that button press and forwarding the
touchscreen event to the next interface that got brought up as a
result.

Reusing this code and fixing it would require far more work than
rewriting everything anew with touchscreen devices in mind from the
beginning.

MtH: Resolved conflicts, mainly from the GMenu2X pointer to reference
     change I did on 2015-04-21.
2015-04-24 01:44:56 +02:00

56 lines
1.1 KiB
C++

// (c) 2013 Maarten ter Huurne <maarten@treewalker.org>
// License: GPL version 2 or later.
#ifndef LAYER_H
#define LAYER_H
#include "inputmanager.h"
class Surface;
/**
* Abstract base class for UI layers.
* A layer handles both painting and input events.
*/
class Layer {
public:
enum class Status { DISMISSED, NORMAL };
virtual ~Layer() {}
/**
* Perform one frame worth of animation.
* Returns true iff there are any animations in progress.
*/
virtual bool runAnimations() { return false; }
/**
* Paints this layer on the given surface.
*/
virtual void paint(Surface &s) = 0;
/**
* Handles the pressing of the give button.
* Returns true iff the button press event was fully handled by this layer.
*/
virtual bool handleButtonPress(InputManager::Button button) = 0;
Status getStatus() { return status; }
protected:
/**
* Request the Layer to be removed from the stack.
* There could be a few more calls to the Layer before it is actually
* removed, so be prepared to handle those.
*/
void dismiss() {
status = Status::DISMISSED;
}
private:
Status status = Status::NORMAL;
};
#endif // LAYER_H