You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 3, 2023. It is now read-only.
how to define native C++ function to be called from script;
how to use resources embedded as resource.cpp file - generated by bin/packfolder[.exe] utility that compresses folder with HTML/CSS/script files into a static byte array.
include/sciter-x-dom.hpp - sciter::dom::element C++ class pretty much all you need to access DOM tree of the window. That is C++ wrapper of [include/sciter-x-dom.h](plain C DOM API)
include/sciter-x-window.hpp - sciter::window C++ class represents sciter window on all supported platforms. The window class:
include/sciter-x-host-callback.h application (window host) callback interface that handles resource loading and script call methods
include/sciter-x-behavior.h DOM event handler - receiver of DOM events (button clicks, input change events, etc).
Application demos
usciter - demo "browser" for all supported platforms - use it to load samples from /samples/ folder.