Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
port_info.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: © 2020, 2023 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
10#ifndef __GUI_WIDGETS_DIALOGS_PORT_INFO_H__
11#define __GUI_WIDGETS_DIALOGS_PORT_INFO_H__
12
13#include <gtk/gtk.h>
14
15#define PORT_INFO_DIALOG_WIDGET_TYPE (port_info_dialog_widget_get_type ())
16G_DECLARE_FINAL_TYPE (
18 port_info_dialog_widget,
19 Z,
20 PORT_INFO_DIALOG_WIDGET,
21 GtkWindow)
22
23typedef struct Port Port;
24
34typedef struct _PortInfoDialogWidget
35{
36 GtkWindow parent_instance;
37
38 /* TODO */
39 GtkBox * scale_points_box;
40
44
50
55#endif
PortInfoDialogWidget * port_info_dialog_widget_new(Port *port)
Creates an port_info dialog widget and displays it.
The port_info dialog.
Definition port_info.h:35
Port * port
The port this is about.
Definition port_info.h:42
Must ONLY be created via port_new()
Definition port.h:138