-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (130 loc) · 4.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html spellcheck="false" lang="pt-BR">
<head>
<meta charset="utf-8" />
<title>%VITE_META_TITLE%</title>
<link rel="stylesheet" href="./src/css/index.css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/ico" />
<!-- Tags SEO para a Engine do Google -->
<meta name="description" content="%VITE_META_DESCRIPTION%" />
<meta name="keywords" content="%VITE_META_TAGS%" />
<meta name="author" content="Ayres Monteiro" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index, follow" />
<!-- Tags SEO para a Engine do Facebook -->
<meta property="og:url" content="https://computadorsimplificado.online" />
<meta property="og:type" content="website" />
<meta property="og:title" content="%VITE_META_TITLE%" />
<meta property="og:description" content="%VITE_META_DESCRIPTION%" />
<meta
property="og:image"
content="https://computadorsimplificado.online/og_image.png"
/>
</head>
<body>
<div class="logical-container">
<div class="data" id="data">
<div class="data-label">
<h4>
Insira os valores à serem lidos durante a execução do programa.
</h4>
<button id="close-data-button">Salvar</button>
</div>
<h5>
Separe os valores usando <strong>VÍRGULA</strong> (você pode incluir
ESPAÇO e ENTER, mas eles não separam números).
</h5>
<textarea id="data-values"></textarea>
</div>
<div id="commands-list-tab">
<div class="commands-list">
<div class="command-list-wrapper" id="commands-list-sidebar">
</div>
<button id="close-commands-list-button">Fechar</button>
</div>
<div class="command-info" id="commands-info-container"> </div>
</div>
<div class="console-container" id="console-container">
<h4>Console:</h4>
<div id="printed-text"></div>
</div>
<div class="wrapper" id="wrapper">
<div class="title-wrapper">
<div class="wrapper-header">
<h1>
GUI de Computador Simplificado
<br />
</h1>
<span>|</span>
<div class="theme-selector">
<label for="theme-selector">Tema:</label>
<select id="theme-selector">
</select>
</div>
</div>
<p>
Este é um projeto open-source. Sinta-se a vontade para
<a
target="_blank"
href="https://github.com/AyresMonteiro/gui-computador-simplificado"
>contribuir</a
>.
</p>
</div>
<div class="slot-container">
<div id="generated-slots"></div>
<div class="slot-bottom-wrapper">
<div class="slots-controller">
<div class="controller-line">
Escaninhos:
<input
title="Número de escaninhos disponíveis. Caso o número exceda 16, role o painel para baixo."
id="slots-input"
type="text"
value="16"
/>
</div>
<div class="controller-line">
Velocidade:
<input
title="Valores disponíveis para unidade de tempo: milissegundos (ms), segundos (s) e minutos (m)."
id="speed-input"
type="text"
value="0.5s"
/>
</div>
</div>
<div class="docs-buttons">
<a
href="http://algol.dcc.ufla.br/~monserrat/icc/Computador_simplificado.html"
target="_blank"
>
<button id="article-reference-button">Material de Apoio</button>
</a>
<button id="open-commands-list-button">Lista de Comandos</button>
</div>
<button id="open-data-button">Carregar dados de entrada</button>
<div class="file-controller">
<button id="import-button">Importar</button>
<button id="export-button">Exportar</button>
</div>
<button id="clear-button">Limpar</button>
<div class="flow-controller">
<button id="run-button">Rodar</button>
<button id="stop-button">Parar</button>
</div>
</div>
</div>
<div class="error-console">
<h4>Erros:</h4>
<div id="errors"></div>
</div>
</div>
</div>
<script src="./src/js/logic.js" type="module"></script>
<script src="./src/js/theme.js" type="module"></script>
</body>
</html>