74 lines
2.3 KiB
C
74 lines
2.3 KiB
C
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
|
|
// NoesisGUI - http://www.noesisengine.com
|
||
|
|
// Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved.
|
||
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
|
|
|
||
|
|
|
||
|
|
#ifndef __GUI_EASINGINT64KEYFRAME_H__
|
||
|
|
#define __GUI_EASINGINT64KEYFRAME_H__
|
||
|
|
|
||
|
|
|
||
|
|
#include <NsCore/Noesis.h>
|
||
|
|
#include <NsCore/ReflectionDeclare.h>
|
||
|
|
#include <NsGui/Int64KeyFrame.h>
|
||
|
|
#include <NsGui/AnimationApi.h>
|
||
|
|
|
||
|
|
|
||
|
|
namespace Noesis
|
||
|
|
{
|
||
|
|
|
||
|
|
class EasingFunctionBase;
|
||
|
|
|
||
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
|
|
/// A class that enables you to associate easing functions with a Int64AnimationUsingKeyFrames
|
||
|
|
/// key frame animation.
|
||
|
|
///
|
||
|
|
/// For an example of using an object similar to this one, see EasingDoubleKeyFrame.
|
||
|
|
///
|
||
|
|
/// This class is used as part of an Int64KeyFrameCollection in conjunction with an
|
||
|
|
/// Int64AnimationUsingKeyFrames to animate an Int64 property value along a set of key frames.
|
||
|
|
/// This Int64KeyFrame interpolates between the Int64 value of the previous key frame and its own
|
||
|
|
/// value linearly with an easing function to produce its output value.
|
||
|
|
///
|
||
|
|
/// http://msdn.microsoft.com/en-us/library/system.windows.media.animation.easingint64keyframe.aspx
|
||
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
|
|
class NS_GUI_ANIMATION_API EasingInt64KeyFrame final: public Int64KeyFrame
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
/// Gets or sets the easing function applied to the key frame
|
||
|
|
//@{
|
||
|
|
EasingFunctionBase* GetEasingFunction() const;
|
||
|
|
void SetEasingFunction(EasingFunctionBase* function);
|
||
|
|
//@}
|
||
|
|
|
||
|
|
// Hides Freezable methods for convenience
|
||
|
|
//@{
|
||
|
|
Ptr<EasingInt64KeyFrame> Clone() const;
|
||
|
|
Ptr<EasingInt64KeyFrame> CloneCurrentValue() const;
|
||
|
|
//@}
|
||
|
|
|
||
|
|
public:
|
||
|
|
/// Dependency properties
|
||
|
|
//@{
|
||
|
|
static const DependencyProperty* EasingFunctionProperty;
|
||
|
|
//@}
|
||
|
|
|
||
|
|
protected:
|
||
|
|
/// From Freezable
|
||
|
|
//@{
|
||
|
|
Ptr<Freezable> CreateInstanceCore() const override;
|
||
|
|
//@}
|
||
|
|
|
||
|
|
/// From KeyFrame
|
||
|
|
//@{
|
||
|
|
int64_t InterpolateValueCore(int64_t baseValue, float keyFrameProgress) override;
|
||
|
|
//@}
|
||
|
|
|
||
|
|
NS_DECLARE_REFLECTION(EasingInt64KeyFrame, Int64KeyFrame)
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|