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/settings_manager.h"
8#include "gui/backend/backend/theme_manager.h"
9#include "gui/backend/backend/zrythm.h"
10#include "gui/backend/project_manager.h"
11
15class ActionController : public QObject
16{
17 Q_OBJECT
18 QML_ELEMENT
19 QML_SINGLETON
20public:
21 // Q_INVOKABLE void createEmptyTrack (int type);
22
23public:
24 ActionController (QObject * parent = nullptr);
25};