mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-29 00:09:19 +03:00
0154018363
* FBT: cdefines to env, libs order * API: strtod, modf, itoa, calloc * Apps: elk js * Apps: mjs * JS: scripts as assets * mjs: composite resolver * mjs: stack trace * ELK JS example removed * MJS thread, MJS lib modified to support script interruption * JS console UI * Module system, BadUSB bindings rework * JS notifications, simple dialog, BadUSB demo * Custom dialogs, dialog demo * MJS as system library, some dirty hacks to make it compile * Plugin-based js modules * js_uart(BadUART) module * js_uart: support for byte array arguments * Script icon and various fixes * File browser: multiple extensions filter, running js scripts from app loader * Running js scripts from archive browser * JS Runner as system app * Example scripts moved to /ext/apps/Scripts * JS bytecode listing generation * MJS builtin printf cleanup * JS examples cleanup * mbedtls version fix * Unused lib cleanup * Making PVS happy & TODOs cleanup * TODOs cleanup #2 * MJS: initial typed arrays support * JS: fix mem leak in uart destructor Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
71 lines
1.9 KiB
C
71 lines
1.9 KiB
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct BrowserWorker BrowserWorker;
|
|
typedef void (*BrowserWorkerFolderOpenCallback)(
|
|
void* context,
|
|
uint32_t item_cnt,
|
|
int32_t file_idx,
|
|
bool is_root);
|
|
typedef void (*BrowserWorkerListLoadCallback)(void* context, uint32_t list_load_offset);
|
|
typedef void (*BrowserWorkerListItemCallback)(
|
|
void* context,
|
|
FuriString* item_path,
|
|
bool is_folder,
|
|
bool is_last);
|
|
typedef void (*BrowserWorkerLongLoadCallback)(void* context);
|
|
|
|
BrowserWorker* file_browser_worker_alloc(
|
|
FuriString* path,
|
|
const char* base_path,
|
|
const char* ext_filter,
|
|
bool skip_assets,
|
|
bool hide_dot_files);
|
|
|
|
void file_browser_worker_free(BrowserWorker* browser);
|
|
|
|
void file_browser_worker_set_callback_context(BrowserWorker* browser, void* context);
|
|
|
|
void file_browser_worker_set_folder_callback(
|
|
BrowserWorker* browser,
|
|
BrowserWorkerFolderOpenCallback cb);
|
|
|
|
void file_browser_worker_set_list_callback(
|
|
BrowserWorker* browser,
|
|
BrowserWorkerListLoadCallback cb);
|
|
|
|
void file_browser_worker_set_item_callback(
|
|
BrowserWorker* browser,
|
|
BrowserWorkerListItemCallback cb);
|
|
|
|
void file_browser_worker_set_long_load_callback(
|
|
BrowserWorker* browser,
|
|
BrowserWorkerLongLoadCallback cb);
|
|
|
|
void file_browser_worker_set_config(
|
|
BrowserWorker* browser,
|
|
FuriString* path,
|
|
const char* ext_filter,
|
|
bool skip_assets,
|
|
bool hide_dot_files);
|
|
|
|
void file_browser_worker_folder_enter(BrowserWorker* browser, FuriString* path, int32_t item_idx);
|
|
|
|
bool file_browser_worker_is_in_start_folder(BrowserWorker* browser);
|
|
|
|
void file_browser_worker_folder_exit(BrowserWorker* browser);
|
|
|
|
void file_browser_worker_folder_refresh(BrowserWorker* browser, int32_t item_idx);
|
|
|
|
void file_browser_worker_load(BrowserWorker* browser, uint32_t offset, uint32_t count);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|