-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 508cfcf
Showing
6 changed files
with
668 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,68 @@ | ||
<!doctype html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
|
||
<!--Set visual viewport size for mobile devices to the device size, | ||
witch results in a scale of 1 and a 1:1 mapping between CSS pixels | ||
and Qt device independent pixels. --> | ||
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=0"/> | ||
|
||
<title>ossia score</title> | ||
<style> | ||
/* Make the html body cover the entire (visual) viewport with no scroll bars. */ | ||
html, body { padding: 0; margin: 0; overflow: hidden; height: 100% } | ||
#screen { width: 100%; height: 100%; } | ||
</style> | ||
</head> | ||
<body onload="init()"> | ||
<script src="coi-serviceworker.min.js"></script> | ||
<figure style="overflow:visible;" id="qtspinner"> | ||
<center style="margin-top:1.5em; line-height:150%"> | ||
<strong>ossia score</strong> | ||
<div id="qtstatus"></div> | ||
<noscript>JavaScript is disabled. Please enable JavaScript to use this application.</noscript> | ||
</center> | ||
</figure> | ||
<div id="screen"></div> | ||
|
||
<script type='text/javascript'> | ||
let qtLoader = undefined; | ||
function init() { | ||
var spinner = document.querySelector('#qtspinner'); | ||
var canvas = document.querySelector('#screen'); | ||
var status = document.querySelector('#qtstatus') | ||
|
||
qtLoader = new QtLoader({ | ||
canvasElements : [canvas], | ||
showLoader: function(loaderStatus) { | ||
spinner.style.display = 'block'; | ||
canvas.style.display = 'none'; | ||
status.innerHTML = loaderStatus + "..."; | ||
}, | ||
showError: function(errorText) { | ||
status.innerHTML = errorText; | ||
spinner.style.display = 'block'; | ||
canvas.style.display = 'none'; | ||
}, | ||
showExit: function() { | ||
status.innerHTML = "Application exit"; | ||
if (qtLoader.exitCode !== undefined) | ||
status.innerHTML += " with code " + qtLoader.exitCode; | ||
if (qtLoader.exitText !== undefined) | ||
status.innerHTML += " (" + qtLoader.exitText + ")"; | ||
spinner.style.display = 'block'; | ||
canvas.style.display = 'none'; | ||
}, | ||
showCanvas: function() { | ||
spinner.style.display = 'none'; | ||
canvas.style.display = 'block'; | ||
}, | ||
}); | ||
qtLoader.loadEmscriptenModule("ossia-score"); | ||
} | ||
</script> | ||
<script type="text/javascript" src="qtloader.js"></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.