Files
o3de/Code/Tools/News/NewsBuilder/Qt/LogContainer.cpp
T
Steve Pham b4a2edec6a Final update copyright headers to reference license files at the repo root (#1693)
* Final update copyright headers to reference license files at the repo root

Signed-off-by: spham <spham@amazon.com>

* Fix copyright validator unit tests to support the stale O3DE header scenario

Signed-off-by: spham <spham@amazon.com>
2021-06-30 19:51:55 -07:00

52 lines
1.2 KiB
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include "LogContainer.h"
#include "Qt/ui_LogContainer.h"
namespace News
{
LogContainer::LogContainer(QWidget* parent)
: QWidget(parent)
, m_ui(new Ui::LogContainerWidget)
{
m_ui->setupUi(this);
}
LogContainer::~LogContainer() {}
void LogContainer::AddLog(QString text, LogType logType) const {
QString color;
switch (logType)
{
case LogOk:
color = "green";
break;
case LogInfo:
color = "white";
break;
case LogError:
color = "red";
break;
case LogWarning:
color = "yellow";
break;
default:
color = "white";
break;
}
auto fullText = QString("<span style=\" color:%1; \"><XMP>%2</XMP></span><br>").arg(color).arg(text);
m_ui->logText->setTextFormat(Qt::RichText);
m_ui->logText->setText(QString("%2%1").arg(m_ui->logText->text()).arg(fullText));
}
#include "Qt/moc_LogContainer.cpp"
}