git mv Code\Sandbox\Plugins Code/Editor/Plugins
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,109 @@
|
||||
/*
|
||||
* Copyright (c) Contributors to the Open 3D Engine Project
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "ProjectSettingsTool_precompiled.h"
|
||||
#include "PropertyFileSelect.h"
|
||||
|
||||
#include "PlatformSettings_common.h"
|
||||
#include "ValidationHandler.h"
|
||||
|
||||
#include <QLayout>
|
||||
#include <QPushButton>
|
||||
#include <QLineEdit>
|
||||
|
||||
namespace ProjectSettingsTool
|
||||
{
|
||||
PropertyFileSelectCtrl::PropertyFileSelectCtrl(QWidget* pParent)
|
||||
: PropertyFuncValBrowseEditCtrl(pParent)
|
||||
, m_selectFunctor(nullptr)
|
||||
{
|
||||
// Turn on clear button by default
|
||||
browseEdit()->setClearButtonEnabled(true);
|
||||
|
||||
connect(browseEdit(), &AzQtComponents::BrowseEdit::attachedButtonTriggered, this, &PropertyFileSelectCtrl::SelectFile);
|
||||
}
|
||||
|
||||
void PropertyFileSelectCtrl::SelectFile()
|
||||
{
|
||||
if (m_selectFunctor != nullptr)
|
||||
{
|
||||
QString path = m_selectFunctor(browseEdit()->text());
|
||||
if (!path.isEmpty())
|
||||
{
|
||||
SetValueUser(path);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
AZ_Assert(false, "No file select functor set.");
|
||||
}
|
||||
}
|
||||
|
||||
void PropertyFileSelectCtrl::ConsumeAttribute(AZ::u32 attrib, AzToolsFramework::PropertyAttributeReader* attrValue, const char* debugName)
|
||||
{
|
||||
if (attrib == Attributes::SelectFunction)
|
||||
{
|
||||
void* functor = nullptr;
|
||||
if (attrValue->Read<void*>(functor))
|
||||
{
|
||||
// This is guaranteed type safe elsewhere so this is safe
|
||||
m_selectFunctor = reinterpret_cast<FileSelectFuncType>(functor);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
PropertyFuncValBrowseEditCtrl::ConsumeAttribute(attrib, attrValue, debugName);
|
||||
}
|
||||
}
|
||||
|
||||
// Handler ///////////////////////////////////////////////////////////////////
|
||||
|
||||
PropertyFileSelectHandler::PropertyFileSelectHandler(ValidationHandler* valHdlr)
|
||||
: AzToolsFramework::PropertyHandler<AZStd::string, PropertyFileSelectCtrl>()
|
||||
, m_validationHandler(valHdlr)
|
||||
{}
|
||||
|
||||
AZ::u32 PropertyFileSelectHandler::GetHandlerName(void) const
|
||||
{
|
||||
return Handlers::FileSelect;
|
||||
}
|
||||
|
||||
QWidget* PropertyFileSelectHandler::CreateGUI(QWidget* pParent)
|
||||
{
|
||||
PropertyFileSelectCtrl* ctrl = aznew PropertyFileSelectCtrl(pParent);
|
||||
m_validationHandler->AddValidatorCtrl(ctrl);
|
||||
return ctrl;
|
||||
}
|
||||
|
||||
void PropertyFileSelectHandler::ConsumeAttribute(PropertyFileSelectCtrl* GUI, AZ::u32 attrib, AzToolsFramework::PropertyAttributeReader* attrValue, const char* debugName)
|
||||
{
|
||||
GUI->ConsumeAttribute(attrib, attrValue, debugName);
|
||||
}
|
||||
|
||||
void PropertyFileSelectHandler::WriteGUIValuesIntoProperty([[maybe_unused]] size_t index, PropertyFileSelectCtrl* GUI, property_t& instance, [[maybe_unused]] AzToolsFramework::InstanceDataNode* node)
|
||||
{
|
||||
instance = GUI->GetValue().toUtf8().data();
|
||||
}
|
||||
|
||||
bool PropertyFileSelectHandler::ReadValuesIntoGUI([[maybe_unused]] size_t index, PropertyFileSelectCtrl* GUI, const property_t& instance, [[maybe_unused]] AzToolsFramework::InstanceDataNode* node)
|
||||
{
|
||||
GUI->SetValue(instance.data());
|
||||
GUI->ForceValidate();
|
||||
return true;
|
||||
}
|
||||
|
||||
PropertyFileSelectHandler* PropertyFileSelectHandler::Register(ValidationHandler* valHdlr)
|
||||
{
|
||||
PropertyFileSelectHandler* handler = aznew PropertyFileSelectHandler(valHdlr);
|
||||
AzToolsFramework::PropertyTypeRegistrationMessages::Bus::Broadcast(
|
||||
&AzToolsFramework::PropertyTypeRegistrationMessages::Bus::Handler::RegisterPropertyType,
|
||||
handler);
|
||||
return handler;
|
||||
}
|
||||
} // namespace ProjectSettingsTool
|
||||
|
||||
#include <moc_PropertyFileSelect.cpp>
|
||||
Reference in New Issue
Block a user