Skip to content
Snippets Groups Projects
Commit fb21664f authored by Tomáš Bohdálek's avatar Tomáš Bohdálek Committed by Pavel Grunt
Browse files

Add checkbox to toggle debug console

This allows show or hide debug console under spice screen.
parent 556ed82a
No related branches found
No related tags found
No related merge requests found
...@@ -39,8 +39,20 @@ function resize_helper(sc) ...@@ -39,8 +39,20 @@ function resize_helper(sc)
at the bottom, and use the position of the message window at the bottom, and use the position of the message window
to figure out how to resize */ to figure out how to resize */
/* Show both div elements - spice-area and message-div */ var h = window.innerHeight - 20;
var h = window.innerHeight - m.offsetHeight - m.clientHeight - 20;
/* Screen height based on debug console visibility */
if (window.getComputedStyle(m).getPropertyValue("display") == 'none')
{
/* Get console height from spice.css .spice-message */
var mh = parseInt(window.getComputedStyle(m).getPropertyValue("height"), 10);
h = h - mh;
}
else
{
/* Show both div elements - spice-area and message-div */
h = h - m.offsetHeight - m.clientHeight;
}
/* Xorg requires height be a multiple of 8; round up */ /* Xorg requires height be a multiple of 8; round up */
......
...@@ -143,6 +143,23 @@ ...@@ -143,6 +143,23 @@
} }
} }
function toggle_console()
{
var checkbox = document.getElementById('show_console');
var m = document.getElementById('message-div');
if (checkbox.checked)
{
m.style.display = 'block';
}
else
{
m.style.display = 'none';
}
window.addEventListener('resize', handle_resize);
resize_helper(sc);
}
/* SPICE port event listeners /* SPICE port event listeners
window.addEventListener('spice-port-data', function(event) { window.addEventListener('spice-port-data', function(event) {
// Here we convert data to text, but really we can obtain binary data also // Here we convert data to text, but really we can obtain binary data also
...@@ -166,6 +183,7 @@ ...@@ -166,6 +183,7 @@
<label for="host">Host:</label> <input type='text' id='host' value='localhost'> <!-- localhost --> <label for="host">Host:</label> <input type='text' id='host' value='localhost'> <!-- localhost -->
<label for="port">Port:</label> <input type='text' id='port' value='5959'> <label for="port">Port:</label> <input type='text' id='port' value='5959'>
<label for="password">Password:</label> <input type='password' id='password' value=''> <label for="password">Password:</label> <input type='password' id='password' value=''>
<label for="show_console">Show console </label><input type="checkbox" id="show_console" value="1" onchange="toggle_console()" checked>
<button id="connectButton" onclick="connect();">Start</button> <button id="connectButton" onclick="connect();">Start</button>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment