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>
50 lines
1007 B
C
50 lines
1007 B
C
#pragma once
|
|
#include <furi.h>
|
|
#include "dialogs_i.h"
|
|
#include "dialogs_api_lock.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
const char* extension;
|
|
bool skip_assets;
|
|
bool hide_ext;
|
|
const Icon* file_icon;
|
|
FuriString* result_path;
|
|
FuriString* preselected_filename;
|
|
FileBrowserLoadItemCallback item_callback;
|
|
void* item_callback_context;
|
|
} DialogsAppMessageDataFileBrowser;
|
|
|
|
typedef struct {
|
|
const DialogMessage* message;
|
|
} DialogsAppMessageDataDialog;
|
|
|
|
typedef union {
|
|
DialogsAppMessageDataFileBrowser file_browser;
|
|
DialogsAppMessageDataDialog dialog;
|
|
} DialogsAppData;
|
|
|
|
typedef union {
|
|
bool bool_value;
|
|
DialogMessageButton dialog_value;
|
|
} DialogsAppReturn;
|
|
|
|
typedef enum {
|
|
DialogsAppCommandFileBrowser,
|
|
DialogsAppCommandDialog,
|
|
} DialogsAppCommand;
|
|
|
|
typedef struct {
|
|
FuriApiLock lock;
|
|
DialogsAppCommand command;
|
|
DialogsAppData* data;
|
|
DialogsAppReturn* return_data;
|
|
} DialogsAppMessage;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|