Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
arranger_object_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_ARRANGER_OBJECT_INFO_H__
11#define __GUI_WIDGETS_DIALOGS_ARRANGER_OBJECT_INFO_H__
12
13#include <gtk/gtk.h>
14
15#define ARRANGER_OBJECT_INFO_DIALOG_WIDGET_TYPE \
16 (arranger_object_info_dialog_widget_get_type ())
17G_DECLARE_FINAL_TYPE (
19 arranger_object_info_dialog_widget,
20 Z,
21 ARRANGER_OBJECT_INFO_DIALOG_WIDGET,
22 GtkWindow)
23
24typedef struct ArrangerObject ArrangerObject;
25
35typedef struct _ArrangerObjectInfoDialogWidget
36{
37 GtkWindow parent_instance;
38
39 ArrangerObject * obj;
41
48
53#endif
ArrangerObjectInfoDialogWidget * arranger_object_info_dialog_widget_new(ArrangerObject *object)
Creates an arranger_object_info dialog widget and displays it.
The arranger_object_info dialog.
Base struct for arranger objects.