Files
UnrealEngineUWP/Engine/Source/Developer/LogVisualizer/Private/SVisualLoggerToolbar.h
sebastian kowalczyk 4a1b929643 Changed NewLogVisualizer module name to LogVisualizer module.
[CL 2385367 by sebastian kowalczyk in Main branch]
2014-12-11 07:19:14 -05:00

37 lines
809 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
/**
* Implements the messaging debugger toolbar widget.
*/
class SVisualLoggerToolbar : public SCompoundWidget
{
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);
};