/usr/include/cegui-0.8.4/CEGUI/EventSet.h is in libcegui-mk2-dev 0.8.4+dfsg-4ubuntu1.
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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | /***********************************************************************
created: 21/2/2004
author: Paul D Turner
purpose: Defines class for a named collection of Event objects
*************************************************************************/
/***************************************************************************
* Copyright (C) 2004 - 2010 Paul D Turner & The CEGUI Development Team
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
***************************************************************************/
#ifndef _CEGUIEventSet_h_
#define _CEGUIEventSet_h_
#include "CEGUI/Base.h"
#include "CEGUI/String.h"
#include "CEGUI/Event.h"
#include "CEGUI/IteratorBase.h"
#include <map>
#if defined (_MSC_VER)
# pragma warning(push)
# pragma warning(disable : 4251)
#endif
// Start of CEGUI namespace section
namespace CEGUI
{
/*!
\brief
Class that collects together a set of Event objects.
The EventSet is a means for code to attach a handler function to some
named event, and later, for that event to be fired and the subscribed
handler(s) called.
\par
As of 0.5, the EventSet no longer needs to be filled with available events.
Events are now added to the set as they are first used; that is, the first
time a handler is subscribed to an event for a given EventSet, an Event
object is created and added to the EventSet.
\par
Instead of throwing an exception when firing an event that does not actually
exist in the set, we now do nothing (if the Event does not exist, then it
has no handlers subscribed, and therefore doing nothing is the correct
course action).
*/
class CEGUIEXPORT EventSet
{
public:
/*!
\brief
Constructor for EventSet objects
*/
EventSet();
/*!
\brief
Destructor for EventSet objects
*/
virtual ~EventSet(void);
/*!
\brief
Creates a new Event object with the given name and adds it to the
EventSet.
\param name
String object containing the name to give the new Event. The name must
be unique for the EventSet.
\exception AlreadyExistsException
Thrown if an Event already exists named \a name.
*/
void addEvent(const String& name);
/*!
\brief
Adds the given Event object to the EventSet. Ownership of the object
passes to EventSet and it will be deleted when it is removed from the
EventSet - whether explicitly via removeEvent or when the EventSet
is destroyed.
\param event
Reference to an Event or Event based object that is to be added to the
EventSaet
\exception AlreadyExistsException
Thrown if the EventSet already contains an Event with the same name
as \a event. Note that \a event will be destroyed under this scenario.
*/
void addEvent(Event& event);
/*!
\brief
Removes the Event with the given name. All connections to the event
are disconnected, and the underlying Event object is destroyed.
\param name
String object containing the name of the Event to remove. If no such
Event exists, nothing happens.
*/
void removeEvent(const String& name);
/*!
\brief
Removes the given event from the EventSet. All connections to the event
are disconnected, and the event object is destroyed.
\param event
Reference to the Event or Event based object to be removed from the
EventSet.
*/
void removeEvent(Event& event);
/*!
\brief
Remove all Event objects from the EventSet. Add connections will be
disconnected, and all Event objects destroyed.
*/
void removeAllEvents(void);
/*!
\brief
Checks to see if an Event with the given name is present in this
EventSet.
\return
- true if an Event named \a name is defined for this EventSet.
- false if no Event named \a name is defined for this EventSet.
*/
bool isEventPresent(const String& name);
/*!
\brief
Subscribes a handler to the named Event. If the named Event is not yet
present in the EventSet, it is created and added.
\param name
String object containing the name of the Event to subscribe to.
\param subscriber
Function or object that is to be subscribed to the Event.
\return
Connection object that can be used to check the status of the Event
connection and to disconnect (unsubscribe) from the Event.
*/
virtual Event::Connection subscribeEvent(const String& name,
Event::Subscriber subscriber);
/*!
\brief
Subscribes a handler to the specified group of the named Event. If the
named Event is not yet present in the EventSet, it is created and added.
\param name
String object containing the name of the Event to subscribe to.
\param group
Group which is to be subscribed to. Subscription groups are called in
ascending order.
\param subscriber
Function or object that is to be subscribed to the Event.
\return
Connection object that can be used to check the status of the Event
connection and to disconnect (unsubscribe) from the Event.
*/
virtual Event::Connection subscribeEvent(const String& name,
Event::Group group,
Event::Subscriber subscriber);
/*!
\copydoc EventSet::subscribeEvent
\internal This is there just to make the syntax a tad easier
*/
template<typename Arg1, typename Arg2>
inline Event::Connection subscribeEvent(const String& name, Arg1 arg1, Arg2 arg2)
{
return subscribeEvent(name, Event::Subscriber(arg1, arg2));
}
/*!
\copydoc EventSet::subscribeEvent
\internal This is there just to make the syntax a tad easier
*/
template<typename Arg1, typename Arg2>
inline Event::Connection subscribeEvent(const String& name, Event::Group group, Arg1 arg1, Arg2 arg2)
{
return subscribeEvent(name, group, Event::Subscriber(arg1, arg2));
}
/*!
\brief
Subscribes the named Event to a scripted funtion
\param name
String object containing the name of the Event to subscribe to.
\param subscriber_name
String object containing the name of the script funtion that is to be
subscribed to the Event.
\return
Connection object that can be used to check the status of the Event
connection and to disconnect (unsubscribe) from the Event.
*/
virtual Event::Connection subscribeScriptedEvent(const String& name,
const String& subscriber_name);
/*!
\brief
Subscribes the specified group of the named Event to a scripted funtion.
\param name
String object containing the name of the Event to subscribe to.
\param group
Group which is to be subscribed to. Subscription groups are called in
ascending order.
\param subscriber_name
String object containing the name of the script funtion that is to be
subscribed to the Event.
\return
Connection object that can be used to check the status of the Event
connection and to disconnect (unsubscribe) from the Event.
*/
virtual Event::Connection subscribeScriptedEvent(const String& name,
Event::Group group,
const String& subscriber_name);
/*!
\brief
Fires the named event passing the given EventArgs object.
\param name
String object holding the name of the Event that is to be fired
(triggered)
\param args
The EventArgs (or derived) object that is to be bassed to each
subscriber of the Event. Once all subscribers
have been called the 'handled' field of the event is updated
appropriately.
\param eventNamespace
String object describing the global event namespace prefix for this
event.
*/
virtual void fireEvent(const String& name, EventArgs& args,
const String& eventNamespace = "");
/*!
\brief
Return whether the EventSet is muted or not.
\return
- true if the EventSet is muted. All requests to fire events will be
ignored.
- false if the EventSet is not muted. Requests to fire events are
processed as normal.
*/
bool isMuted(void) const;
/*!
\brief
Set the mute state for this EventSet.
\param setting
- true if the EventSet is to be muted (no further event firing requests
will be honoured until EventSet is unmuted).
- false if the EventSet is not to be muted and all events should fired
as requested.
*/
void setMutedState(bool setting);
/*!
\brief
Return a pointer to the Event object with the given name, optionally
adding such an Event object to the EventSet if it does not already
exist.
\param name
String object holding the name of the Event to return.
\param autoAdd
- true if an Event object named \a name should be added to the set
if such an Event does not currently exist.
- false if no object should automatically be added to the set. In this
case, if the Event does not already exist 0 will be returned.
\return
Pointer to the Event object in this EventSet with the specifed name.
Or 0 if such an Event does not exist and \a autoAdd was false.
*/
Event* getEventObject(const String& name, bool autoAdd = false);
protected:
//! Implementation event firing member
void fireEvent_impl(const String& name, EventArgs& args);
//! Helper to return the script module pointer or throw.
ScriptModule* getScriptModule() const;
// Do not allow copying, assignment, or any other usage than simple creation.
EventSet(EventSet&) {}
EventSet& operator=(EventSet&)
{
return *this;
}
typedef std::map<String, Event*, StringFastLessCompare
CEGUI_MAP_ALLOC(String, Event*)> EventMap;
EventMap d_events;
bool d_muted; //!< true if events for this EventSet have been muted.
public:
/*************************************************************************
Iterator stuff
*************************************************************************/
typedef ConstMapIterator<EventMap> EventIterator;
/*!
\brief
Return a EventSet::EventIterator object to iterate over the events currently
added to the EventSet.
*/
EventIterator getEventIterator(void) const;
};
} // End of CEGUI namespace section
#if defined(_MSC_VER)
# pragma warning(pop)
#endif
#endif // end of guard _CEGUIEventSet_h_
|