2023-05-12 13:47:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <gui/view.h>
|
|
|
|
#include "../helpers/subrem_custom_event.h"
|
|
|
|
|
|
|
|
typedef struct SubRemViewRemote SubRemViewRemote;
|
|
|
|
|
|
|
|
typedef void (*SubRemViewRemoteCallback)(SubRemCustomEvent event, void* context);
|
|
|
|
|
|
|
|
void subrem_view_remote_set_callback(
|
|
|
|
SubRemViewRemote* subrem_view_remote,
|
|
|
|
SubRemViewRemoteCallback callback,
|
|
|
|
void* context);
|
|
|
|
|
|
|
|
SubRemViewRemote* subrem_view_remote_alloc();
|
|
|
|
|
|
|
|
void subrem_view_remote_free(SubRemViewRemote* subrem_view_remote);
|
|
|
|
|
|
|
|
View* subrem_view_remote_get_view(SubRemViewRemote* subrem_view_remote);
|
|
|
|
|
|
|
|
void subrem_view_remote_add_data_to_show(
|
|
|
|
SubRemViewRemote* subrem_view_remote,
|
|
|
|
const char* up_label,
|
|
|
|
const char* down_label,
|
|
|
|
const char* left_label,
|
|
|
|
const char* right_label,
|
2023-05-17 14:48:05 +00:00
|
|
|
const char* ok_label);
|