-
Notifications
You must be signed in to change notification settings - Fork 1
/
input_event.h
38 lines (31 loc) · 1.2 KB
/
input_event.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#pragma once
#include <furi.h>
#include <input/input.h>
#include <stdio.h>
#include "flizzer_tracker.h"
#include "sound_engine/sound_engine_defs.h"
#include "tracker_engine/tracker_engine_defs.h"
#include "util.h"
#include "input/instrument.h"
#include "input/instrument_program.h"
#include "input/pattern.h"
#include "input/sequence.h"
#include "input/songinfo.h"
extern bool audio_modes_values[];
extern char* audio_modes_text[];
void overwrite_file_widget_yes_input_callback(GuiButtonType result, InputType type, void* ctx);
void overwrite_file_widget_no_input_callback(GuiButtonType result, InputType type, void* ctx);
void overwrite_instrument_file_widget_yes_input_callback(
GuiButtonType result,
InputType type,
void* ctx);
void overwrite_instrument_file_widget_no_input_callback(
GuiButtonType result,
InputType type,
void* ctx);
uint32_t submenu_exit_callback(void* context);
uint32_t submenu_settings_exit_callback(void* context);
void submenu_callback(void* context, uint32_t index);
void submenu_copypaste_callback(void* context, uint32_t index);
void audio_output_changed_callback(VariableItem* item);
void process_input_event(FlizzerTrackerApp* tracker, FlizzerTrackerEvent* event);