Files
UnrealEngineUWP/Engine/Source/Developer/LogVisualizer/Private/SVisualLoggerToolbar.h
Ryan Vance 7c51ff94af Merging //UE4/Dev-Main to Dev-VR (//UE4/Dev-VR)
CL 1 of 8
#rb integration

[CL 4748712 by Ryan Vance in Dev-VR branch]
2019-01-17 18:54:05 -05:00

42 lines
1.0 KiB
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Widgets/SWidget.h"
#include "Widgets/DeclarativeSyntaxSupport.h"
#include "Framework/Commands/UICommandList.h"
#include "Developer/LogVisualizer/Private/LogVisualizerPrivate.h"
/**
* Implements the messaging debugger toolbar widget.
*/
class SVisualLoggerToolbar : public SVisualLoggerBaseWidget
{
public:
SLATE_BEGIN_ARGS(SVisualLoggerToolbar) { }
SLATE_END_ARGS()
public:
/**
* Construct this widget
*
* @param InArgs The declaration data for this widget.
* @param InStyle The visual style to use for this widget.
* @param InCommandList The command list to bind to.
*/
void Construct(const FArguments& InArgs, const TSharedRef<FUICommandList>& InCommandList);
protected:
/**
* Creates the toolbar widget.
*
* @param CommandList The command list to use for the toolbar buttons.
* @return The toolbar widget.
*/
TSharedRef<SWidget> MakeToolbar(const TSharedRef<FUICommandList>& CommandList);
};