Files
UnrealEngineUWP/Engine/Source/Developer/MessageLog/Private/UserInterface/SMessageLog.cpp
Andrew Rodham 8ff0d8b98b Added config migration path for newer versions of the engine.
Newly installed versions of the engine will now attempt to copy the project-agnostic config settings from a previous engine installation. This happens by way of a versioned manifest that copies old versions when the manifest does not exist, or is a different version. This code path is benign for non-installed versions of the engine (or FPaths::ShouldSaveToUserDir() is false).

EditorGameAgnosticSettings and EditorUserSettings ini paths have been renamed to EditorSettings and EditorPerProjectUserSettings respectively to better convey their purpose. In general, most settings should be saved in EditorSettings (project-agnostic) so that they apply regardless of which project is open. We have some way to go migrating existing settings for this to be the case, however.

Some previously per-project configuration files are now project-agnostic (such as Editor.ini, EditorKeyBindings.ini, and EditorLayout.ini)

GEditor->Access...Settings and GEditor->Get...Settings have been removed in favor of direct access of the CDO through GetMutableDefault<> and GetDefault<> respectively. Global config ini filenames that are not set up are now neither loaded nor saved on build machines, to handle the problem of indeterminate state more generically.

This addresses UETOOL-270 (Most editor preferences should be project-agnostic)

[CL 2517558 by Andrew Rodham in Main branch]
2015-04-20 10:12:55 -04:00

146 lines
3.8 KiB
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "MessageLogPrivatePCH.h"
#include "SMessageLog.h"
#include "MessageLogViewModel.h"
#include "MessageLogListingViewModel.h"
#include "SMessageLogListing.h"
#include "SMessageLogCategoryListRow.h"
#define LOCTEXT_NAMESPACE "SMessageLog"
/* SMessageLog structors
*****************************************************************************/
SMessageLog::~SMessageLog()
{
ViewModel->OnSelectionChanged().RemoveAll(this);
}
BEGIN_SLATE_FUNCTION_BUILD_OPTIMIZATION
void SMessageLog::Construct( const FArguments& InArgs, const TSharedRef<FMessageLogViewModel>& InViewModel )
{
ViewModel = InViewModel;
ChildSlot
[
SNew(SSplitter)
.Orientation(Orient_Horizontal)
+ SSplitter::Slot()
.Value(0.2f)
[
SNew(SBorder)
.BorderImage(FEditorStyle::GetBrush("ToolPanel.GroupBorder"))
.Padding(0.0f)
[
// log categories list
SAssignNew(CategoriesListView, SListView<IMessageLogListingPtr>)
.ItemHeight(24.0f)
.ListItemsSource(&ViewModel->GetLogListingViewModels())
.OnGenerateRow(this, &SMessageLog::HandleCategoriesListGenerateRow)
.OnSelectionChanged(this, &SMessageLog::HandleCategoriesListSelectionChanged)
.SelectionMode(ESelectionMode::Single)
.HeaderRow
(
SNew(SHeaderRow)
.Visibility(EVisibility::Collapsed)
+ SHeaderRow::Column("Name")
.DefaultLabel(LOCTEXT("CategoriesListNameColumnHeader", "Category"))
.FillWidth(1.0)
)
]
]
+ SSplitter::Slot()
.Value(0.8f)
[
SAssignNew(CurrentListingDisplay, SBorder)
.BorderImage(FEditorStyle::GetBrush("NoBorder"))
.Padding(0.0f)
]
];
// Default to the first available (or the last used) listing
const TArray<IMessageLogListingPtr>& ViewModels = ViewModel->GetLogListingViewModels();
if (ViewModels.Num() > 0)
{
IMessageLogListingPtr DefaultViewModel = ViewModels[0];
if (FPaths::FileExists(GEditorPerProjectIni))
{
FString LogName;
if (GConfig->GetString(TEXT("MessageLog"), TEXT("LastLogListing"), LogName, GEditorPerProjectIni))
{
IMessageLogListingPtr LoadedViewModel = ViewModel->FindLogListingViewModel(FName(*LogName));
if (LoadedViewModel.IsValid())
{
DefaultViewModel = LoadedViewModel;
}
}
}
CategoriesListView->SetSelection(DefaultViewModel, ESelectInfo::Direct);
}
ViewModel->OnSelectionChanged().AddSP(this, &SMessageLog::HandleSelectionUpdated);
}
END_SLATE_FUNCTION_BUILD_OPTIMIZATION
void SMessageLog::HandleSelectionUpdated()
{
TSharedPtr<FMessageLogListingViewModel> LogListingViewModel = ViewModel->GetCurrentListingViewModel();
if ( LogListingViewModel.IsValid() )
{
CategoriesListView->SetSelection(LogListingViewModel, ESelectInfo::Direct);
}
}
/* SWidget overrides
*****************************************************************************/
FReply SMessageLog::OnKeyDown( const FGeometry& MyGeometry, const FKeyEvent& InKeyEvent )
{
if (LogListing.IsValid())
{
return LogListing->GetCommandList()->ProcessCommandBindings(InKeyEvent)
? FReply::Handled()
: FReply::Unhandled();
}
return FReply::Unhandled();
}
/* SMessageLog callbacks
*****************************************************************************/
TSharedRef<ITableRow> SMessageLog::HandleCategoriesListGenerateRow( IMessageLogListingPtr Item, const TSharedRef<STableViewBase>& OwnerTable )
{
return SNew(SMessageLogCategoryListRow, Item.ToSharedRef(), OwnerTable);
}
void SMessageLog::HandleCategoriesListSelectionChanged( IMessageLogListingPtr Selection, ESelectInfo::Type SelectInfo )
{
if (Selection.IsValid())
{
CurrentListingDisplay->SetContent(SAssignNew(LogListing, SMessageLogListing, Selection.ToSharedRef()));
}
else
{
CurrentListingDisplay->SetContent(SNullWidget::NullWidget);
}
}
#undef LOCTEXT_NAMESPACE