You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
392 B
22 lines
392 B
2 years ago
|
#pragma once
|
||
|
|
||
|
#include <eez/gui/gui.h>
|
||
|
|
||
|
using namespace eez::gui;
|
||
|
|
||
|
namespace eez {
|
||
|
namespace gui {
|
||
|
|
||
|
class DeviceAppContext : public AppContext {
|
||
|
public:
|
||
|
void stateManagment() override;
|
||
|
bool isAutoRepeatAction(int action) override;
|
||
|
|
||
|
protected:
|
||
|
int getMainPageId() override;
|
||
|
};
|
||
|
|
||
|
extern DeviceAppContext g_deviceAppContext;
|
||
|
|
||
|
} // namespace gui
|
||
|
} // namespace eez
|