Mark van Renswoude
ff1e1ca74c
Implemented orchestrator Implemented mock device Implemented serial device Implemented volume action Removed old implementation
25 lines
958 B
C#
25 lines
958 B
C#
using System;
|
|
using System.Windows.Controls;
|
|
|
|
namespace MassiveKnob.Plugin
|
|
{
|
|
/// <summary>
|
|
/// Base interface for actions assigned to a knob or button. Implement one of the descendant
|
|
/// interfaces to provide input or output.
|
|
/// </summary>
|
|
public interface IMassiveKnobActionInstance : IDisposable
|
|
{
|
|
/// <summary>
|
|
/// Called right after this instance is created.
|
|
/// </summary>
|
|
/// <param name="context">Provides an interface to the Massive Knob settings and device. Can be stored until the action instance is disposed.</param>
|
|
void Initialize(IMassiveKnobActionContext context);
|
|
|
|
/// <summary>
|
|
/// Called when an action should display it's settings. Assume the width is variable, height is
|
|
/// determined by the UserControl. Return null to indicate there are no settings for this action.
|
|
/// </summary>
|
|
UserControl CreateSettingsControl();
|
|
}
|
|
}
|