-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
352 lines (342 loc) · 14.2 KB
/
Copy pathindex.html
File metadata and controls
352 lines (342 loc) · 14.2 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
<!doctype html>
<html lang="en" class="scroll-smooth dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GooeyBuilder - Visual GUI Builder for Gooey</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<style>
:root {
--primary: #8ab4f8;
--primary-dark: #669df6;
--background: #202124;
--surface: #292a2d;
--border: #3c4043;
--text: #e8eaed;
--text-secondary: #9aa0a6;
--code-bg: #2d2e30;
--hover: #35363a;
}
body {
background-color: var(--background);
color: var(--text);
font-family: "JetBrains Mono", monospace;
transition: 0.3s;
}
.container-narrow {
max-width: 1200px;
margin: 0 auto;
}
.code-block {
background-color: var(--code-bg);
border: 1px solid var(--border);
border-radius: 10px;
font-size: 14px;
}
.image-placeholder {
background: linear-gradient(
45deg,
var(--surface) 25%,
var(--hover) 25%,
var(--hover) 50%,
var(--surface) 50%,
var(--surface) 75%,
var(--hover) 75%
);
background-size: 40px 40px;
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-secondary);
}
.feature-section {
width: 100%;
padding: 5rem 1rem;
}
.feature-section:nth-child(even) {
background-color: var(--hover);
}
</style>
</head>
<body>
<div
class="text-center text-sm py-2 border-b"
style="
background-color: var(--hover);
border-color: var(--border);
color: var(--text-secondary);
"
>
GooeyBuilder is an early preview. APIs, UI, and features are still
evolving.
</div>
<nav
class="sticky top-0 z-50 border-b"
style="
background-color: var(--surface);
border-color: var(--border);
"
>
<div
class="container-narrow px-4 py-4 flex justify-between items-center"
>
<div>
<h1 class="text-xl font-bold"><u>G</u>Builder</h1>
<p class="text-xs" style="color: var(--text-secondary)">
Visual Designer for Gooey
</p>
</div>
<div class="hidden md:flex space-x-8">
<a href="#features">Features</a>
<a href="#feature-overview">Overview</a>
<a href="#comparison">Capabilities</a>
<a
href="https://github.com/BinaryInkTN/GooeyBuilder"
target="_blank"
>GitHub</a
>
</div>
</div>
</nav>
<section class="py-16 md:py-24">
<div
class="container-narrow px-4 text-center max-w-3xl mx-auto mb-12"
>
<h1 class="text-4xl md:text-5xl font-bold mb-6">
Drag & Drop Designer
<span class="block" style="color: var(--primary)"
>for Gooey</span
>
</h1>
<p class="text-lg mb-3" style="color: var(--text-secondary)">
A lightweight, cross-platform visual GUI builder for the
Gooey C GUI framework.
</p>
<p class="text-sm mb-8" style="color: var(--text-secondary)">
Early preview. Core widgets, layout system, and code
generation are under active development.
</p>
<div class="flex gap-2 justify-center items-center">
<div
class="code-block max-w-full overflow-x-auto whitespace-nowrap px-4 py-3 text-left relative overflow-x-hidden"
>
<code id="installCmd"
>curl
https://raw.githubusercontent.com/BinaryInkTN/GooeyBuilder/refs/heads/main/installer.py
-o installer.py && python3 installer.py</code
>
</div>
<button
onclick="copyCmd()"
class="material-icons px-2 py-2 bg-[var(--surface)] border rounded text-[var(--text)] hover:bg-[var(--hover)]"
style="border-color: var(--border)"
>
content_copy
</button>
</div>
</div>
<div class="container-narrow px-4">
<img src="image.png" alt="GooeyBuilder Preview" />
</div>
</section>
<!-- Feature Overview Heading -->
<section id="feature-overview" class="py-16 text-center">
<div class="container-narrow px-4">
<h2 class="text-3xl font-bold mb-4">Feature Overview</h2>
<p
class="max-w-2xl mx-auto"
style="color: var(--text-secondary)"
>
Explore the powerful features that make GooeyBuilder the
ideal tool for building Gooey interfaces
</p>
</div>
</section>
<!-- Feature 1 - Full Width -->
<section class="feature-section">
<div class="container-narrow px-4">
<div class="flex flex-col lg:flex-row gap-8 items-center">
<div class="lg:w-2/3">
<h3 class="font-semibold text-2xl mb-4">
Visual Drag & Drop Interface
</h3>
<p
class="mb-4 text-lg"
style="color: var(--text-secondary)"
>
Build complex UIs by simply dragging widgets from
the palette and dropping them onto the canvas.
Intuitive controls for positioning and resizing make
UI design effortless.
</p>
</div>
<div
class="lg:w-2/3 image-placeholder w-full h-64 lg:h-80 rounded-xl"
>
<img src="designer.png" alt="Visual Designer" />
</div>
</div>
</div>
</section>
<!-- Feature 2 - Full Width -->
<section class="feature-section" style="background-color: var(--hover)">
<div class="container-narrow px-4">
<div
class="flex flex-col lg:flex-row-reverse gap-8 items-center"
>
<div class="lg:w-2/3">
<h3 class="font-semibold text-2xl mb-4">
Live Property Inspector
</h3>
<p
class="mb-4 text-lg"
style="color: var(--text-secondary)"
>
Modify widget properties in real-time with a
comprehensive inspector panel. Changes are
immediately visible on the canvas, providing instant
feedback.
</p>
</div>
<div
class="lg:w-2/3 image-placeholder w-full h-64 lg:h-80 rounded-xl"
>
<img src="properties.png" alt="Property Editor" />
</div>
</div>
</div>
</section>
<!-- Feature 3 - Full Width -->
<section class="feature-section">
<div class="container-narrow px-4">
<div class="flex flex-col lg:flex-row gap-8 items-center">
<div class="lg:w-2/3">
<h3 class="font-semibold text-2xl mb-4">
Intellisense
</h3>
<p
class="mb-4 text-lg"
style="color: var(--text-secondary)"
>
Intellisense for GooeyC, providing code completion
and error checking for Gooey C code.
</p>
</div>
<div
class="lg:w-2/3 image-placeholder w-full h-64 lg:h-80 rounded-xl"
>
<img src="intellisense.png" alt="Intellisense" />
</div>
</div>
</div>
</section>
<!-- Feature 4 - Full Width -->
<section class="feature-section" style="background-color: var(--hover)">
<div class="container-narrow px-4">
<div
class="flex flex-col lg:flex-row-reverse gap-8 items-center"
>
<div class="lg:w-2/3">
<h3 class="font-semibold text-2xl mb-4">
Integrated Debug Console
</h3>
<p
class="mb-4 text-lg"
style="color: var(--text-secondary)"
>
Built-in console for real-time debugging, output
inspection, and performance monitoring during UI
development. Track events and catch issues early.
</p>
</div>
<div
class="lg:w-2/3 image-placeholder w-full h-64 lg:h-80 rounded-xl"
>
<img src="console.png" alt="Debug Console" />
</div>
</div>
</div>
</section>
<section id="comparison" class="py-24">
<div class="container-narrow px-4 overflow-x-auto">
<table class="w-full border-collapse">
<thead>
<tr>
<th class="p-4 border-b text-left">Capability</th>
<th
class="p-4 border-b text-left bg-[rgba(26,115,232,0.08)]"
>
GooeyBuilder
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="p-4 border-b">Widget System</td>
<td class="p-4 border-b bg-[rgba(26,115,232,0.08)]">
Buttons, Labels, Images, Containers, Tabs,
Sliders, Progress Bars
</td>
</tr>
<tr>
<td class="p-4 border-b">Property Editing</td>
<td class="p-4 border-b bg-[rgba(26,115,232,0.08)]">
Intuitive inspector for widget attributes
</td>
</tr>
<tr>
<td class="p-4 border-b">Event Binding</td>
<td class="p-4 border-b bg-[rgba(26,115,232,0.08)]">
Callback hooks generated in C
</td>
</tr>
<tr>
<td class="p-4 border-b">Code Generation</td>
<td class="p-4 border-b bg-[rgba(26,115,232,0.08)]">
Clean, maintainable Gooey-based C code
</td>
</tr>
<tr>
<td class="p-4 border-b">Platforms</td>
<td class="p-4 border-b bg-[rgba(26,115,232,0.08)]">
Desktop, embedded Linux, microcontrollers
</td>
</tr>
<tr>
<td class="p-4 border-b">Footprint</td>
<td class="p-4 border-b bg-[rgba(26,115,232,0.08)]">
Lightweight, minimal runtime dependencies
</td>
</tr>
</tbody>
</table>
</div>
</section>
<footer
class="py-12 border-t text-center text-sm"
style="border-color: var(--border)"
>
© 2025 GooeyBuilder [Built with ❤️ for developers]
</footer>
<script>
function copyCmd() {
const cmd = document
.getElementById("installCmd")
.innerText.trim();
navigator.clipboard.writeText(cmd);
alert("Command copied to clipboard!");
}
</script>
</body>
</html>