Merge branch 'ArthurSonzogni:main' into main

This commit is contained in:
Miko 2025-05-31 01:58:06 -04:00 committed by GitHub
commit bc3657d62a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 27 additions and 0 deletions

View File

@ -1,6 +1,8 @@
@page getting-started Getting Started @page getting-started Getting Started
@tableofcontents @tableofcontents
![title-img](https://nsm09.casimages.com/img/2025/05/30//2505300816063242518595256.jpg)
# Install FTXUI # Install FTXUI
To set up FTXUI in your project, follow the [installation guide](installation.html), which provides instructions for multiple build systems and package managers. To set up FTXUI in your project, follow the [installation guide](installation.html), which provides instructions for multiple build systems and package managers.

View File

@ -25,6 +25,26 @@
DoxygenAwesomeParagraphLink.init() DoxygenAwesomeParagraphLink.init()
DoxygenAwesomeInteractiveToc.init() DoxygenAwesomeInteractiveToc.init()
DoxygenAwesomeTabs.init() DoxygenAwesomeTabs.init()
window.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll(".headertitle").forEach(div => {
// Hide progressively the title.
if (div.textContent != "Getting Started" &&
div.textContent != "Installation" &&
div.textContent != "Modules" &&
true) {
return;
}
div.style.display = "none";
// Show progressively the image.
const img = document.querySelector("img.inline");
img.style.maxHeight = "40vh";
img.style.maxWidth = "100%";
img.style.objectFit = "contain";
});
});
</script> </script>
$treeview $treeview
$search $search

View File

@ -1,6 +1,9 @@
@page installation Installation @page installation Installation
@tableofcontents @tableofcontents
![title-img](https://nsm09.casimages.com/img/2025/05/30//2505300816063242518595255.jpg)
## Overview ## Overview
FTXUI can be integrated into your project using several build systems and package managers. FTXUI can be integrated into your project using several build systems and package managers.

View File

@ -1,5 +1,7 @@
# Modules {#modules} # Modules {#modules}
![title-img](https://nsm09.casimages.com/img/2025/05/30//2505300816063242518595251.jpg)
FTXUI is organized into three modules, each building upon the previous: FTXUI is organized into three modules, each building upon the previous:
1. @subpage module-screen — low-level rendering 1. @subpage module-screen — low-level rendering