From cd369b39d5ad70fe20635f226c6f4256372ba4cc Mon Sep 17 00:00:00 2001
From: Able <abl3theabove@gmail.com>
Date: Thu, 12 Sep 2024 15:34:28 -0500
Subject: [PATCH] more changes to make konii so anger

---
 sysdata/ui_lisp/doc_example.ul              |  4 ---
 sysdata/ui_lisp/documentation.ul            |  2 --
 sysdata/ui_lisp/sample.uil                  | 27 +++++++++++++++++++++
 sysdata/ui_lisp/ui_lisp.ul                  |  7 ------
 sysdata/ui_lisp/windowing_system_ui_lang.md |  5 ----
 5 files changed, 27 insertions(+), 18 deletions(-)
 delete mode 100644 sysdata/ui_lisp/doc_example.ul
 delete mode 100644 sysdata/ui_lisp/documentation.ul
 create mode 100644 sysdata/ui_lisp/sample.uil
 delete mode 100644 sysdata/ui_lisp/ui_lisp.ul
 delete mode 100644 sysdata/ui_lisp/windowing_system_ui_lang.md

diff --git a/sysdata/ui_lisp/doc_example.ul b/sysdata/ui_lisp/doc_example.ul
deleted file mode 100644
index 6ebdae0..0000000
--- a/sysdata/ui_lisp/doc_example.ul
+++ /dev/null
@@ -1,4 +0,0 @@
-/// a b c
-void main(){}
-
-// Generated documentation below
diff --git a/sysdata/ui_lisp/documentation.ul b/sysdata/ui_lisp/documentation.ul
deleted file mode 100644
index fbce285..0000000
--- a/sysdata/ui_lisp/documentation.ul
+++ /dev/null
@@ -1,2 +0,0 @@
-(label "Documentation")
-(label "")
diff --git a/sysdata/ui_lisp/sample.uil b/sysdata/ui_lisp/sample.uil
new file mode 100644
index 0000000..c6d2ff0
--- /dev/null
+++ b/sysdata/ui_lisp/sample.uil
@@ -0,0 +1,27 @@
+/*
+the following snippet lays out the following.
+10 11
+*/
+(vertical
+    (label "10")
+    (label "11"))
+
+
+/*
+Each button must have an ID. This ID must be unique per button or the buttons with the same 
+ID will be treated as the same button.
+*/
+(button id:8)
+
+
+/*
+This unique ID rull applies to any interactable element.
+*/
+(label interactive:true id:9)
+
+
+/*
+The ID is used to send a message to the buffer of the process that handles UI.
+The following code will handle displaying text locally and also sending the delta change to the buffer.
+*/
+(line-edit id:10)
\ No newline at end of file
diff --git a/sysdata/ui_lisp/ui_lisp.ul b/sysdata/ui_lisp/ui_lisp.ul
deleted file mode 100644
index bbff2cd..0000000
--- a/sysdata/ui_lisp/ui_lisp.ul
+++ /dev/null
@@ -1,7 +0,0 @@
-(vertical
-  (horizontal
-    (label "Function main")
-    (button "goto declaration" (on_click "src/main.c:2")))
-  (label "takes void")
-  (label "returns void")
-  (label "a b c"))
\ No newline at end of file
diff --git a/sysdata/ui_lisp/windowing_system_ui_lang.md b/sysdata/ui_lisp/windowing_system_ui_lang.md
deleted file mode 100644
index 8c9bf9b..0000000
--- a/sysdata/ui_lisp/windowing_system_ui_lang.md
+++ /dev/null
@@ -1,5 +0,0 @@
-- container
-    - horizontal 
-    - vertical
-- framebuffer
-- 
\ No newline at end of file