{"id":40181875,"url":"https://github.com/noartem/elementor","last_synced_at":"2026-01-19T18:39:55.671Z","repository":{"id":40000945,"uuid":"481274010","full_name":"noartem/elementor","owner":"noartem","description":"Skia based GUI library","archived":false,"fork":false,"pushed_at":"2024-06-11T06:18:47.000Z","size":1485,"stargazers_count":8,"open_issues_count":17,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-06-11T07:35:18.443Z","etag":null,"topics":["cpp","glfw3","gui","napi","nodejs","skia"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/noartem.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-13T15:35:15.000Z","updated_at":"2024-06-11T07:35:21.419Z","dependencies_parsed_at":"2024-01-28T14:27:39.816Z","dependency_job_id":"461b54b1-c2ff-48ef-9f65-2a8b3da47e3a","html_url":"https://github.com/noartem/elementor","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/noartem/elementor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noartem%2Felementor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noartem%2Felementor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noartem%2Felementor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noartem%2Felementor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/noartem","download_url":"https://codeload.github.com/noartem/elementor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noartem%2Felementor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28580369,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T18:29:59.827Z","status":"ssl_error","status_checked_at":"2026-01-19T18:29:40.878Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","glfw3","gui","napi","nodejs","skia"],"created_at":"2026-01-19T18:39:54.921Z","updated_at":"2026-01-19T18:39:55.665Z","avatar_url":"https://github.com/noartem.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Elementor\n\n## How to get started\n\n1. Install [XMake](https://xmake.io)\n\n2. Clone the project\n\n    ```bash\n    git clone https://github.com/noartem/elementor.git\n    cd elementor\n    ```\n\n3. Fetch project dependencies\n\n    ```bash\n    xmake\n    ```\n\n4. *Optional* Set build mode (release/debug/check)\n\n    ```bash\n    xmake f -m release -y\n    ```\n\n5. Build the project for your system\n\n    ```bash\n    xmake build\n    ```\n   \n6. Generate CMake config file\n\n   ```bash\n   xmake project -k cmakelists\n   ```\n\n7. Check out examples\n\n    ```bash\n    xmake run example-todo\n    ```\n\n## Project structure\n\n`src/library` - contains library code   \n`src/library/*.(cpp|h)` - library core   \n`src/library/platforms` - standard primitive elements library, most of them can be replaced by self-made elements   \n`src/platforms` - OS interaction layer   \n`src/platforms/gl` - OS interaction layer made with GLFW   \n`src/components` - ready-to-use UI components made by standard elements composition, also can be replaced by user\nelements   \n`src/examples` - example applications used to verify that the library works correctly   \n`tests` - various library tests   \n`tests/screenshots` - standard examples screenshots used for testing   \n`tests/screenshots_new` - newly generated examples screenshots   \n`tests/screenshots_diff` - difference between standard and new screenshots\n\n## Run Tests\n\nRun screenshot tests. Screenshots are created by `tests/make_screenshots.cpp` and\ncompared by `tests/compare_screenshots.py`\n\n```bash\npython test.py\n```\n\n## Examples\n\nElementor provides a list of various examples. They are also used for performing screenshot tests.\n\n### 1. Basic\n\n- Rich text rendering\n- FPS counter\n- Buttons and text field\n- Hover and focus support\n    - Click on a button and then press Tab - your focus will be moved to the next focusable element (button, text, ...)\n\n```bash\nxmake run example-basic\n```\n\n\u003cdiv\u003e\n    \u003cimg src=\"tests/screenshots/basic.png\" height=\"256px\" alt=\"Basic example screnshot\"\u003e\n\u003c/div\u003e\n\n### 2. Button\n\n- Clickable buttons of different types\n\n```bash\nxmake run example-button\n```\n\n\u003cdiv\u003e\n    \u003cimg src=\"tests/screenshots/button.png\" height=\"256px\" alt=\"Button example screnshot\"\u003e\n\u003c/div\u003e\n\n### 3. Counter\n\n- Clickable button\n- Updating state\n\n```bash\nxmake run example-counter\n```\n\n\u003cdiv\u003e\n    \u003cimg src=\"tests/screenshots/counter.png\" height=\"256px\"  alt=\"Counter example screnshot\"\u003e\n\u003c/div\u003e\n\n### 4. CRUD (readonly)\n\n- Template for a generic CRUD application\n- For now, read-only\n\n```bash\nxmake run example-crud\n```\n\n\u003cdiv\u003e\n    \u003cimg src=\"tests/screenshots/crud.png\" height=\"256px\" alt=\"CRUD example screnshot\"\u003e\n\u003c/div\u003e\n\n### 5. Flexbox Layout\n\n- Layout\n- Nested layout\n\n```bash\nxmake run example-flex\n```\n\n\u003cdiv\u003e\n    \u003cimg src=\"tests/screenshots/flex.png\" width=\"512px\" alt=\"Flex layout example screnshot\"\u003e\n\u003c/div\u003e\n\n### 6. Temperature Converter\n\n- Text input\n- State\n- Transforming state\n\n```bash\nxmake run example-tempconv\n```\n\n\u003cdiv\u003e\n    \u003cimg src=\"tests/screenshots/tempconv.png\" width=\"512px\" alt=\"Temperature converter example screnshot\"\u003e\n\u003c/div\u003e\n\n### 7. Text\n\n- Rich text rendering\n\n```bash\nxmake run example-text\n```\n\n\u003cdiv\u003e\n    \u003cimg src=\"tests/screenshots/text.png\" height=\"256px\" alt=\"Text example screnshot\"\u003e\n\u003c/div\u003e\n\n### 8. TODO\n\n- Complex demo application with all previous features combined\n- Sync with markdown file `examples/assets/todo.md`\n\n```bash\nxmake run example-todo\n```\n\n\u003cdiv\u003e\n    \u003cimg src=\"tests/screenshots/todo.png\" height=\"384px\" alt=\"TODO example screnshot\"\u003e\n\u003c/div\u003e\n\n### All combined\n\nThere is also an example application providing all of the previous examples in one window.\n\n```bash\nxmake run examples\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoartem%2Felementor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnoartem%2Felementor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoartem%2Felementor/lists"}