Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
tool.h
Go to the documentation of this file.
1// clang-format off
2// SPDX-FileCopyrightText: © 2018-2019, 2024 Alexandros Theodotou <alex@zrythm.org>
3// SPDX-License-Identifier: LicenseRef-ZrythmLicense
4// clang-format on
5
10#ifndef __GUI_BACKEND_TOOL_H__
11#define __GUI_BACKEND_TOOL_H__
12
13#define P_TOOL PROJECT->tool
14
15typedef enum Tool
16{
17 TOOL_SELECT,
18 TOOL_EDIT,
19 TOOL_CUT,
20 TOOL_ERASER,
21 TOOL_RAMP,
22 TOOL_AUDITION,
23} Tool;
24
25#endif