mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-21 05:04:46 -07:00
* feat(Desktop): Directories support for keybinds - Adds *RIGHT* button select in the file browser dialogs and changing the `Open File` action to `Open File/Directory` in `Settings > Desktop > Keybinds Setup`. This adds the ability to open to any directory in the Archive app, in addition to the default behavior of opening a file in it's default app. * line order mixup * Main Menu: Allow adding JS files (or any file) - Normal files and directories are now able to be added to then main menu and are run in their appropriate apps. - e.g. .txt files shown in text viewer, .js files are run in the JS Runner app, and folders are navigated to by the Archive app. All similar to the desktop keybinds functionality. - Icons are also assigned appropriately based on the extensions, though more could probably be added to the `loader_menu_get_ext_icon` function. - Also replaced some of the long arduous is_dir checks and just used the `storage_dir_exists` function since its already there and does the same. * should be checking `ext` for NULL * Move select_right at end of structs for binary compatibility apps may blindly reach into these structs so need to keep the basics in same structure for DialogsFileBrowserOptions this is even in public api and after compilation this would be incompatible with other firmwares even without reaching into private structs * Select menu item / folder for directories too * Move api below too * Keep ofw order here too * Refactor starting archive into desktop, less FuriString passing around * Dont leave main menu when launching archive * Simplify/fix a few things * Handle folders in run_with_default_app() * Update App -> Item naming in MNTM settings * Fix build * Explain pressing right * Update changelog --------- Co-authored-by: WillyJL <me@willyjl.dev>
56 lines
1.2 KiB
C
56 lines
1.2 KiB
C
/**
|
|
* @file file_browser.h
|
|
* GUI: FileBrowser view module API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define CUSTOM_ICON_MAX_SIZE 32
|
|
|
|
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,
|
|
const char* base_path,
|
|
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);
|
|
|
|
void file_browser_set_select_right(FileBrowser* browser, bool select_right);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|