mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-16 21:03:35 +00:00
Begin Custom Controls and Editable Cue Info
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
namespace qController
|
||||
{
|
||||
public class QCommand
|
||||
{
|
||||
public string osc;
|
||||
public string text;
|
||||
public string type;
|
||||
|
||||
public QCommand(string display, string cmd, string command_type)
|
||||
{
|
||||
text = display;
|
||||
osc = cmd;
|
||||
type = command_type;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
namespace qController
|
||||
{
|
||||
public static class QCommands
|
||||
{
|
||||
public static QCommand GO = new QCommand("GO", "/go","WORKSPACE");
|
||||
public static QCommand PANIC = new QCommand("Panic", "/panic","WORKSPACE");
|
||||
public static QCommand PAUSE = new QCommand("Pause", "/pause","WORKSPACE");
|
||||
public static QCommand PREVIEW = new QCommand("Preview", "/preview","WORKSPACE");
|
||||
public static QCommand RESUME = new QCommand("Resume", "/resume","WORKSPACE");
|
||||
public static QCommand PREVIOUS = new QCommand("Previous","/select/previous","WORKSPACE");
|
||||
public static QCommand NEXT = new QCommand("Next", "/select/next","WORKSPACE");
|
||||
public static QCommand RESET = new QCommand("Reset","/reset","WORKSPACE");
|
||||
public static QCommand STOP = new QCommand("Stop","/stop","WORKSPACE");
|
||||
public static QCommand HARDSTOP = new QCommand("Hard Stop", "/hardStop","WORKSPACE");
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user