This repository was archived by the owner on Nov 25, 2025. It is now read-only.
forked from JC-Orozco/BlocksIDE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (69 loc) · 3.35 KB
/
index.html
File metadata and controls
75 lines (69 loc) · 3.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ScriptManager 0.71b</title>
<link rel = "stylesheet" href = "./css/global.css">
<link rel = "stylesheet" href = "./css/layout.css">
<link rel = "shortcut icon" href = "public/favicon.png">
<!-- UF, CSS Imports -->
<link rel = "stylesheet" href = "./UF/css/vercengen/ve_dark.css">
<link rel = "stylesheet" href = "./UF/css/vercengen/ve_layout.css">
<link rel = "stylesheet" href = "./UF/css/vercengen/ve_main.css">
<link rel = "stylesheet" href = "./UF/css/vercengen/ve_transparent.css">
<link rel = "stylesheet" href = "./UF/css/vercengen/ve_windows.css">
<link rel = "stylesheet" href = "./css/topbar/toolbar.css">
</head>
<body>
<div id = "topbar" class = "topbar">
<div class = "tab" id = "file-topbar">
<span class = "title"><u>F</u>ile</span>
<div class = "dropdown-menu">
<div class = "dropdown-item" onclick = "window.printNewProjectContextMenu({
is_create_new_project: true, x: 100, y: 200
})">New Project</div>
<div class = "dropdown-item" onclick = "window.printOpenProjectContextMenu();">Open Project</div>
<div class = "dropdown-item" onclick = "window.saveCurrentFile();">Save File (Ctrl + <span>S</span>)</div>
<div class = "dropdown-item" onclick = "window.close();">Exit</div>
</div>
</div>
<div class = "tab" id = "settings-topbar">
<span class = "title">S<u>e</u>ttings</span>
<div class = "dropdown-menu">
<div class = "dropdown-item" onclick = "openSettingsWindow({ default_page: 'settings' })">Default Settings</div>
<!-- Move this to a separate openKeybindsWindow() function later -->
<div class = "dropdown-item" onclick = "openSettingsWindow({ default_page: 'settings' })">Keybindings</div>
</div>
</div>
<div class = "tab" id = "view-topbar">
<span class = "title"><u>V</u>iew</span>
<div class = "dropdown-menu">
<div class = "dropdown-item">Display File Explorer</div>
<div class = "dropdown-item" id = "split-screen-button">Split Screen</div>
<div class = "dropdown-item" onclick = "openSettingsWindow({ default_page: 'view' });">Theme</div>
<hr>
<div class = "dropdown-item" onclick = "printInformationPanel();">Information</div>
</div>
</div>
<div class = "tab disabled" id = "run-topbar">
<span class = "title"><u>R</u>un</span>
</div>
</div>
<div id = "react-blockside" class = "react-blockside">
<div id = "file-explorer" class = "file-explorer"></div>
<iframe src = "./build/index.html"></iframe>
</div>
<div id = "bottombar">
<div id = "file-information"></div>
</div>
<!-- Import UF -->
<script src = "./UF/js/files/file_manager.js" type = "text/javascript"></script>
<!-- Import Scriptly -->
<script type = "text/javascript" src = "./src/js/toolbar.js"></script>
<script type = "text/javascript" src = "./src/js/ui/file_explorer.js"></script>
<script type = "text/javascript" src = "./src/js/ui/ide_information.js"></script>
<script type = "text/javascript" src = "./src/js/ui/settings.js"></script>
<!-- KEEP AT BOTTOM -->
<script type = "text/javascript" src = "./src/js/startup.js"></script>
</body>
</html>