Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
audio_editor_space.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: © 2019, 2022 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
10#ifndef __GUI_WIDGETS_AUDIO_EDITOR_SPACE_H__
11#define __GUI_WIDGETS_AUDIO_EDITOR_SPACE_H__
12
13#include <gtk/gtk.h>
14
15#define AUDIO_EDITOR_SPACE_WIDGET_TYPE (audio_editor_space_widget_get_type ())
16G_DECLARE_FINAL_TYPE (
18 audio_editor_space_widget,
19 Z,
20 AUDIO_EDITOR_SPACE_WIDGET,
21 GtkBox)
22
23typedef struct _ArrangerWidget ArrangerWidget;
24
31#define MW_AUDIO_EDITOR_SPACE MW_CLIP_EDITOR_INNER->audio_editor_space
32
37typedef struct _AudioEditorSpaceWidget
38{
39 GtkBox parent_instance;
40
41 GtkBox * left_box;
42 ArrangerWidget * arranger;
44
45void
46audio_editor_space_widget_setup (AudioEditorSpaceWidget * self);
47
51void
54 int visible);
55
56void
57audio_editor_space_widget_refresh (AudioEditorSpaceWidget * self);
58
63#endif
void audio_editor_space_widget_update_size_group(AudioEditorSpaceWidget *self, int visible)
See CLIP_EDITOR_INNER_WIDGET_ADD_TO_SIZEGROUP.
The arranger widget is a canvas that draws all the arranger objects it contains.
Definition arranger.h:108
The piano roll widget is the whole space inside the clip editor tab when a AUDIO region is selected.