Zrythm
a highly automated and intuitive digital audio workstation
Toggle main menu visibility
Main Page
Related Pages
Topics
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
e
f
g
i
m
p
r
t
w
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
Typedefs
Enumerations
a
b
c
e
f
g
i
k
m
n
p
r
s
t
u
z
Enumerator
a
u
z
Macros
_
a
b
c
d
e
f
h
i
k
m
p
r
s
t
u
v
z
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
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_wrapper.h"
14
15
#define PORT_INFO_DIALOG_WIDGET_TYPE (port_info_dialog_widget_get_type ())
16
G_DECLARE_FINAL_TYPE (
17
PortInfoDialogWidget
,
18
port_info_dialog_widget,
19
Z,
20
PORT_INFO_DIALOG_WIDGET,
21
GtkWindow)
22
23
typedef
struct
Port
Port
;
24
34
typedef
struct
_PortInfoDialogWidget
35
{
36
GtkWindow parent_instance;
37
38
/* TODO */
39
GtkBox * scale_points_box;
40
42
Port
*
port
;
43
}
PortInfoDialogWidget
;
34
typedef
struct
_PortInfoDialogWidget {
…
};
44
48
PortInfoDialogWidget
*
49
port_info_dialog_widget_new
(
Port
* port);
50
55
#endif
port_info_dialog_widget_new
PortInfoDialogWidget * port_info_dialog_widget_new(Port *port)
Creates an port_info dialog widget and displays it.
PortInfoDialogWidget
The port_info dialog.
Definition
port_info.h:35
PortInfoDialogWidget::port
Port * port
The port this is about.
Definition
port_info.h:42
Port
Must ONLY be created via port_new()
Definition
port.h:136
gui
widgets
dialogs
port_info.h
Generated by
1.11.0