mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 04:41:26 +04:00
* clang-format: AllowShortEnumsOnASingleLine: false * clang-format: InsertNewlineAtEOF: true * clang-format: Standard: c++20 * clang-format: AlignConsecutiveBitFields * clang-format: AlignConsecutiveMacros * clang-format: RemoveParentheses: ReturnStatement * clang-format: RemoveSemicolon: true * Restored RemoveParentheses: Leave, retained general changes for it * formatting: fixed logging TAGs * Formatting update for dev Co-authored-by: あく <alleteam@gmail.com>
38 lines
793 B
C
38 lines
793 B
C
#pragma once
|
|
|
|
#include <furi.h>
|
|
#include <power/power_service/power.h>
|
|
#include <gui/gui.h>
|
|
#include <gui/view.h>
|
|
#include <gui/view_dispatcher.h>
|
|
#include <gui/scene_manager.h>
|
|
#include <assets_icons.h>
|
|
|
|
#include "views/battery_info.h"
|
|
#include <gui/modules/submenu.h>
|
|
#include <gui/modules/dialog_ex.h>
|
|
|
|
#include "scenes/power_settings_scene.h"
|
|
|
|
typedef struct {
|
|
Power* power;
|
|
Gui* gui;
|
|
SceneManager* scene_manager;
|
|
ViewDispatcher* view_dispatcher;
|
|
BatteryInfo* batery_info;
|
|
Submenu* submenu;
|
|
DialogEx* dialog;
|
|
PowerInfo info;
|
|
} PowerSettingsApp;
|
|
|
|
typedef enum {
|
|
PowerSettingsAppViewBatteryInfo,
|
|
PowerSettingsAppViewSubmenu,
|
|
PowerSettingsAppViewDialog,
|
|
} PowerSettingsAppView;
|
|
|
|
typedef enum {
|
|
RebootTypeDFU,
|
|
RebootTypeNormal
|
|
} RebootType;
|