Start of demo 3 a lisp IDE

This commit is contained in:
David Botton 2021-02-04 22:48:50 -05:00
parent d9ea589211
commit 50da5dbb78
6 changed files with 193 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,46 @@
<!doctype HTML>
<HTML>
<HEAD>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="/js/jquery.min.js" type="text/javascript"></script>
<script>var clog_debug = true;</script>
<script src="/js/boot.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://pagecdn.io/lib/ace/1.4.12/ace.js" type="text/javascript" charset="utf-8"></script>
</HEAD>
<BODY class="w3-teal">
<div class="w3-bar w3-black w3-card-4">
<button id='ide-logo' class="w3-button w3-bar-item">
<img height=22 src="/demo/clogwicon.png"></button>
<div class="w3-dropdown-hover">
<button class="w3-button">File</button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<span id='ide-file-new' class="w3-bar-item w3-button">New</span>
<span class="w3-bar-item w3-button">Open...</span>
<span class="w3-bar-item w3-button">Save</span>
<span class="w3-bar-item w3-button">Save as...</span>
</div>
</div>
<div class="w3-dropdown-hover">
<button class="w3-button">Edit</button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<span class="w3-bar-item w3-button">Copy</span>
<span class="w3-bar-item w3-button">Paste</span>
</div>
</div>
<div class="w3-dropdown-hover">
<button class="w3-button">Help</button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<span id="ide-help-about" class="w3-bar-item w3-button">About CLOG Demo 3</span>
</div>
</div>
<span class="w3-bar-item w3-right" onClick="documentElement.requestFullscreen()"></span>
</div>
</BODY>
</HTML>