* nfc: rework mf classic update * nfc: rename cache folder to .cache * nfc: fix ATQA order bytes in nfc files * file browser: add hide dot files option * nfc: fix iso-14443-4 uid cards emulation * nfc: fix unit tests Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/**
 | 
						|
 * @file file_browser.h
 | 
						|
 * GUI: FileBrowser view module API
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <gui/view.h>
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
typedef struct FileBrowser FileBrowser;
 | 
						|
typedef void (*FileBrowserCallback)(void* context);
 | 
						|
 | 
						|
typedef bool (*FileBrowserLoadItemCallback)(
 | 
						|
    FuriString* path,
 | 
						|
    void* context,
 | 
						|
    uint8_t** icon,
 | 
						|
    FuriString* item_name);
 | 
						|
 | 
						|
FileBrowser* file_browser_alloc(FuriString* result_path);
 | 
						|
 | 
						|
void file_browser_free(FileBrowser* browser);
 | 
						|
 | 
						|
View* file_browser_get_view(FileBrowser* browser);
 | 
						|
 | 
						|
void file_browser_configure(
 | 
						|
    FileBrowser* browser,
 | 
						|
    const char* extension,
 | 
						|
    bool skip_assets,
 | 
						|
    bool hide_dot_files,
 | 
						|
    const Icon* file_icon,
 | 
						|
    bool hide_ext);
 | 
						|
 | 
						|
void file_browser_start(FileBrowser* browser, FuriString* path);
 | 
						|
 | 
						|
void file_browser_stop(FileBrowser* browser);
 | 
						|
 | 
						|
void file_browser_set_callback(FileBrowser* browser, FileBrowserCallback callback, void* context);
 | 
						|
 | 
						|
void file_browser_set_item_callback(
 | 
						|
    FileBrowser* browser,
 | 
						|
    FileBrowserLoadItemCallback callback,
 | 
						|
    void* context);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 |