Files
UnrealEngineUWP/Engine/Source/Runtime/UMG/Private/Components/MultiLineEditableText.cpp
Nick Darnell 630510e3ef Copying //UE4/Dev-Editor to Dev-Main (//UE4/Dev-Main)
#lockdown Nick.Penwarden

==========================
MAJOR FEATURES + CHANGES
==========================

Change 2888098 on 3/1/2016 by Nick.Darnell

	Adding back the SetWidgetToFocusOnActivate call and deprecating it.  Will need to also do this in 4.11.

	#lockdown Nick.Penwarden

Change 2851669 on 2016/02/01 by Alexis.Matte

	#jira UE-25928
	Skeletal mesh import now support _skinXX that are not sequential.
	Static mesh was already supporting non sequential _skinxx ordering

	#codereview nick.darnell

Change 2851672 on 2016/02/01 by Alexis.Matte

	#jira UE-25971

	The proxy camera mesh is now properly reset to zero

	#codereview nick.darnell

Change 2851675 on 2016/02/01 by Alexis.Matte

	#jira UE-25525

	Update the tooltips

	#codereview nick.darnell

Change 2851764 on 2016/02/01 by Alexis.Matte

	#jira UE-25595

	The fbx plus and minus icons are now brighter

	#codereview nick.darnell

Change 2852116 on 2016/02/01 by Bob.Tellez

	#UE4 Submitting pull request 2013 from GitHub (Pull request 2013). Thanks for the fix hoelzl!

	Fix file selection when reimporting curve from moved CSV file
	When reimporting a data curve after moving the CSV file from which it was generated, the file selection dialog does not present an option to select CVS files. This patch fixes the issue by assigning the correct 'SupportedClass' value for `UReimportCurveFactory` instances.

	#codereview Nick.Darnell
	#JIRA UE-26247
	#2013

Change 2852375 on 2016/02/02 by Richard.TalbotWatkin

	Spline component improvements: added facility to not restore component instance cache after the construction script has run, so the points can act as inputs to the construction script. Created a new property bInputSplinePointsToConstructionScript for that.  Added SetUpVectorAtSplinePoint, and corrected some bugs.
	#jira UE-24931 - Set Location at Spline Point doesn't do anything

Change 2852726 on 2016/02/02 by Richard.TalbotWatkin

	Fixed FPropertyChangedEvent::GetArrayIndex when called from PostEditChangeProperty.
	#jira UE-25316 - PropertyChangedEvent.GetArrayIndex broken
	#codereview Robert.Manuszewski

Change 2853152 on 2016/02/02 by Jamie.Dale

	Fixed multi-line editable texts not updating their font when changed in UMG

	Also made all the SetStyle functions use the default if they're passed null (to match SEditableTextBox), and tidied up some of the property panel layout when editing styles.

	#codereview Chris.Wood

Change 2853220 on 2016/02/02 by Alexis.Matte

	#jira UE-26303

	We now apply the scene option transform to the vertex of meshes instead of the root node of the scene. This allow re-alignment of the mesh to go with animation.

	#codereview nick.darnell

Change 2853282 on 2016/02/02 by Alexis.Matte

	Back out changelist 2853220

Change 2854211 on 2016/02/03 by Nick.Darnell

	Widget Reflector - Limit the minimum scale that can be applied to something more reasonable 50%, instead of 10%.

Change 2854216 on 2016/02/03 by Nick.Darnell

	Scene Viewport - The scene viewport handles application scale better now, allowing click locations to be interepreted correctly and transformed into pixel hit location, rather than local space widget location, which may not match.

Change 2854220 on 2016/02/03 by Nick.Darnell

	Slate - Allowing mousewheel or gesture to be routed directly for a widget path like has been done for other mouse events, this permits more kinds of mouse like actions in a VR environment onto widgets in the scene.  (not actually hooked up to do it, but this now permits it at the slate level to be done correctly).

Change 2854449 on 2016/02/03 by Alexis.Matte

	-Fix the fbx import options, for the scene transform value that was not apply correctly
	-Add an inspector on the scene import option in the reimport dialog

Change 2855659 on 2016/02/04 by Alexis.Matte

	-Fix the bake pivot when there is a hierarchy, we now accumulate the pivot effect in the hierarchy to place the object at the correct place.

	#codereview nick.darnell

Change 2855922 on 2016/02/04 by Alexis.Matte

	#jira UE-26303

	The animation is now align with the imported skeletal mesh, the bakepivot is also supported

	#codereview nick.darnell

Change 2856989 on 2016/02/05 by Jamie.Dale

	Some improvements to the source code loc gatherer

	* We now strip any comments out of any pre-processor tokens before we start handling them.
	* Fixed a case where "#if defined" and "#elif defined" would parse incorrectly.
	* Fixed a case where "#define LOCTEXT_NAMESPACE" and "#define LOC_DEFINE_REGION" may not be paired correctly with their corresponding "#undef".

[CL 2888106 by Nick Darnell in Main branch]
2016-03-01 15:17:24 -05:00

130 lines
3.9 KiB
C++

// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
#include "UMGPrivatePCH.h"
#define LOCTEXT_NAMESPACE "UMG"
/////////////////////////////////////////////////////
// UMultiLineEditableText
UMultiLineEditableText::UMultiLineEditableText(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
SMultiLineEditableText::FArguments Defaults;
WidgetStyle = *Defaults._TextStyle;
AllowContextMenu = Defaults._AllowContextMenu.Get();
AutoWrapText = true;
if (!IsRunningDedicatedServer())
{
static ConstructorHelpers::FObjectFinder<UFont> RobotoFontObj(TEXT("/Engine/EngineFonts/Roboto"));
Font_DEPRECATED = FSlateFontInfo(RobotoFontObj.Object, 12, FName("Bold"));
WidgetStyle.SetFont(Font_DEPRECATED);
}
}
void UMultiLineEditableText::ReleaseSlateResources(bool bReleaseChildren)
{
Super::ReleaseSlateResources(bReleaseChildren);
MyMultiLineEditableText.Reset();
}
TSharedRef<SWidget> UMultiLineEditableText::RebuildWidget()
{
MyMultiLineEditableText = SNew(SMultiLineEditableText)
.TextStyle(&WidgetStyle)
.AllowContextMenu(AllowContextMenu)
// .MinDesiredWidth(MinimumDesiredWidth)
// .IsCaretMovedWhenGainFocus(IsCaretMovedWhenGainFocus)
// .SelectAllTextWhenFocused(SelectAllTextWhenFocused)
// .RevertTextOnEscape(RevertTextOnEscape)
// .ClearKeyboardFocusOnCommit(ClearKeyboardFocusOnCommit)
// .SelectAllTextOnCommit(SelectAllTextOnCommit)
// .BackgroundImageSelected(BackgroundImageSelected ? TAttribute<const FSlateBrush*>(&BackgroundImageSelected->Brush) : TAttribute<const FSlateBrush*>())
// .BackgroundImageSelectionTarget(BackgroundImageSelectionTarget ? TAttribute<const FSlateBrush*>(&BackgroundImageSelectionTarget->Brush) : TAttribute<const FSlateBrush*>())
// .BackgroundImageComposing(BackgroundImageComposing ? TAttribute<const FSlateBrush*>(&BackgroundImageComposing->Brush) : TAttribute<const FSlateBrush*>())
// .CaretImage(CaretImage ? TAttribute<const FSlateBrush*>(&CaretImage->Brush) : TAttribute<const FSlateBrush*>())
.OnTextChanged(BIND_UOBJECT_DELEGATE(FOnTextChanged, HandleOnTextChanged))
.OnTextCommitted(BIND_UOBJECT_DELEGATE(FOnTextCommitted, HandleOnTextCommitted))
;
return BuildDesignTimeWidget( MyMultiLineEditableText.ToSharedRef() );
}
void UMultiLineEditableText::SynchronizeProperties()
{
Super::SynchronizeProperties();
TAttribute<FText> HintTextBinding = OPTIONAL_BINDING(FText, HintText);
MyMultiLineEditableText->SetTextStyle(&WidgetStyle);
MyMultiLineEditableText->SetText(Text);
MyMultiLineEditableText->SetHintText(HintTextBinding);
MyMultiLineEditableText->SetAllowContextMenu(AllowContextMenu);
// MyMultiLineEditableText->SetIsReadOnly(IsReadOnly);
// MyMultiLineEditableText->SetIsPassword(IsPassword);
// MyMultiLineEditableText->SetColorAndOpacity(ColorAndOpacity);
// TODO UMG Complete making all properties settable on SMultiLineEditableText
Super::SynchronizeTextLayoutProperties(*MyMultiLineEditableText);
}
FText UMultiLineEditableText::GetText() const
{
if ( MyMultiLineEditableText.IsValid() )
{
return MyMultiLineEditableText->GetText();
}
return Text;
}
void UMultiLineEditableText::SetText(FText InText)
{
Text = InText;
if ( MyMultiLineEditableText.IsValid() )
{
MyMultiLineEditableText->SetText(Text);
}
}
void UMultiLineEditableText::HandleOnTextChanged(const FText& InText)
{
OnTextChanged.Broadcast(InText);
}
void UMultiLineEditableText::HandleOnTextCommitted(const FText& InText, ETextCommit::Type CommitMethod)
{
OnTextCommitted.Broadcast(InText, CommitMethod);
}
void UMultiLineEditableText::PostLoad()
{
Super::PostLoad();
if (GetLinkerUE4Version() < VER_UE4_DEPRECATE_UMG_STYLE_OVERRIDES)
{
if (Font_DEPRECATED.HasValidFont())
{
WidgetStyle.Font = Font_DEPRECATED;
Font_DEPRECATED = FSlateFontInfo();
}
}
}
#if WITH_EDITOR
const FText UMultiLineEditableText::GetPaletteCategory()
{
return LOCTEXT("Primitive", "Primitive");
}
#endif
/////////////////////////////////////////////////////
#undef LOCTEXT_NAMESPACE