Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
tracklist_preferences_popover.h
1// SPDX-FileCopyrightText: © 2023 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
4#ifndef __GUI_WIDGETS_TRACKLIST_PREFERENCES_POPOVER_H__
5#define __GUI_WIDGETS_TRACKLIST_PREFERENCES_POPOVER_H__
6
7#include "gtk_wrapper.h"
8
9#define TRACKLIST_PREFERENCES_POPOVER_WIDGET_TYPE \
10 (tracklist_preferences_popover_widget_get_type ())
11G_DECLARE_FINAL_TYPE (
12 TracklistPreferencesPopoverWidget,
13 tracklist_preferences_popover_widget,
14 Z,
15 TRACKLIST_PREFERENCES_POPOVER_WIDGET,
16 GtkPopover)
17
18typedef struct _TracklistPreferencesPopoverWidget
19{
20 GtkPopover parent_instance;
21} TracklistPreferencesPopoverWidget;
22
26TracklistPreferencesPopoverWidget *
27tracklist_preferences_popover_widget_new (void);
28
29#endif