Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
range_action_buttons.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: © 2020-2021 Alexandros Theodotou <alex@zrythm.org>
3 *
4 * SPDX-License-Identifier: LicenseRef-ZrythmLicense
5 */
6
11#ifndef __GUI_WIDGETS_RANGE_ACTION_BUTTONS_H__
12#define __GUI_WIDGETS_RANGE_ACTION_BUTTONS_H__
13
14#include <gtk/gtk.h>
15
22#define RANGE_ACTION_BUTTONS_WIDGET_TYPE \
23 (range_action_buttons_widget_get_type ())
24G_DECLARE_FINAL_TYPE (
26 range_action_buttons_widget,
27 Z,
28 RANGE_ACTION_BUTTONS_WIDGET,
29 GtkBox)
30
31typedef struct _SnapGridWidget SnapGridWidget;
32typedef struct SnapGrid SnapGrid;
33
34typedef struct _RangeActionButtonsWidget
35{
36 GtkBox parent_instance;
37 GtkButton * insert_silence;
38 GtkButton * remove;
40
45#endif