From 0ea5fc66924303d1bf73ba283a383e2aadee02f2 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sat, 11 Aug 2018 20:21:34 +0200 Subject: Initial commit --- docs/doxygen/nel/a02584.html | 550 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 550 insertions(+) create mode 100644 docs/doxygen/nel/a02584.html (limited to 'docs/doxygen/nel/a02584.html') diff --git a/docs/doxygen/nel/a02584.html b/docs/doxygen/nel/a02584.html new file mode 100644 index 00000000..1fe019ff --- /dev/null +++ b/docs/doxygen/nel/a02584.html @@ -0,0 +1,550 @@ + + +NeL: NLMISC::CGDSliderMoved class Reference + + + +
+

NLMISC::CGDSliderMoved Class Reference

#include <game_device_events.h> +

+

Inheritance diagram for NLMISC::CGDSliderMoved: +

+ +NLMISC::CGameDeviceEvent +NLMISC::CEvent +NLMISC::CClassId + +

Detailed Description

+A slider position has changed. +

+ +

+Definition at line 165 of file game_device_events.h. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Member Functions

 CGDSliderMoved (float sliderPos, uint sliderIndex, IGameDevice *gameDevice, IEventEmitter *emitter)
virtual CEventclone () const
 operator uint64 () const
bool operator!= (const CClassId &o) const
bool operator< (const CClassId &o) const
bool operator<= (const CClassId &o) const
bool operator== (const CClassId &o) const
bool operator> (const CClassId &o) const
bool operator>= (const CClassId &o) const

Data Fields

IEventEmitterEmitter
 Emitter of the event. Can be NULL if the event is posted directly to the CEventServer.

IGameDeviceGameDevice
 the game device this event come from

uint SliderIndex
float SliderPos

Static Public Attributes

const CClassId Null
+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NLMISC::CGDSliderMoved::CGDSliderMoved float  sliderPos,
uint  sliderIndex,
IGameDevice gameDevice,
IEventEmitter emitter
[inline]
+
+ + + + + +
+   + + +

+ +

+Definition at line 172 of file game_device_events.h. +

+References NLMISC::EventGDSliderMovedId, SliderIndex, SliderPos, and uint. +

+Referenced by clone(). +

+

00178                                  : CGameDeviceEvent(gameDevice, emitter, EventGDSliderMovedId),
+00179                                    SliderIndex(sliderIndex),
+00180                                    SliderPos(sliderPos)
+00181         {}
+
+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
virtual CEvent* NLMISC::CGDSliderMoved::clone void   )  const [inline, virtual]
+
+ + + + + +
+   + + +

+ +

+Implements NLMISC::CEvent. +

+Definition at line 183 of file game_device_events.h. +

+References CGDSliderMoved(). +

+

00183 {return new CGDSliderMoved(*this);}
+
+

+ + + + +
+ + + + + + + + + +
NLMISC::CClassId::operator uint64  )  const [inline, inherited]
+
+ + + + + +
+   + + +

+ +

+Definition at line 62 of file class_id.h. +

+References NLMISC::CClassId::Uid. +

+

00062 {return Uid;}
+
+

+ + + + +
+ + + + + + + + + + +
bool NLMISC::CClassId::operator!= const CClassId o  )  const [inline, inherited]
+
+ + + + + +
+   + + +

+ +

+Definition at line 56 of file class_id.h. +

+References NLMISC::CClassId::Uid. +

+

00056 {return Uid!=o.Uid;}
+
+

+ + + + +
+ + + + + + + + + + +
bool NLMISC::CClassId::operator< const CClassId o  )  const [inline, inherited]
+
+ + + + + +
+   + + +

+ +

+Definition at line 59 of file class_id.h. +

+References NLMISC::CClassId::Uid. +

+

00059 {return Uid<o.Uid;}
+
+

+ + + + +
+ + + + + + + + + + +
bool NLMISC::CClassId::operator<= const CClassId o  )  const [inline, inherited]
+
+ + + + + +
+   + + +

+ +

+Definition at line 57 of file class_id.h. +

+References NLMISC::CClassId::Uid. +

+

00057 {return Uid<=o.Uid;}
+
+

+ + + + +
+ + + + + + + + + + +
bool NLMISC::CClassId::operator== const CClassId o  )  const [inline, inherited]
+
+ + + + + +
+   + + +

+ +

+Definition at line 55 of file class_id.h. +

+References NLMISC::CClassId::Uid. +

+

00055 {return Uid==o.Uid;}
+
+

+ + + + +
+ + + + + + + + + + +
bool NLMISC::CClassId::operator> const CClassId o  )  const [inline, inherited]
+
+ + + + + +
+   + + +

+ +

+Definition at line 60 of file class_id.h. +

+References NLMISC::CClassId::Uid. +

+

00060 {return Uid>o.Uid;}
+
+

+ + + + +
+ + + + + + + + + + +
bool NLMISC::CClassId::operator>= const CClassId o  )  const [inline, inherited]
+
+ + + + + +
+   + + +

+ +

+Definition at line 58 of file class_id.h. +

+References NLMISC::CClassId::Uid. +

+

00058 {return Uid>=o.Uid;}
+
+


Field Documentation

+

+ + + + +
+ + +
IEventEmitter* NLMISC::CEvent::Emitter [inherited] +
+
+ + + + + +
+   + + +

+Emitter of the event. Can be NULL if the event is posted directly to the CEventServer. +

+ +

+Definition at line 48 of file events.h. +

+Referenced by NLMISC::CEvent::CEvent().

+

+ + + + +
+ + +
IGameDevice* NLMISC::CGameDeviceEvent::GameDevice [inherited] +
+
+ + + + + +
+   + + +

+the game device this event come from +

+ +

+Definition at line 73 of file game_device_events.h. +

+Referenced by NLMISC::CGameDeviceEvent::CGameDeviceEvent().

+

+ + + + +
+ + +
const CClassId NLMISC::CClassId::Null [static, inherited] +
+
+ + + + + +
+   + + +

+

+

+ + + + +
+ + +
uint NLMISC::CGDSliderMoved::SliderIndex +
+
+ + + + + +
+   + + +

+ +

+Definition at line 168 of file game_device_events.h. +

+Referenced by CGDSliderMoved().

+

+ + + + +
+ + +
float NLMISC::CGDSliderMoved::SliderPos +
+
+ + + + + +
+   + + +

+ +

+Definition at line 170 of file game_device_events.h. +

+Referenced by CGDSliderMoved().

+


The documentation for this class was generated from the following file: +
Generated on Tue Mar 16 13:14:47 2004 for NeL by + +doxygen +1.3.6
+ + -- cgit v1.2.1