Kanzi framework  3.9.1
Kanzi Engine API
kanzi::ClickConceptImpl< TBaseClass, TDerivedClass > Class Template Reference

Implementation of base Click Concept class for derived classes. More...

#include <kanzi/core.ui/input/click_concept.hpp>

Inheritance diagram for kanzi::ClickConceptImpl< TBaseClass, TDerivedClass >:
[legend]

Public Member Functions

bool isDoubleClickEnabled () const
 Gets the value of DoubleClickEnabledProperty. More...
 
void setDoubleClickEnabled (bool value)
 Sets the value of DoubleClickEnabledProperty. More...
 

Static Public Member Functions

static PropertyTypeEditorInfoSharedPtr makeEditorInfo ()
 
- Static Public Member Functions inherited from kanzi::ClickConcept
static PropertyTypeEditorInfoSharedPtr makeEditorInfo ()
 

Protected Member Functions

 ClickConceptImpl (Domain *domain, string_view name)
 Constructor. More...
 
void configureDoubleClick ()
 Configures a MultiClickManipulator for an ClickConcept-derived class based on the value of the DoubleClickEnabledProperty: More...
 
void onAttached () override
 Overrides TBaseClass::onAttached(). More...
 
void onDetached () override
 Overrides TBaseClass::onDetached(). More...
 
void onNodePropertyChanged (AbstractPropertyType propertyType, PropertyNotificationReason reason) override
 Overrides TBaseClass::onNodePropertyChanged(). More...
 

Additional Inherited Members

- Static Public Attributes inherited from kanzi::ClickConcept
static PropertyType< bool > DoubleClickEnabledProperty
 Enables the double-click gesture for a node. More...
 
- Protected Attributes inherited from kanzi::ClickConcept
ClickManipulatorSharedPtr m_clickManipulator
 The ClickManipulator. More...
 
MultiClickManipulatorSharedPtr m_multiClickManipulator
 Multi-Click manipulator. More...
 

Detailed Description

template<typename TBaseClass, typename TDerivedClass>
class kanzi::ClickConceptImpl< TBaseClass, TDerivedClass >

Implementation of base Click Concept class for derived classes.

Template Parameters
TBaseClassType of the base class, derived from Node2D or Node3D.
TDerivedClassType of the derived class that holds the Click Concept properties.
Since
Kanzi 3.9.0

Constructor & Destructor Documentation

◆ ClickConceptImpl()

template<typename TBaseClass , typename TDerivedClass >
kanzi::ClickConceptImpl< TBaseClass, TDerivedClass >::ClickConceptImpl ( Domain domain,
string_view  name 
)
explicitprotected

Constructor.

Member Function Documentation

◆ makeEditorInfo()

template<typename TBaseClass, typename TDerivedClass>
static PropertyTypeEditorInfoSharedPtr kanzi::ClickConceptImpl< TBaseClass, TDerivedClass >::makeEditorInfo ( )
inlinestatic

◆ isDoubleClickEnabled()

template<typename TBaseClass, typename TDerivedClass>
bool kanzi::ClickConceptImpl< TBaseClass, TDerivedClass >::isDoubleClickEnabled ( ) const
inline

Gets the value of DoubleClickEnabledProperty.

Returns
The value of the DoubleClickEnabledProperty.
See also
setDoubleClickEnabled()

◆ setDoubleClickEnabled()

template<typename TBaseClass, typename TDerivedClass>
void kanzi::ClickConceptImpl< TBaseClass, TDerivedClass >::setDoubleClickEnabled ( bool  value)
inline

Sets the value of DoubleClickEnabledProperty.

Parameters
valueThe value to set to the DoubleClickEnabledProperty.
See also
isDoubleClickEnabled()

◆ onAttached()

template<typename TBaseClass , typename TDerivedClass >
void kanzi::ClickConceptImpl< TBaseClass, TDerivedClass >::onAttached ( )
overrideprotected

◆ onDetached()

template<typename TBaseClass , typename TDerivedClass >
void kanzi::ClickConceptImpl< TBaseClass, TDerivedClass >::onDetached ( )
overrideprotected

◆ onNodePropertyChanged()

template<typename TBaseClass , typename TDerivedClass >
void kanzi::ClickConceptImpl< TBaseClass, TDerivedClass >::onNodePropertyChanged ( AbstractPropertyType  propertyType,
PropertyNotificationReason  reason 
)
overrideprotected

◆ configureDoubleClick()

template<typename TBaseClass , typename TDerivedClass >
void kanzi::ClickConceptImpl< TBaseClass, TDerivedClass >::configureDoubleClick ( )
protected

Configures a MultiClickManipulator for an ClickConcept-derived class based on the value of the DoubleClickEnabledProperty:

  • If the value is true, adds a Multi-Click Manipulator that handles the double-click gesture.
  • If the value is false, removes an existing Multi-Click Manipulator.

The documentation for this class was generated from the following files: