25 lines
561 B
C++
25 lines
561 B
C++
// Copyright 2019-Present LexLiu. All Rights Reserved.
|
|
|
|
#include "Widgets/SCompoundWidget.h"
|
|
#include "Widgets/Docking/SDockTab.h"
|
|
#include "Core/LGUISpriteData.h"
|
|
#include "Widgets/Views/STileView.h"
|
|
#include "Widgets/Views/STableViewBase.h"
|
|
#pragma once
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class SLGUIDynamicSpriteAtlasViewer : public SCompoundWidget
|
|
{
|
|
public:
|
|
SLATE_BEGIN_ARGS(SLGUIDynamicSpriteAtlasViewer) {}
|
|
|
|
SLATE_END_ARGS()
|
|
|
|
void Construct(const FArguments& InArgs, TSharedPtr<SDockTab> InOwnerTab);
|
|
|
|
private:
|
|
void CloseTabCallback(TSharedRef<SDockTab> TabClosed);
|
|
};
|