Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
bot_dock_edge.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: © 2018-2022 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
10#ifndef __GUI_WIDGETS_BOT_DOCK_EDGE_H__
11#define __GUI_WIDGETS_BOT_DOCK_EDGE_H__
12
13#include "gtk_wrapper.h"
14#include "libpanel_wrapper.h"
15
16#define BOT_DOCK_EDGE_WIDGET_TYPE (bot_dock_edge_widget_get_type ())
17G_DECLARE_FINAL_TYPE (
19 bot_dock_edge_widget,
20 Z,
21 BOT_DOCK_EDGE_WIDGET,
22 GtkWidget)
23
24#define MW_BOT_DOCK_EDGE MW_CENTER_DOCK->bot_dock_edge
25
26typedef struct _MixerWidget MixerWidget;
27typedef struct _ClipEditorWidget ClipEditorWidget;
28typedef struct _ModulatorViewWidget ModulatorViewWidget;
29typedef struct _FoldableNotebookWidget FoldableNotebookWidget;
30typedef struct _EventViewerWidget EventViewerWidget;
31typedef struct _ChordPadPanelWidget ChordPadPanelWidget;
32
42typedef struct _BotDockEdgeWidget
43{
44 GtkWidget parent_instance;
45 PanelFrame * panel_frame;
46
49 ModulatorViewWidget * modulator_view;
50
51 GtkPaned * clip_editor_plus_event_viewer_paned;
52
55 EventViewerWidget * event_viewer_midi;
56 EventViewerWidget * event_viewer_chord;
57 EventViewerWidget * event_viewer_automation;
58 EventViewerWidget * event_viewer_audio;
59
62 ClipEditorWidget * clip_editor;
63
65 GtkBox * mixer_box;
66 MixerWidget * mixer;
67
70 ChordPadPanelWidget * chord_pad_panel;
71
72 GtkButton * toggle_top_panel;
74
75void
76bot_dock_edge_widget_setup (BotDockEdgeWidget * self);
77
81void
83
90void
92 BotDockEdgeWidget * self,
93 bool navigate_to_region_start);
94
99#endif
void bot_dock_edge_widget_update_event_viewer_stack_page(BotDockEdgeWidget *self)
Sets the appropriate stack page.
void bot_dock_edge_widget_show_clip_editor(BotDockEdgeWidget *self, bool navigate_to_region_start)
Brings up the clip editor.
Bot dock widget.
GtkBox * modulator_view_box
Wrapper.
GtkBox * chord_pad_panel_box
Chord pads.
GtkStack * event_viewer_stack
Event viewers.
GtkBox * clip_editor_box
Wrapper.
GtkBox * mixer_box
Wrapper.
The ClipEditorWidget shows in the Clip Editor / Piano Roll tab of the bottom panel,...
Definition clip_editor.h:38
A GtkNotebook that shows or hides itself when the same page tab is clicked.
The ModulatorViewWidget contains the ModulatorWidgets for the selected Track.