Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
create_project_dialog.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_CREATE_PROJECT_DIALOG_H__
11#define __GUI_WIDGETS_CREATE_PROJECT_DIALOG_H__
12
13#include <gtk/gtk.h>
14
15typedef struct _IdeFileChooserEntry IdeFileChooserEntry;
16
23#define CREATE_PROJECT_DIALOG_WIDGET_TYPE \
24 (create_project_dialog_widget_get_type ())
26 CreateProjectDialogWidget,
27 create_project_dialog_widget,
28 Z,
29 CREATE_PROJECT_DIALOG_WIDGET,
30 GtkDialog)
31
32
35typedef struct _CreateProjectDialogWidget
36{
37 GtkDialog parent_instance;
38
39 GtkEntry * name;
40 GtkBox * fc_box;
41 IdeFileChooserEntry * fc;
42} CreateProjectDialogWidget;
43
44CreateProjectDialogWidget *
45create_project_dialog_widget_new (void);
46
51#endif
G_DECLARE_FINAL_TYPE(CreateProjectDialogWidget, create_project_dialog_widget, Z, CREATE_PROJECT_DIALOG_WIDGET, GtkDialog) typedef struct _CreateProjectDialogWidget
Create project dialog.