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