diff --git a/README.md b/README.md index c05e7d6..d886aca 100644 --- a/README.md +++ b/README.md @@ -230,6 +230,7 @@ Here is a very simple sample CLOG app (from Tutorial 1): Other samples of CLOG on the web: +- [Moldable Inspectors](https://codeberg.org/khinsen/clog-moldable-inspector) - [CLOG + cl-collider](https://github.com/byulparan/clog-collider-experience) - [CLOG on iOS and Android](https://www.reddit.com/r/lisp/comments/tl46of/would_it_be_cool_to_run_a_clog_app_on_mobile_you/) - [Learn CLOG Dashboard](https://gist.github.com/mmontone/3a5a8a57675750e99ffb7fa64f40bc39#file-clog-learn-lisp) diff --git a/doc/clog-manual.html b/doc/clog-manual.html index ae1c0e4..aef9958 100644 --- a/doc/clog-manual.html +++ b/doc/clog-manual.html @@ -538,6 +538,14 @@ unit added unless value is empty string or nil.
CLOG objects (clog-obj) encapsulate the connection between
lisp and an HTML DOM element.
[generic-function] PARENT CLOG-OBJ
+ +Returns the clog-obj of the obj that was used as creation +parent if was set or nil. This is not per se the parent in the DOM.
CLOG-Obj - General Properties
@@ -4259,7 +4267,8 @@ virtual keyboards.[generic-function] CREATE-SELECT CLOG-OBJ &KEY NAME MULTIPLE LABEL STYLE HIDDEN CLASS HTML-ID AUTO-PLACE
-Create a new clog-select as child of CLOG-OBJ.
Create a new clog-select as child of CLOG-OBJ. Use SIZE and
+set to greater than 1 for select to act as a listbox.
[function] CLOG-GUI-INITIALIZE CLOG-BODY &KEY (BODY-LEFT-OFFSET 0) (BODY-RIGHT-OFFSET 0) (USE-CLOG-DEBUGGER NIL) (PARENT-DESKTOP-OBJ NIL) (W3-CSS-URL "/css/w3.css") (JQUERY-UI-CSS "/css/jquery-ui.css") (JQUERY-UI "/js/jquery-ui.js")
[function] CLOG-GUI-INITIALIZE CLOG-BODY &KEY (BODY-LEFT-OFFSET 0) (BODY-RIGHT-OFFSET 0) (USE-CLOG-DEBUGGER NIL) (STANDARD-OUTPUT NIL) (PARENT-DESKTOP-OBJ NIL) (W3-CSS-URL "/css/w3.css") (JQUERY-UI-CSS "/css/jquery-ui.css") (JQUERY-UI "/js/jquery-ui.js")
Initializes clog-gui and installs a clog-gui object on connection.
If W3-CSS-URL has not been loaded before is installed unless is nil.
@@ -6911,7 +6920,7 @@ alert-dialog blocks till time-out reached or OK clicked.
[function] INPUT-DIALOG OBJ CONTENT ON-INPUT &KEY (MODAL T) (TIME-OUT NIL) (TITLE "Input") (SIZE 20) (ROWS 1) (DEFAULT-VALUE "") (LEFT NIL) (TOP NIL) (WIDTH 300) (HEIGHT 200) (CLIENT-MOVEMENT NIL) (HTML-ID NIL)
[function] INPUT-DIALOG OBJ CONTENT ON-INPUT &KEY (MODAL T) (TIME-OUT NIL) (TITLE "Input") (SIZE 20) (ROWS 1) (PLACEHOLDER-VALUE "") (DEFAULT-VALUE "") (LEFT NIL) (TOP NIL) (WIDTH 300) (HEIGHT 200) (CLIENT-MOVEMENT NIL) (HTML-ID NIL)
Create an input dialog box with CONTENT centered and an input box.
Calls on-input with input box contents or nil if canceled. If time-out
@@ -6972,9 +6981,9 @@ If time-out return result of on-file-name, cancels dialog if time runs out.
[macro] WITH-CLOG-DEBUGGER (CLOG-OBJ &KEY TITLE) &BODY BODY
+[macro] WITH-CLOG-DEBUGGER (CLOG-OBJ &KEY TITLE STANDARD-OUTPUT) &BODY BODY
-body uses a clog-gui based debugged instead of the console
body uses a clog-gui based debugger instead of the console