Deluge Firmware
1.3.0
Build date: 2026.08.23
Toggle main menu visibility
Loading...
Searching...
No Matches
mod_fx.h
1
/*
2
* Copyright (c) 2014-2023 Synthstrom Audible Limited
3
*
4
* This file is part of The Synthstrom Audible Deluge Firmware.
5
*
6
* The Synthstrom Audible Deluge Firmware is free software: you can redistribute it and/or modify it under the
7
* terms of the GNU General Public License as published by the Free Software Foundation,
8
* either version 3 of the License, or (at your option) any later version.
9
*
10
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
11
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
* See the GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License along with this program.
15
* If not, see <https://www.gnu.org/licenses/>.
16
*/
17
#pragma once
18
19
#include "deluge/gui/l10n/l10n.h"
20
#include "deluge/gui/menu_item/submenu.h"
21
#include <string_view>
22
23
namespace
deluge::gui::menu_item::submenu {
24
class
ModFxHorizontalMenu
final :
public
HorizontalMenu {
25
public
:
26
using
HorizontalMenu::HorizontalMenu;
27
28
[[nodiscard]] std::string_view
getTitle
()
const override
{
29
if
(renderingStyle() == VERTICAL) {
30
return
Submenu::getTitle
();
31
}
32
33
if
(paging.visiblePageNumber == 0) {
34
// On the first page we show the mod fx type selector, so we display a regular MOD-FX title
35
return
deluge::l10n::getView(
title
);
36
}
37
38
// On other pages user can tweak params related to the selected mod fx type, so we show the type name
39
const
ModFXType modFxType = soundEditor.currentModControllable->modFXType_;
40
return
modfx::getModNames()[
static_cast<
uint8_t
>
(modFxType)];
41
}
42
};
43
}
// namespace deluge::gui::menu_item::submenu
MenuItem::getTitle
virtual std::string_view getTitle() const
Get the title to be used when rendering on OLED, both as a deluge::gui::menu_item::Submenu and when d...
Definition
menu_item.h:231
MenuItem::title
deluge::l10n::String title
Can get overridden by getTitle(). Actual max num chars for OLED display is 14.
Definition
menu_item.h:222
deluge::gui::menu_item::submenu::ModFxHorizontalMenu
Definition
mod_fx.h:24
deluge::gui::menu_item::submenu::ModFxHorizontalMenu::getTitle
std::string_view getTitle() const override
Get the title to be used when rendering on OLED, both as a deluge::gui::menu_item::Submenu and when d...
Definition
mod_fx.h:28