2012-06-10 16:50:54 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
2012-09-04 02:09:56 +00:00
|
|
|
* Copyright (C) 2012 Bolton Software Ltd.
|
|
|
|
* Copyright (C) 2004 Chris Schoeneman
|
2012-06-10 16:50:54 +00:00
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#pragma once
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#include "common/basic_types.h"
|
|
|
|
#include "common/stdmap.h"
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2012-07-10 01:51:51 +00:00
|
|
|
class CEventData {
|
|
|
|
public:
|
|
|
|
CEventData() { }
|
|
|
|
virtual ~CEventData() { }
|
|
|
|
};
|
|
|
|
|
2012-06-10 16:50:54 +00:00
|
|
|
//! Event
|
|
|
|
/*!
|
|
|
|
A \c CEvent holds an event type and a pointer to event data.
|
|
|
|
*/
|
|
|
|
class CEvent {
|
|
|
|
public:
|
|
|
|
typedef UInt32 Type;
|
|
|
|
enum {
|
|
|
|
kUnknown, //!< The event type is unknown
|
|
|
|
kQuit, //!< The quit event
|
|
|
|
kSystem, //!< The data points to a system event type
|
|
|
|
kTimer, //!< The data points to timer info
|
|
|
|
kLast //!< Must be last
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef UInt32 Flags;
|
|
|
|
enum {
|
|
|
|
kNone = 0x00, //!< No flags
|
|
|
|
kDeliverImmediately = 0x01, //!< Dispatch and free event immediately
|
|
|
|
kDontFreeData = 0x02 //!< Don't free data in deleteData
|
|
|
|
};
|
|
|
|
|
|
|
|
CEvent();
|
|
|
|
|
2012-07-10 01:51:51 +00:00
|
|
|
//! Create \c CEvent with data (POD)
|
2012-06-10 16:50:54 +00:00
|
|
|
/*!
|
|
|
|
The \p data must be POD (plain old data) allocated by malloc(),
|
|
|
|
which means it cannot have a constructor, destructor or be
|
2012-07-10 01:51:51 +00:00
|
|
|
composed of any types that do. For non-POD (normal C++ objects
|
|
|
|
use \c setDataObject().
|
|
|
|
\p target is the intended recipient of the event.
|
|
|
|
\p flags is any combination of \c Flags.
|
2012-06-10 16:50:54 +00:00
|
|
|
*/
|
|
|
|
CEvent(Type type, void* target = NULL, void* data = NULL,
|
|
|
|
Flags flags = kNone);
|
|
|
|
|
|
|
|
//! @name manipulators
|
|
|
|
//@{
|
|
|
|
|
|
|
|
//! Release event data
|
|
|
|
/*!
|
|
|
|
Deletes event data for the given event (using free()).
|
|
|
|
*/
|
|
|
|
static void deleteData(const CEvent&);
|
2012-07-10 01:51:51 +00:00
|
|
|
|
|
|
|
//! Set data (non-POD)
|
|
|
|
/*!
|
|
|
|
Set non-POD (non plain old data), where delete is called when the event
|
|
|
|
is deleted, and the destructor is called.
|
|
|
|
*/
|
|
|
|
void setDataObject(CEventData* dataObject);
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
//@}
|
|
|
|
//! @name accessors
|
|
|
|
//@{
|
|
|
|
|
|
|
|
//! Get event type
|
|
|
|
/*!
|
|
|
|
Returns the event type.
|
|
|
|
*/
|
|
|
|
Type getType() const;
|
|
|
|
|
|
|
|
//! Get the event target
|
|
|
|
/*!
|
|
|
|
Returns the event target.
|
|
|
|
*/
|
|
|
|
void* getTarget() const;
|
|
|
|
|
2012-07-10 01:51:51 +00:00
|
|
|
//! Get the event data (POD).
|
2012-06-10 16:50:54 +00:00
|
|
|
/*!
|
2012-07-10 01:51:51 +00:00
|
|
|
Returns the event data (POD).
|
2012-06-10 16:50:54 +00:00
|
|
|
*/
|
|
|
|
void* getData() const;
|
|
|
|
|
2012-07-10 01:51:51 +00:00
|
|
|
//! Get the event data (non-POD)
|
|
|
|
/*!
|
|
|
|
Returns the event data (non-POD). The difference between this and
|
|
|
|
\c getData() is that when delete is called on this data, so non-POD
|
|
|
|
(non plain old data) dtor is called.
|
|
|
|
*/
|
|
|
|
CEventData* getDataObject() const;
|
|
|
|
|
2012-06-10 16:50:54 +00:00
|
|
|
//! Get event flags
|
|
|
|
/*!
|
|
|
|
Returns the event flags.
|
|
|
|
*/
|
|
|
|
Flags getFlags() const;
|
|
|
|
|
|
|
|
//@}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Type m_type;
|
|
|
|
void* m_target;
|
|
|
|
void* m_data;
|
|
|
|
Flags m_flags;
|
2012-07-10 01:51:51 +00:00
|
|
|
CEventData* m_dataObject;
|
2012-06-10 16:50:54 +00:00
|
|
|
};
|