-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflick_data.h
More file actions
36 lines (32 loc) · 724 Bytes
/
flick_data.h
File metadata and controls
36 lines (32 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef __FLICK_DATA_H__
#define __FLICK_DATA_H__
#include <gui/view_dispatcher.h>
#include <gui/scene_manager.h>
#include <gui/modules/dialog_ex.h>
#include <gui/modules/loading.h>
#include <gui/modules/popup.h>
#include <gui/modules/submenu.h>
#include <gui/modules/text_box.h>
#include <gui/modules/text_input.h>
struct flick_app {
ViewDispatcher *view_dispatcher;
SceneManager *scene_manager;
DialogEx *dialog_ex;
Popup *popup;
Submenu *submenu;
TextBox *text_box;
TextInput *text_input;
Loading *loading;
FuriString *data_path;
};
/* Views */
enum {
FlickViewMenu,
FlickViewDialogEx,
FlickViewPopup,
FlickViewTextBox,
FlickViewTextInput,
FlickViewLoading,
FlickViewNum
};
#endif // __FLICK_DATA_H__