-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 1.95 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<title>GDB App</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="jquery-ui.css">
<link rel="stylesheet" href="bootstrap-3.3.7.min.css">
<script type="text/javascript" src = "jquery-2.0.3.min.js"></script>
<script type="text/javascript" src = "bootstrap-3.3.7.min.js"></script>
<script type="text/javascript" src = "jquery-ui.js"></script>
<script type="text/javascript" src = "interface.js"></script>
<script type="text/javascript" src = "startDebug.js"></script>
</head>
<body>
<div id="loadFile">
<h1>Hi! Welcome to GDB.</h1>
<p>
GDB App gives interface to debug your C programs. You can write your C Program and debug here through GDB.
</p>
<label id="exeFile" class="btn btn-primary btn-file">
Browse <input type="file" style="display: none;">
</label>
<button id="loadExe" class="btn btn-primary">Load Exe</button>
</div>
<div id="main">
<div id="error" class="alert alert-danger">
<a href="#" class="close" data-hide="alert" aria-label="close" onclick="$('#error').hide()">×</a>
<p></p>
</div>
<div id="debugWindow">
<table id="codeWindow">
</table>
</div>
<div id="toolWindow">
<button id="run" class="command btn btn-primary">Run</button>
<button id="step" class="command btn btn-primary">Step</button>
<button id="continue" class="command btn btn-primary">Continue</button>
<button id="evaluate" class="command btn btn-primary" disabled>Evaluate</button>
<button id="next" class="command btn btn-primary">Next</button>
<button id="finish" class="command btn btn-primary">Finish</button>
<button id="quit" class="command btn btn-primary">Quit</button>
</div>
</div>
<div id="evaluateWindow">
<span class='ui-icon ui-icon-circle-close ui-closable-tab'></span>
<input type="text" placeholder="Enter Expression to evaluate" id="expression">
<textarea id="result">
</textarea>
</div>
</body>
</html>