Zrythm v2.0.0-DEV
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
action_controller.h
1// SPDX-FileCopyrightText: © 2024 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
4#pragma once
5
6#include "gui/backend/alert_manager.h"
7#include "gui/backend/backend/theme_manager.h"
8#include "gui/backend/backend/zrythm.h"
9#include "gui/backend/project_manager.h"
10
14class ActionController : public QObject
15{
16 Q_OBJECT
17 QML_ELEMENT
18 QML_SINGLETON
19public:
20 // Q_INVOKABLE void createEmptyTrack (int type);
21
22public:
23 ActionController (QObject * parent = nullptr);
24};