Deluge Firmware 1.3.0
Build date: 2025.06.05
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
23namespace deluge::gui::menu_item::submenu {
24class ModFxHorizontalMenu final : public HorizontalMenu {
25public:
26 using HorizontalMenu::HorizontalMenu;
27
28 [[nodiscard]] std::string_view getTitle() const override {
29 if (renderingStyle() == HorizontalMenu::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 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 // Sorry, a bit of hacky casts here
40 const auto* modFxTypeMenuItem = static_cast<mod_fx::Type*>(paging.pages[0].items[0]);
41 const auto modFxTypeMenuItemValue = const_cast<mod_fx::Type*>(modFxTypeMenuItem)->getValue();
42 return modfx::getModNames()[modFxTypeMenuItemValue];
43 }
44};
45} // namespace deluge::gui::menu_item::submenu
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:220
deluge::l10n::String title
Can get overridden by getTitle(). Actual max num chars for OLED display is 14.
Definition menu_item.h:211
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