41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AzCore/EBus/EBus.h>
|
|
#include <AzCore/std/function/function_fwd.h>
|
|
#include <AzCore/std/string/string.h>
|
|
|
|
#include <QImage>
|
|
|
|
class QImage;
|
|
|
|
namespace AzToolsFramework
|
|
{
|
|
namespace AssetBrowser
|
|
{
|
|
class AssetBrowserModel;
|
|
|
|
//! Sends requests to output preview image for texture assets. Used for internal only!
|
|
class AssetBrowserTexturePreviewRequests
|
|
: public AZ::EBusTraits
|
|
{
|
|
public:
|
|
|
|
// Only a single handler is allowed
|
|
static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Single;
|
|
|
|
//! Request to get a preview image for texture product
|
|
//@return whether the output image is valid or not
|
|
virtual bool GetProductTexturePreview(const char* /*fullProductFileName*/, QImage& /*previewImage*/, AZStd::string& /*productInfo*/, AZStd::string& /*productAlphaInfo*/) { return false; }
|
|
};
|
|
|
|
using AssetBrowserTexturePreviewRequestsBus = AZ::EBus<AssetBrowserTexturePreviewRequests>;
|
|
} // namespace AssetBrowser
|
|
} // namespace AzToolsFramework
|