Tizen Native API
5.0
|
SlotDelegates can be used to connect member functions to signals, without inheriting from SlotDelegateInterface. More...
Public Member Functions | |
SlotDelegate (Slot *slot) | |
Constructor. | |
~SlotDelegate () | |
Non-virtual destructor. | |
void | DisconnectAll () |
Disconnects all signals from this object. | |
std::size_t | GetConnectionCount () const |
Slot * | GetSlot () |
Retrieves the slot object. | |
ConnectionTracker * | GetConnectionTracker () |
Retrieves the connection tracker component. |
Detailed Description
template<typename Slot>
class Dali::SlotDelegate< Slot >
SlotDelegates can be used to connect member functions to signals, without inheriting from SlotDelegateInterface.
Note that the object providing the member function is expected to own the SlotDelegate; therefore when the object is destroyed, the SlotDelegate destructor will automatically disconnect.
class Example // This does not inherit from SlotDelegateInterface! { public: Example() : mSlotDelegate( this ) { } ~Example() { // mSlotDelegate disconnects automatically here } void Animate() { Animation animation = Animation::New( 1.0f ); animation.FinishedSignal().Connect( mSlotDelegate, &Example::OnAnimationFinished ); animation.Play(); // fire & forget } void OnAnimationFinished( Animation& animation ) { std::cout << "Animation Finished!" << std::endl; } private: SlotDelegate<Example> mSlotDelegate; };
- Since:
- 3.0, DALi version 1.0.0
Constructor & Destructor Documentation
template<typename Slot >
Dali::SlotDelegate< Slot >::SlotDelegate | ( | Slot * | slot | ) |
Constructor.
- Since:
- 3.0, DALi version 1.0.0
- Parameters:
-
[in] slot The object with a callback
template<typename Slot >
Dali::SlotDelegate< Slot >::~SlotDelegate | ( | ) |
Non-virtual destructor.
- Since:
- 3.0, DALi version 1.0.0
Member Function Documentation
template<typename Slot >
void Dali::SlotDelegate< Slot >::DisconnectAll | ( | ) |
Disconnects all signals from this object.
- Since:
- 3.0, DALi version 1.0.0
template<typename Slot >
std::size_t Dali::SlotDelegate< Slot >::GetConnectionCount | ( | ) | const |
Returns the connection count.
- Since:
- 3.0, DALi version 1.0.0
- Returns:
- The connection count
template<typename Slot >
ConnectionTracker* Dali::SlotDelegate< Slot >::GetConnectionTracker | ( | ) |
Retrieves the connection tracker component.
- Since:
- 3.0, DALi version 1.0.0
- Returns:
- The connection tracker component
template<typename Slot >
Slot* Dali::SlotDelegate< Slot >::GetSlot | ( | ) |
Retrieves the slot object.
- Since:
- 3.0, DALi version 1.0.0
- Returns:
- The object with a callback