24 lines
539 B
C++
24 lines
539 B
C++
#ifndef MISSIONSELECTELEMENT_HPP
|
|
#define MISSIONSELECTELEMENT_HPP
|
|
|
|
#include "touchgfx/hal/Types.hpp"
|
|
#include <gui_generated/containers/MissionSelectElementBase.hpp>
|
|
#include <texts/TextKeysAndLanguages.hpp>
|
|
|
|
class MissionSelectElement : public MissionSelectElementBase {
|
|
public:
|
|
MissionSelectElement();
|
|
virtual ~MissionSelectElement() {}
|
|
|
|
virtual void initialize();
|
|
|
|
void setUp(uint32_t i, TEXTS label);
|
|
void setSelected(bool selected);
|
|
|
|
protected:
|
|
private:
|
|
touchgfx::colortype bgColor;
|
|
};
|
|
|
|
#endif // MISSIONSELECTELEMENT_HPP
|