/usr/include/Nux-4.0/Nux/Gesture.h is in libnux-4.0-dev 4.0.8+16.04.20160209-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | /*
* Copyright (C) 2012 - Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 or 3.0
* of the License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the applicable version of the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of both the GNU Lesser General Public
* License along with this program. If not, see <http://www.gnu.org/licenses/>
*
* Authored by: Daniel d'Andrada <daniel.dandrada@canonical.com>
*/
#ifndef NUX_GESTURE_H
#define NUX_GESTURE_H
#include "Nux/Features.h"
#ifdef NUX_GESTURES_SUPPORT
#include <memory>
#include "NuxGraphics/GestureEvent.h"
/*
A collection of helper classes used by WindowCompositor for the task of
delivering GestureEvents to their correct target InputAreas and in the
decision of whether a gesture should be accepted or rejected.
*/
namespace nux
{
class InputArea;
/*
Interface for gesture targets.
*/
class GestureTarget
{
public:
/*!
Called whenever there's a new gesture event for this target.
\param event GestureEvent to be processed by the target.
\return A request about the delivery of events for the related gesture.
*/
virtual GestureDeliveryRequest GestureEvent(const GestureEvent &event) = 0;
bool operator ==(const GestureTarget& other) const
{
return Equals(other);
}
/***
* We might not have ownership of every single object that we create
* implementations of GestureTarget's to wrap around so this signal
* indicates to the owner of the GestureTarget that the underlying
* object is no longer available, and this target should be removed
*/
sigc::signal<void, const GestureTarget &> died;
private:
/*!
For some types of target, different instances may wrap the same actual target,
in which case reimplementing this method is necessary.
*/
virtual bool Equals(const GestureTarget& other) const
{
return this == &other;
}
};
typedef std::shared_ptr<GestureTarget> ShPtGestureTarget;
class InputAreaTarget : public GestureTarget
{
public:
InputAreaTarget(InputArea *input_area);
virtual GestureDeliveryRequest GestureEvent(const nux::GestureEvent &event);
private:
virtual bool Equals(const GestureTarget& other) const;
ObjectWeakPtr<InputArea> input_area_;
};
//! A class that relates a multitouch gesture to its target entity
/*!
It relates a gesture to its target, which can be either a window or
unity.
It's fed with GestureEvents via Update().
It stores those GestureEvents in a queue until EnableEventDelivery() is
called, when all queued events are finally acted upon. After
that, further events fed via Update() will have an immediate effect over its
target instead of being queued.
*/
class Gesture
{
public:
Gesture(const GestureEvent &event);
void AddTarget(ShPtGestureTarget target);
void RemoveTarget(const GestureTarget &target);
const std::list<ShPtGestureTarget> &GetTargetList() const {return target_list_;}
void EnableEventDelivery();
void Update(const GestureEvent& event);
bool IsConstructionFinished() const;
bool IsDeliveringEvents() const {return event_delivery_enabled_;}
int GetId() const;
const std::vector<TouchPoint> &GetTouches() const;
//! Returns whether the given gesture has any touches in common with this one.
bool HasTouchesInCommon(const std::shared_ptr<Gesture> &other_gesture) const;
//! Rejects the gesture.
/*
After rejection a gesture is no longer valid
*/
void Reject();
//! Accepts the gesture
void Accept();
enum class AcceptanceStatus
{
UNDECIDED,
ACCEPTED,
REJECTED
};
AcceptanceStatus GetAcceptanceStatus() const {return acceptance_status_;}
/***
* This signal is emitted when a Gesture loses all of its targets and
* can no longer be delivered to anything. This might provide a hint
* to the owner to stop tracking the gesture
*/
sigc::signal <void, Gesture &> lost_all_targets;
private:
const GestureEvent &GetLatestEvent() const;
GestureEvent &GetLatestEvent();
void DeliverEvent(const GestureEvent &event);
void ExecuteTargetExclusivityRequest(const GestureEvent &event,
std::list<ShPtGestureTarget>::iterator &it_requestor);
std::list<ShPtGestureTarget> target_list_;
std::map <ShPtGestureTarget, sigc::connection> target_died_connections_;
// events that are waiting to be delivered
std::vector<GestureEvent> queued_events_;
// last event delivered
GestureEvent last_event_;
bool event_delivery_enabled_;
AcceptanceStatus acceptance_status_;
};
/*
Stores information on all curently active gestures.
*/
class GestureSet
{
public:
void Add(Gesture *gesture);
void Add(std::shared_ptr<Gesture> &gesture);
std::shared_ptr<Gesture> FindFromGestureId(int gesture_id);
std::shared_ptr<Gesture> FindFromTarget(ShPtGestureTarget target);
void Remove(const Gesture &gesture);
std::vector< std::shared_ptr<Gesture> >
GetConflictingGestures(std::shared_ptr<Gesture> &gesture);
private:
std::map<int, std::shared_ptr<Gesture> > map_id_to_gesture_;
};
} // namespace nux
#endif // NUX_GESTURES_SUPPORT
#endif // NUX_GESTURE_H
|