 4bf29827f8
			
		
	
	
		4bf29827f8
		
			
		
	
	
	
	
		
			
			* Quicksave 1 * Header stage complete * Source stage complete * Lint & merge fixes * Includes * Documentation step 1 * FBT: output free size considering BT STACK * Documentation step 2 * py lint * Fix music player plugin * unit test stage 1: string allocator, mem, getters, setters, appends, compare, search. * unit test: string equality * unit test: string replace * unit test: string start_with, end_with * unit test: string trim * unit test: utf-8 * Rename * Revert fw_size changes * Simplify CLI backspace handling * Simplify CLI character insert * Merge fixes * Furi: correct filenaming and spelling * Bt: remove furi string include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			809 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			809 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "archive.h"
 | |
| #include <stdint.h>
 | |
| #include <furi.h>
 | |
| #include <gui/gui_i.h>
 | |
| #include <gui/view_dispatcher.h>
 | |
| #include <gui/scene_manager.h>
 | |
| #include <gui/modules/text_input.h>
 | |
| #include <gui/modules/widget.h>
 | |
| #include <loader/loader.h>
 | |
| 
 | |
| #include "views/archive_browser_view.h"
 | |
| #include "scenes/archive_scene.h"
 | |
| 
 | |
| typedef enum {
 | |
|     ArchiveViewBrowser,
 | |
|     ArchiveViewTextInput,
 | |
|     ArchiveViewWidget,
 | |
|     ArchiveViewTotal,
 | |
| } ArchiveViewEnum;
 | |
| 
 | |
| struct ArchiveApp {
 | |
|     Gui* gui;
 | |
|     ViewDispatcher* view_dispatcher;
 | |
|     SceneManager* scene_manager;
 | |
|     ArchiveBrowserView* browser;
 | |
|     TextInput* text_input;
 | |
|     Widget* widget;
 | |
|     FuriPubSubSubscription* loader_stop_subscription;
 | |
|     FuriString* fav_move_str;
 | |
|     char text_store[MAX_NAME_LEN];
 | |
|     char file_extension[MAX_EXT_LEN + 1];
 | |
| };
 |