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