2022-02-25 19:22:58 +04:00
|
|
|
/**
|
|
|
|
|
* @file infrared_progress_view.h
|
|
|
|
|
* Infrared: Custom Infrared view module.
|
|
|
|
|
* It shows popup progress bar during brute force.
|
|
|
|
|
*/
|
|
|
|
|
#pragma once
|
|
|
|
|
#include <gui/view.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-02-20 03:58:55 +04:00
|
|
|
/** Anonymous instance */
|
2022-02-25 19:22:58 +04:00
|
|
|
typedef struct InfraredProgressView InfraredProgressView;
|
|
|
|
|
|
2025-02-20 03:58:55 +04:00
|
|
|
typedef enum {
|
|
|
|
|
InfraredProgressViewInputStop,
|
|
|
|
|
InfraredProgressViewInputPause,
|
|
|
|
|
InfraredProgressViewInputResume,
|
|
|
|
|
InfraredProgressViewInputPreviousSignal,
|
|
|
|
|
InfraredProgressViewInputNextSignal,
|
|
|
|
|
InfraredProgressViewInputSendSingle,
|
|
|
|
|
} InfraredProgressViewInput;
|
|
|
|
|
|
|
|
|
|
/** Callback for input handling */
|
|
|
|
|
typedef void (*InfraredProgressViewInputCallback)(void* context, InfraredProgressViewInput event);
|
2022-02-25 19:22:58 +04:00
|
|
|
|
|
|
|
|
/** Allocate and initialize Infrared view
|
|
|
|
|
*
|
|
|
|
|
* @retval new allocated instance
|
|
|
|
|
*/
|
2024-03-19 23:43:52 +09:00
|
|
|
InfraredProgressView* infrared_progress_view_alloc(void);
|
2022-02-25 19:22:58 +04:00
|
|
|
|
|
|
|
|
/** Free previously allocated Progress view module instance
|
|
|
|
|
*
|
|
|
|
|
* @param instance to free
|
|
|
|
|
*/
|
|
|
|
|
void infrared_progress_view_free(InfraredProgressView* instance);
|
|
|
|
|
|
|
|
|
|
/** Get progress view module view
|
|
|
|
|
*
|
|
|
|
|
* @param instance view module
|
|
|
|
|
* @retval view
|
|
|
|
|
*/
|
|
|
|
|
View* infrared_progress_view_get_view(InfraredProgressView* instance);
|
|
|
|
|
|
2025-02-20 03:58:55 +04:00
|
|
|
/** Set progress of progress view module
|
2022-02-25 19:22:58 +04:00
|
|
|
*
|
|
|
|
|
* @param instance view module
|
2025-02-20 03:58:55 +04:00
|
|
|
* @param progress progress value
|
2022-02-25 19:22:58 +04:00
|
|
|
*/
|
2025-02-20 03:58:55 +04:00
|
|
|
bool infrared_progress_view_set_progress(InfraredProgressView* instance, uint16_t progress);
|
2022-02-25 19:22:58 +04:00
|
|
|
|
|
|
|
|
/** Set maximum progress value
|
|
|
|
|
*
|
|
|
|
|
* @param instance - view module
|
|
|
|
|
* @param progress_max - maximum value of progress
|
|
|
|
|
*/
|
|
|
|
|
void infrared_progress_view_set_progress_total(
|
|
|
|
|
InfraredProgressView* instance,
|
|
|
|
|
uint16_t progress_max);
|
|
|
|
|
|
2025-02-20 03:58:55 +04:00
|
|
|
/** Selects the variant of the View
|
|
|
|
|
*
|
|
|
|
|
* @param instance view instance
|
|
|
|
|
* @param is_paused the "paused" variant is displayed if true; the "sending" one if false
|
|
|
|
|
*/
|
|
|
|
|
void infrared_progress_view_set_paused(InfraredProgressView* instance, bool is_paused);
|
|
|
|
|
|
|
|
|
|
/** Set input callback
|
2022-02-25 19:22:58 +04:00
|
|
|
*
|
|
|
|
|
* @param instance - view module
|
2025-02-20 03:58:55 +04:00
|
|
|
* @param callback - callback to call for input
|
2022-02-25 19:22:58 +04:00
|
|
|
* @param context - context to pass to callback
|
|
|
|
|
*/
|
2025-02-20 03:58:55 +04:00
|
|
|
void infrared_progress_view_set_input_callback(
|
2022-02-25 19:22:58 +04:00
|
|
|
InfraredProgressView* instance,
|
2025-02-20 03:58:55 +04:00
|
|
|
InfraredProgressViewInputCallback callback,
|
2022-02-25 19:22:58 +04:00
|
|
|
void* context);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|