-
Notifications
You must be signed in to change notification settings - Fork 1
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
Erich Izdepski
committed
Sep 8, 2021
1 parent
e055717
commit 1fbc3dd
Showing
4 changed files
with
495 additions
and
495 deletions.
There are no files selected for viewing
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,92 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous"> | ||
<script src="../renderer/mirage.js"></script> | ||
<title>Wavsyn - Tools for the Ensoniq Mirage</title> | ||
</head> | ||
|
||
<body> | ||
<main role="main" class="container-xl"> | ||
Mirage Audio Processor and Disk Image Creator | ||
<table id="t" class="table table-sm"> | ||
<thead class="thead-dark"> | ||
<tr> | ||
<th>Steps</th> | ||
<th>Choose Inputs</th> | ||
<th>Current values</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>Choose the Source Folder for the process</td> | ||
<td><input type = "button" class="btn btn-primary" onclick = "selectSource()" value = "Source"></td> | ||
<td><input id="currentSource" type = "textfield" readonly size = "75" value = ""></td> | ||
</tr> | ||
<tr> | ||
<td>Choose a process to run</td> | ||
<td><select name="functions" id="functions" class="custom-select" onchange="showHelp()"> | ||
<!-- the list of options is generated dynamically by preload.js, based on the function names in tools.js--> | ||
</select></td> | ||
<td></td> | ||
</tr> | ||
<tr style="height: 80px;"> | ||
<!-- this has default value. better to auto initialize in preload--> | ||
<td id="functionHelp" colspan="3" bgcolor="#FFFF00">Convert 32 bit float files to 8 bit</td> | ||
</tr> | ||
<tr> | ||
<td>Choose the Destination Folder for the process</td> | ||
<td><input type = "button" class="btn btn-primary" onclick = "selectDestination()" value = "Destination"></td> | ||
<td><input id="currentDestination" type = "textfield" readonly size = "75" value = ""></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
<div> | ||
<table id="outputs" class="table table-sm"> | ||
<colgroup> | ||
<col style="width:50%"> | ||
<col style="width:50%"> | ||
</colgroup> | ||
<thead class="thead-dark"> | ||
<tr> | ||
<th>Processing</th> | ||
<!--<th>Run a Workflow</th> --> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td> | ||
<input type = "button" onclick = "execute()" class="btn btn-success" value = "Run Process"> | ||
</td> | ||
<!-- | ||
<td> | ||
<input type = "button" class="btn btn-secondary" onclick = "addWorkflowStep()" value = "Add Step"> | ||
| ||
<input type = "button" class="btn btn-primary" onclick = "runWorkflow()" value = "Run Workflow"> | ||
</td> | ||
--> | ||
</tr> | ||
<tr> | ||
<td><textarea id="logs" name="logs" rows = "15" cols="150" readonly>logs</textarea></td> | ||
<!-- | ||
<td>put workflow stuff here</td> | ||
--> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</main> | ||
<footer class="blog-footer"> | ||
<div class="container text-center"> | ||
<small class="d-block mb-3 text-muted">Wavsyn © 2021 by Erich Izdepski</small> | ||
</div> | ||
</footer> | ||
<!-- internal variable set by preload.js--> | ||
<input id="helpJSON" hidden="true" type = "textfield" value = ""> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.