35 lines
940 B
C++
35 lines
940 B
C++
/*********************************************************************************/
|
|
/********** THIS FILE IS GENERATED BY TOUCHGFX DESIGNER, DO NOT MODIFY ***********/
|
|
/*********************************************************************************/
|
|
#ifndef TEMPERATUREBASE_HPP
|
|
#define TEMPERATUREBASE_HPP
|
|
|
|
#include <gui/common/FrontendApplication.hpp>
|
|
#include <touchgfx/containers/Container.hpp>
|
|
#include <touchgfx/widgets/Box.hpp>
|
|
#include <touchgfx/widgets/TextAreaWithWildcard.hpp>
|
|
|
|
class TemperatureBase : public touchgfx::Container
|
|
{
|
|
public:
|
|
TemperatureBase();
|
|
virtual ~TemperatureBase();
|
|
virtual void initialize();
|
|
|
|
protected:
|
|
FrontendApplication& application() {
|
|
return *static_cast<FrontendApplication*>(touchgfx::Application::getInstance());
|
|
}
|
|
|
|
/*
|
|
* Member Declarations
|
|
*/
|
|
touchgfx::Box bg;
|
|
touchgfx::TextAreaWithOneWildcard value;
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // TEMPERATUREBASE_HPP
|