faab6d825f
- Update ILI9341 driver to v2.0.1 - Lots of code cleanup for apps - Refactor app "type" into "category" and added flags to the manifest (for show/hide statusbar and for hidden apps) - Rename some ElfApp-related functionality and improved the way the static data was managed - Rename "filebrowser" to "files" - Added cstring functions to tt_init.cpp - Minor fix in Boot app - Updated external apps for SDK changes
46 lines
902 B
C++
46 lines
902 B
C++
#pragma once
|
|
|
|
#include "./Bindings.h"
|
|
#include "./State.h"
|
|
|
|
#include <Tactility/app/AppContext.h>
|
|
|
|
#include <lvgl.h>
|
|
|
|
namespace tt::app::wificonnect {
|
|
|
|
class WifiConnect;
|
|
|
|
class View final {
|
|
|
|
Bindings* bindings;
|
|
State* state;
|
|
|
|
public:
|
|
|
|
lv_obj_t* ssid_textarea = nullptr;
|
|
lv_obj_t* ssid_error = nullptr;
|
|
lv_obj_t* password_textarea = nullptr;
|
|
lv_obj_t* password_error = nullptr;
|
|
lv_obj_t* connect_button = nullptr;
|
|
lv_obj_t* remember_switch = nullptr;
|
|
lv_obj_t* connecting_spinner = nullptr;
|
|
lv_obj_t* connection_error = nullptr;
|
|
lv_group_t* group = nullptr;
|
|
|
|
View(Bindings* bindings, State* state) :
|
|
bindings(bindings),
|
|
state(state)
|
|
{}
|
|
|
|
void init(AppContext& app, lv_obj_t* parent);
|
|
void update();
|
|
|
|
void createBottomButtons(lv_obj_t* parent);
|
|
void setLoading(bool loading);
|
|
void resetErrors();
|
|
};
|
|
|
|
|
|
} // namespace
|