Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
save_chord_preset_dialog.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: © 2022 Alexandros Theodotou <alex@zrythm.org>
3 *
4 * SPDX-License-Identifier: LicenseRef-ZrythmLicense
5 */
6
13#ifndef __GUI_WIDGETS_SAVE_CHORD_PRESET_DIALOG_H__
14#define __GUI_WIDGETS_SAVE_CHORD_PRESET_DIALOG_H__
15
16#include <gtk/gtk.h>
17
18#define SAVE_CHORD_PRESET_DIALOG_WIDGET_TYPE \
19 (save_chord_preset_dialog_widget_get_type ())
20G_DECLARE_FINAL_TYPE (
21 SaveChordPresetDialogWidget,
22 save_chord_preset_dialog_widget,
23 Z,
24 SAVE_CHORD_PRESET_DIALOG_WIDGET,
25 GtkDialog)
26
27
36typedef struct _SaveChordPresetDialogWidget
37{
38 GtkDialog parent_instance;
39
40 GtkDropDown * pack_dropdown;
41 GtkEntry * preset_name_entry;
42} SaveChordPresetDialogWidget;
43
47SaveChordPresetDialogWidget *
48save_chord_preset_dialog_widget_new (GtkWindow * parent_window);
49
54#endif
SaveChordPresetDialogWidget * save_chord_preset_dialog_widget_new(GtkWindow *parent_window)
Creates a dialog widget and displays it.