Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
export_midi_file_dialog.h
1// clang-format off
2// SPDX-FileCopyrightText: © 2019, 2021-2022 Alexandros Theodotou <alex@zrythm.org>
3// SPDX-License-Identifier: LicenseRef-ZrythmLicense
4// clang-format on
5
6#ifndef __GUI_WIDGETS_EXPORT_MIDI_FILE_DIALOG_H__
7#define __GUI_WIDGETS_EXPORT_MIDI_FILE_DIALOG_H__
8
9#include <gtk/gtk.h>
10
11typedef struct ZRegion ZRegion;
12
18void
19export_midi_file_dialog_widget_run (
20 GtkWindow * parent,
21 const TimelineSelections * sel);
22
23#endif
Selections to be used for the timeline's current selections, copying, undoing, etc.
A region (clip) is an object on the timeline that contains either MidiNote's or AudioClip's.
Definition region.h:72