Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
right_dock_edge.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_RIGHT_DOCK_EDGE_H__
11#define __GUI_WIDGETS_RIGHT_DOCK_EDGE_H__
12
13#include <gtk/gtk.h>
14#include <libpanel.h>
15
16#define RIGHT_DOCK_EDGE_WIDGET_TYPE (right_dock_edge_widget_get_type ())
17G_DECLARE_FINAL_TYPE (
19 right_dock_edge_widget,
20 Z,
21 RIGHT_DOCK_EDGE_WIDGET,
22 GtkWidget)
23
24
30#define MW_RIGHT_DOCK_EDGE MW_CENTER_DOCK->right_dock_edge
31
32typedef struct _PluginBrowserWidget PluginBrowserWidget;
33typedef struct _FileBrowserWidget FileBrowserWidget;
34typedef struct _MonitorSectionWidget MonitorSectionWidget;
35typedef struct _FoldableNotebookWidget FoldableNotebookWidget;
36typedef struct _PanelFileBrowserWidget PanelFileBrowserWidget;
37typedef struct _ChordPackBrowserWidget ChordPackBrowserWidget;
38
39typedef struct _RightDockEdgeWidget
40{
41 GtkWidget parent_instance;
42 PanelFrame * panel_frame;
43
44 GtkBox * plugin_browser_box;
45 PluginBrowserWidget * plugin_browser;
46
47 GtkBox * file_browser_box;
48 PanelFileBrowserWidget * file_browser;
49
50 GtkBox * monitor_section_box;
51 MonitorSectionWidget * monitor_section;
52
53 GtkBox * chord_pack_browser_box;
54 ChordPackBrowserWidget * chord_pack_browser;
56
60void
62
67#endif
void right_dock_edge_widget_setup(RightDockEdgeWidget *self)
Sets up the widget.
A GtkNotebook that shows or hides itself when the same page tab is clicked.
The plugin browser allows to browse and filter available Plugin's on the system.