-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
70f53e6
commit 878d0c8
Showing
6 changed files
with
42 additions
and
13 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// | ||
// Created by Syl on 17/08/2024. | ||
// | ||
#include "PluginEditor.h" | ||
PluginEditor::PluginEditor(std::uint32_t width, std::uint32_t height) : mostly_harmless::gui::WebviewEditor(width, height) { | ||
} | ||
|
||
void PluginEditor::initialise(mostly_harmless::gui::EditorContext /*context*/) { | ||
} | ||
|
||
void PluginEditor::onParamEvent(mostly_harmless::events::ProcToGuiParamEvent /*event*/) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// | ||
// Created by Syl on 17/08/2024. | ||
// | ||
|
||
#ifndef MOSTLYHARMLESS_PLUGINEDITOR_H | ||
#define MOSTLYHARMLESS_PLUGINEDITOR_H | ||
#include <mostly_harmless/gui/mostlyharmless_WebviewEditor.h> | ||
class PluginEditor : public mostly_harmless::gui::WebviewEditor { | ||
public: | ||
PluginEditor(std::uint32_t width, std::uint32_t height); | ||
void initialise(mostly_harmless::gui::EditorContext context) override; | ||
void onParamEvent(mostly_harmless::events::ProcToGuiParamEvent event) override; | ||
|
||
private: | ||
}; | ||
#endif // MOSTLYHARMLESS_PLUGINEDITOR_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters