Custom selection menu, so we can use async dialogs

Closes #85

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-12-12 11:54:11 +00:00
parent 2de11d4a24
commit df6df767a4
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
3 changed files with 156 additions and 16 deletions

View file

@ -19,6 +19,13 @@
#pragma once
namespace rack
{
namespace ui {
struct Menu;
}
}
namespace patchUtils
{
@ -28,5 +35,6 @@ void loadTemplateDialog();
void revertDialog();
void saveDialog(const std::string& path);
void saveAsDialog();
void appendSelectionContextMenu(rack::ui::Menu* menu);
}