Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
file_browser_window.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2019 Alexandros Theodotou <alex at zrythm dot org>
3 *
4 * This file is part of Zrythm
5 *
6 * Zrythm is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * Zrythm is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with Zrythm. If not, see <https://www.gnu.org/licenses/>.
18 */
19
26#ifndef __GUI_WIDGETS_FILE_BROWSER_WINDOW_WINDOW_H__
27#define __GUI_WIDGETS_FILE_BROWSER_WINDOW_WINDOW_H__
28
29#include <gtk/gtk.h>
30
31#define FILE_BROWSER_WINDOW_WIDGET_TYPE \
32 (file_browser_window_widget_get_type ())
33G_DECLARE_FINAL_TYPE (
35 file_browser_window_widget,
36 Z,
37 FILE_BROWSER_WINDOW_WINDOW_WIDGET,
38 GtkWindow)
39
40typedef struct _FileBrowserWidget FileBrowserWidget;
41
51typedef struct _FileBrowserWindowWidget
52{
53 GtkWindow parent_instance;
54
55 FileBrowserWidget * file_browser;
57
63
68#endif
FileBrowserWindowWidget * file_browser_window_widget_new(void)
Creates a new FileBrowserWindowWidget.
The file browser for samples, MIDI files, etc.
The file browser window.