2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#ifndef __DistCurveEditorModule_h__
|
|
|
|
|
#define __DistCurveEditorModule_h__
|
|
|
|
|
|
|
|
|
|
#include "UnrealEd.h"
|
2014-10-14 22:50:06 -04:00
|
|
|
#include "SlateBasics.h"
|
2014-03-14 14:13:41 -04:00
|
|
|
#include "ModuleInterface.h"
|
|
|
|
|
#include "IDistCurveEditor.h"
|
|
|
|
|
|
|
|
|
|
class UInterpCurveEdSetup;
|
|
|
|
|
class FCurveEdNotifyInterface;
|
|
|
|
|
|
|
|
|
|
extern const FName DistCurveEditorAppIdentifier;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
IDistributionCurveEditorModule
|
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
class IDistributionCurveEditorModule : public IModuleInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
/** */
|
|
|
|
|
virtual TSharedRef<IDistributionCurveEditor> CreateCurveEditorWidget(UInterpCurveEdSetup* EdSetup, FCurveEdNotifyInterface* NotifyObject) = 0;
|
|
|
|
|
virtual TSharedRef<IDistributionCurveEditor> CreateCurveEditorWidget(UInterpCurveEdSetup* EdSetup, FCurveEdNotifyInterface* NotifyObject, IDistributionCurveEditor::FCurveEdOptions Options) = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // __DistCurveEditorModule_h__
|