 389ff92cc1
			
		
	
	
		389ff92cc1
		
			
		
	
	
	
	
		
			
			* Makefile, Scripts: new linter * About: remove ID from IC * Firmware: remove double define for DIVC/DIVR * Scripts: check folder names too. Docker: replace syntax check with make lint. * Reformat Sources and Migrate to new file naming convention * Docker: symlink clang-format-12 to clang-format * Add coding style guide
		
			
				
	
	
		
			47 lines
		
	
	
		
			890 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			890 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| #include <furi.h>
 | |
| #include <gui/gui.h>
 | |
| #include <gui/view.h>
 | |
| #include <gui/view_dispatcher.h>
 | |
| #include <gui/scene_manager.h>
 | |
| #include <notification/notification_messages.h>
 | |
| 
 | |
| #include <gui/modules/submenu.h>
 | |
| #include <gui/modules/dialog_ex.h>
 | |
| #include <gui/modules/popup.h>
 | |
| 
 | |
| #include <storage/storage.h>
 | |
| #include <storage/storage_sd_api.h>
 | |
| 
 | |
| #include "scenes/storage_settings_scene.h"
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| typedef struct {
 | |
|     // records
 | |
|     Gui* gui;
 | |
|     NotificationApp* notification;
 | |
|     Storage* fs_api;
 | |
| 
 | |
|     // view managment
 | |
|     SceneManager* scene_manager;
 | |
|     ViewDispatcher* view_dispatcher;
 | |
| 
 | |
|     // view modules
 | |
|     Submenu* submenu;
 | |
|     DialogEx* dialog_ex;
 | |
| 
 | |
|     // text
 | |
|     string_t text_string;
 | |
| } StorageSettings;
 | |
| 
 | |
| typedef enum {
 | |
|     StorageSettingsViewSubmenu,
 | |
|     StorageSettingsViewDialogEx,
 | |
| } StorageSettingsView;
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif |