40 lines
1.2 KiB
C++
Raw Normal View History

2023-05-05 14:00:00 +02:00
/*********************************************************************************/
/********** THIS FILE IS GENERATED BY TOUCHGFX DESIGNER, DO NOT MODIFY ***********/
/*********************************************************************************/
#include <gui_generated/containers/ErrorPopupBase.hpp>
#include <touchgfx/Color.hpp>
#include <texts/TextKeysAndLanguages.hpp>
ErrorPopupBase::ErrorPopupBase()
{
2023-05-22 08:31:57 +02:00
setWidth(456);
2023-05-05 14:00:00 +02:00
setHeight(150);
2023-05-22 08:31:57 +02:00
bg.setPosition(0, 0, 456, 150);
2023-05-05 14:00:00 +02:00
bg.setColor(touchgfx::Color::getColorFromRGB(197, 14, 31));
bg.setBorderColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
bg.setBorderSize(5);
add(bg);
2023-05-22 08:31:57 +02:00
title.setPosition(0, 0, 456, 49);
2023-05-05 14:00:00 +02:00
title.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
title.setLinespacing(0);
title.setTypedText(touchgfx::TypedText(T___SINGLEUSE_1NKF));
add(title);
2023-05-22 08:31:57 +02:00
details.setPosition(17, 60, 426, 75);
2023-05-05 14:00:00 +02:00
details.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
details.setLinespacing(0);
details.setTypedText(touchgfx::TypedText(T___SINGLEUSE_9L8R));
add(details);
}
ErrorPopupBase::~ErrorPopupBase()
{
}
void ErrorPopupBase::initialize()
{
}