mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-23 23:41:13 +08:00
286 lines
19 KiB
HTML
286 lines
19 KiB
HTML
<!-- HTML header for doxygen 1.9.8-->
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
|
<meta name="generator" content="Doxygen 1.12.0"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<title>FTXUI: Class Members</title>
|
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
|
<script type="text/javascript" src="jquery.js"></script>
|
|
<script type="text/javascript" src="dynsections.js"></script>
|
|
<script type="text/javascript" src="doxygen-awesome-fragment-copy-button.js"></script>
|
|
<script type="text/javascript" src="doxygen-awesome-paragraph-link.js"></script>
|
|
<script type="text/javascript" src="doxygen-awesome-interactive-toc.js"></script>
|
|
<script type="text/javascript" src="doxygen-awesome-tabs.js"></script>
|
|
<script type="module">
|
|
DoxygenAwesomeFragmentCopyButton.init()
|
|
DoxygenAwesomeParagraphLink.init()
|
|
DoxygenAwesomeInteractiveToc.init()
|
|
DoxygenAwesomeTabs.init()
|
|
await new Promise(r => window.addEventListener('DOMContentLoaded', r));
|
|
// Remove title when a img[alt='title-img'] is present.
|
|
// Find an image with the alt "img-title".
|
|
const img = document.querySelector("img[alt='title-img']");
|
|
const header = document.querySelector(".headertitle");
|
|
if (img && header) {
|
|
// Hide the header title progressively.
|
|
header.style.display = "none";
|
|
// Show progressively the image.
|
|
img.style.maxHeight = "40vh";
|
|
img.style.maxWidth = "100%";
|
|
img.style.objectFit = "contain";
|
|
}
|
|
// In the "examples.html" page. Turn every link with text
|
|
// "examples/<...>
|
|
//
|
|
// Add a "demo" link toward.
|
|
// https://arthursonzogni.github.io/FTXUI/examples/?file=<...>
|
|
const examples = document.querySelectorAll("a")
|
|
examples.forEach((example) => {
|
|
if (!example.textContent.startsWith("examples/")) {
|
|
return;
|
|
}
|
|
// Remove the ".cpp" extension from the example name.
|
|
const exampleName = example.textContent.replace("examples/", "").replace(".cpp", "");
|
|
const a = document.createElement("a");
|
|
a.textContent = "[demo]";
|
|
a.href = "https://arthursonzogni.github.io/FTXUI/examples/?file=" + exampleName;
|
|
a.style.marginRight= "1em";
|
|
a.style.fontWeight = "bold";
|
|
example.parentElement.insertBefore(a, example)
|
|
});
|
|
// If the current URL ends with -example.html, we can add a link to the demo
|
|
// as well using the div.title textContent.
|
|
const url = new URL(window.location.href);
|
|
if (url.pathname.endsWith("-example.html")) {
|
|
// Get the title text.
|
|
const title = document.querySelector("div.title").textContent;
|
|
const example = title.replace("examples/", "").replace(".cpp", "");
|
|
// Create a link to the demo.
|
|
const a = document.createElement("a");
|
|
a.textContent = "[demo]";
|
|
a.href = "https://arthursonzogni.github.io/FTXUI/examples/?file=" + example;
|
|
a.style.marginLeft = "1em";
|
|
a.style.fontWeight = "bold";
|
|
a.style.display = "inline-block";
|
|
// Insert the link after the title.
|
|
const titleDiv = document.querySelector("div.title");
|
|
if (titleDiv) {
|
|
titleDiv.insertBefore(a, titleDiv.nextSibling);
|
|
}
|
|
}
|
|
</script>
|
|
<script type="module">
|
|
// Click on the navtree, except for the main page where this is already done
|
|
// automatically.
|
|
let delay = 0;
|
|
while(true) {
|
|
const navtree = document.querySelector("div.item.selected");
|
|
if (!navtree) {
|
|
delay *= 2;
|
|
delay += 1;
|
|
await new Promise(resolve => setTimeout(resolve, delay));
|
|
continue;
|
|
}
|
|
// Include only selected navtree items.
|
|
console.log("navtree.textContent", navtree.textContent);
|
|
if (!navtree.textContent.includes("Getting Started") &&
|
|
!navtree.textContent.includes("Installation") &&
|
|
!navtree.textContent.includes("ftxui / screen") &&
|
|
!navtree.textContent.includes("ftxui / dom") &&
|
|
!navtree.textContent.includes("ftxui / component") &&
|
|
!navtree.textContent.includes("Reference")) {
|
|
break;
|
|
}
|
|
// Find the first link inside the navtree.
|
|
const link = navtree.querySelector("a");
|
|
if (link) {
|
|
// Simulate a click on the link.
|
|
link.click();
|
|
break;
|
|
}
|
|
}
|
|
</script>
|
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
|
<script type="text/javascript" src="navtreedata.js"></script>
|
|
<script type="text/javascript" src="navtree.js"></script>
|
|
<script type="text/javascript" src="resize.js"></script>
|
|
<script type="text/javascript" src="cookie.js"></script>
|
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
|
<script type="text/javascript" src="search/search.js"></script>
|
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
|
<link href="doxygen-awesome.css" rel="stylesheet" type="text/css"/>
|
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
|
</head>
|
|
<body>
|
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
|
<div id="titlearea">
|
|
<table cellspacing="0" cellpadding="0">
|
|
<tbody>
|
|
<tr id="projectrow">
|
|
<td id="projectalign">
|
|
<div id="projectname">FTXUI<span id="projectnumber"> 6.1.9</span>
|
|
</div>
|
|
<div id="projectbrief">C++ functional terminal UI.</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!-- end header part -->
|
|
<!-- Generated by Doxygen 1.12.0 -->
|
|
<script type="text/javascript">
|
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
|
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
|
/* @license-end */
|
|
</script>
|
|
<script type="text/javascript">
|
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
|
$(function() { codefold.init(0); });
|
|
/* @license-end */
|
|
</script>
|
|
<script type="text/javascript" src="menudata.js"></script>
|
|
<script type="text/javascript" src="menu.js"></script>
|
|
<script type="text/javascript">
|
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
|
$(function() {
|
|
initMenu('',true,false,'search.php','Search',true);
|
|
$(function() { init_search(); });
|
|
});
|
|
/* @license-end */
|
|
</script>
|
|
<div id="main-nav"></div>
|
|
</div><!-- top -->
|
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
|
<div id="nav-tree">
|
|
<div id="nav-tree-contents">
|
|
<div id="nav-sync" class="sync"></div>
|
|
</div>
|
|
</div>
|
|
<div id="splitbar" style="-moz-user-select:none;"
|
|
class="ui-resizable-handle">
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
|
$(function(){initNavTree('functions_s.html',''); initResizable(true); });
|
|
/* @license-end */
|
|
</script>
|
|
<div id="doc-content">
|
|
<!-- window showing the filter options -->
|
|
<div id="MSearchSelectWindow"
|
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
|
</div>
|
|
|
|
<!-- iframe showing the search results (closed by default) -->
|
|
<div id="MSearchResultsWindow">
|
|
<div id="MSearchResults">
|
|
<div class="SRPage">
|
|
<div id="SRIndex">
|
|
<div id="SRResults"></div>
|
|
<div class="SRStatus" id="Loading">Loading...</div>
|
|
<div class="SRStatus" id="Searching">Searching...</div>
|
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="contents">
|
|
<div class="textblock">Here is a list of all class members with links to the classes they belong to:</div>
|
|
|
|
<h3><a id="index_s" name="index_s"></a>- s -</h3><ul>
|
|
<li>S : <a class="el" href="group__component.html#ad3a8ae79497cbfa7cd88230b8fef68bb">Event</a></li>
|
|
<li>s : <a class="el" href="group__component.html#ac09c6206315a7cd54fb467bc7760dfae">Event</a></li>
|
|
<li>Salmon1 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa664067df16558f65cc3d46609a03dfab">Color</a></li>
|
|
<li>SandyBrown : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa64269c060a2fc56cb77c12360cd3a28e">Color</a></li>
|
|
<li>SaturateHorizontal() : <a class="el" href="group__dom.html#af3f2674604d907fbce26d4217cfa9324">Selection</a></li>
|
|
<li>SaturateVertical() : <a class="el" href="group__dom.html#ace69e1e7c6e64b7ae0c4402e0e1e3336">Selection</a></li>
|
|
<li>saturation : <a class="el" href="group__screen.html#a4769b22557e2bcd3edbc69f2caaf691f">ColorInfo</a></li>
|
|
<li>Screen() : <a class="el" href="group__screen.html#a7ecf7c5fb3d90a1620098a60cfafc215">Screen</a></li>
|
|
<li>screen_ : <a class="el" href="group__component.html#a57ae65156ecf0f469cc559a49e6c4f2f">Event</a></li>
|
|
<li>SeaGreen1 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa8e2c9e620d6245638b27d9c1fa2d0545">Color</a></li>
|
|
<li>SeaGreen1Bis : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa7819209c8bfe13fbfcb2cde9a296f7b6">Color</a></li>
|
|
<li>SeaGreen2 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa1b69dc4c281a32346b8d2bab20dd1aef">Color</a></li>
|
|
<li>SeaGreen3 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa5b862c5164d4597b28fba03335a834cf">Color</a></li>
|
|
<li>Select() : <a class="el" href="group__dom.html#a05352f5a353f1e86630a978060e77305">Node</a></li>
|
|
<li>SelectAll() : <a class="el" href="group__dom.html#ad5f50927f54334b84514bc4b11a14d71">Table</a></li>
|
|
<li>SelectCell() : <a class="el" href="group__dom.html#a3c2f178ef9f94da293a53b467ef8643b">Table</a></li>
|
|
<li>SelectColumn() : <a class="el" href="group__dom.html#a4ee8ddbab36f592fba81c6430d26545e">Table</a></li>
|
|
<li>SelectColumns() : <a class="el" href="group__dom.html#a79109565fe65710f725eb474778cae36">Table</a></li>
|
|
<li>selected : <a class="el" href="group__component.html#ac42a32c3439d08be9c5626a5fbc3a0c4">MenuOption</a>, <a class="el" href="group__component.html#ac42a32c3439d08be9c5626a5fbc3a0c4">RadioboxOption</a></li>
|
|
<li>Selection() : <a class="el" href="group__dom.html#ade00d4039f147221b9fd6b6b402b43b1">Selection</a></li>
|
|
<li>selection_style_ : <a class="el" href="group__screen.html#ab9f757d5d67255f61e27950be4131be1">Screen</a></li>
|
|
<li>SelectionChange() : <a class="el" href="group__component.html#ad6daabb2df61b6be6f0b2a8950ac3281">ScreenInteractive</a></li>
|
|
<li>SelectionStyle : <a class="el" href="group__screen.html#a0424ec9a980000671f12bfa39fc32273">Screen</a></li>
|
|
<li>SelectRectangle() : <a class="el" href="group__dom.html#af0021915d0cbda394077929601b8ab8f">Table</a></li>
|
|
<li>SelectRow() : <a class="el" href="group__dom.html#a64435bbfbdefd7408241c69b6b8283e7">Table</a></li>
|
|
<li>SelectRows() : <a class="el" href="group__dom.html#ab36d32e3675a9353ee79e84405cd7a44">Table</a></li>
|
|
<li>Send() : <a class="el" href="classftxui_1_1SenderImpl.html#af3a961fb9b4025671b6122a392a5bc3f">SenderImpl< T ></a></li>
|
|
<li>SenderImpl() : <a class="el" href="classftxui_1_1SenderImpl.html#a7770521e8bff392402a1539bf4eb8ff4">SenderImpl< T ></a></li>
|
|
<li>Separator() : <a class="el" href="classftxui_1_1TableSelection.html#ab1c6e11d86131eddb095c8211b824b18">TableSelection</a></li>
|
|
<li>separator_func : <a class="el" href="structftxui_1_1ResizableSplitOption.html#a237a29bec11c71ee14c9b36ae94a1dbf">ResizableSplitOption</a></li>
|
|
<li>SeparatorHorizontal() : <a class="el" href="classftxui_1_1TableSelection.html#affd2ab7143cb388fdedad3bd51995802">TableSelection</a></li>
|
|
<li>SeparatorVertical() : <a class="el" href="classftxui_1_1TableSelection.html#a2334aed76610138905c96dc298b7e9df">TableSelection</a></li>
|
|
<li>Set() : <a class="el" href="group__component.html#ad186d5a36e45174bbc7c50df85c2e91e">AnimatedColorOption</a>, <a class="el" href="group__dom.html#ae47b5b0d793d0c2312e4805a1f40012a">FlexboxConfig</a></li>
|
|
<li>SetActiveChild() : <a class="el" href="group__component.html#a8cbf27680c6154e15c8b32d6601340de">ComponentBase</a></li>
|
|
<li>SetAnimation() : <a class="el" href="group__component.html#a754d89398aac6051ced26fd452c62589">UnderlineOption</a></li>
|
|
<li>SetAnimationDuration() : <a class="el" href="group__component.html#a798360474be7511364b8171f0c62f6d5">UnderlineOption</a></li>
|
|
<li>SetAnimationFunction() : <a class="el" href="group__component.html#a34e6222dbf10e899074054160870816c">UnderlineOption</a></li>
|
|
<li>SetBox() : <a class="el" href="group__dom.html#a2ed318aaadb07efc50e76fce1ccf9637">Node</a>, <a class="el" href="classftxui_1_1NodeDecorator.html#aafcc9bd6538ccb37babf4d56c4c1c238">NodeDecorator</a></li>
|
|
<li>SetCursor() : <a class="el" href="group__screen.html#a1aa24862a3d050b3aea2ade1300d51a7">Screen</a></li>
|
|
<li>SetGap() : <a class="el" href="group__dom.html#a98d9a43033c09c7f967cdec791408bad">FlexboxConfig</a></li>
|
|
<li>SetSelectionStyle() : <a class="el" href="group__screen.html#aba0d30b90db17d6b7561f704ed63b5e6">Screen</a></li>
|
|
<li>Shape : <a class="el" href="structftxui_1_1Screen_1_1Cursor.html#a55b506070847a13554f8b879c1bfb37c">Screen::Cursor</a></li>
|
|
<li>shape : <a class="el" href="structftxui_1_1Screen_1_1Cursor.html#a8b9f7758a8bd2bef680aeecc40bcfe04">Screen::Cursor</a></li>
|
|
<li>Shift() : <a class="el" href="group__screen.html#a507dad970b4732caab79e5922bdc5fb5">Box</a></li>
|
|
<li>shift : <a class="el" href="group__component.html#ace78b37abb3d96740735fd8eb41235e6">Mouse</a></li>
|
|
<li>Signal() : <a class="el" href="classftxui_1_1ScreenInteractive_1_1Private.html#aa831d3b9234cd15d4bcb5a42dec43943">ScreenInteractive::Private</a></li>
|
|
<li>Simple() : <a class="el" href="group__component.html#a553fe18f102e8e62aec516d4d3213eac">ButtonOption</a>, <a class="el" href="group__component.html#a41b17a916980353033366c01b15d3cb1">CheckboxOption</a>, <a class="el" href="group__component.html#af2b048773665961fae6c104762533908">RadioboxOption</a></li>
|
|
<li>size : <a class="el" href="structftxui_1_1box__helper_1_1Element.html#a439227feff9d7f55384e8780cfc2eb82">Element</a>, <a class="el" href="classftxui_1_1ConstStringListRef_1_1Adapter.html#aa983ddaeded5756189f46428be79c631">ConstStringListRef::Adapter</a>, <a class="el" href="classftxui_1_1ConstStringListRef.html#a259cb5a711406a8c3e5d937eb9350cca">ConstStringListRef</a></li>
|
|
<li>size_x : <a class="el" href="structftxui_1_1flexbox__helper_1_1Global.html#aec1dee03c858e0d3910c40c209890ab0">Global</a></li>
|
|
<li>size_y : <a class="el" href="structftxui_1_1flexbox__helper_1_1Global.html#a22aeb82e7a98517be5f90c810e423af0">Global</a></li>
|
|
<li>SkyBlue1 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfac47bacbed84298fdf72215fe2312ce64">Color</a></li>
|
|
<li>SkyBlue2 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfaa1172e54ed7e62aa4ebcea4b453f5dcc">Color</a></li>
|
|
<li>SkyBlue3 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa2dfa52861bc8b2a870e5166e969db2c7">Color</a></li>
|
|
<li>SlateBlue1 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa97807edc577e1d5d3bc271c3a4ced7f4">Color</a></li>
|
|
<li>SlateBlue3 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfae53ce2149f6b9e7da24472b5112f7963">Color</a></li>
|
|
<li>SlateBlue3Bis : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfad477f91096f698a2b266a1bf26cd456b">Color</a></li>
|
|
<li>Spacious() : <a class="el" href="group__component.html#a36c56131167eaaae707f64bbb9d07ef2">InputOption</a></li>
|
|
<li>Special() : <a class="el" href="group__component.html#afe901de476c29382cc358333f10e5ee7">Event</a></li>
|
|
<li>SpringGreen1 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa8e70ae2a69a90e87e679685d6461b6e8">Color</a></li>
|
|
<li>SpringGreen2 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfac85363887f660b5879e353bac03dab49">Color</a></li>
|
|
<li>SpringGreen2Bis : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfad038ac30c015021853f183054c51c0c5">Color</a></li>
|
|
<li>SpringGreen3 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa5a87a3e9a8af9561a373ff63e740223e">Color</a></li>
|
|
<li>SpringGreen3Bis : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfaf19e26246ad6f4e4de44efb6d2b4e1c6">Color</a></li>
|
|
<li>SpringGreen4 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfaf3817720cb5b18b16b8d6c520a61748e">Color</a></li>
|
|
<li>state : <a class="el" href="structftxui_1_1EntryState.html#ab30ba07e2a0bd07a15e45a92c32db9c5">EntryState</a></li>
|
|
<li>SteelBlue : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa9224e340e6d918555c68ac2f1dc80b04">Color</a></li>
|
|
<li>SteelBlue1 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa050bb4a5d79a1dac6aae25ce8734c973">Color</a></li>
|
|
<li>SteelBlue1Bis : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfaf400af64197a052be4d59c521104cb2a">Color</a></li>
|
|
<li>SteelBlue3 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa0a49900e5a03f7545262d90592bfba92">Color</a></li>
|
|
<li>stencil : <a class="el" href="group__screen.html#a92cacd07ba30909855f19edc01192ff0">Image</a></li>
|
|
<li>Stop() : <a class="el" href="group__dom.html#a03b10012f78e1c731616ce760d28df40">LinearGradient</a></li>
|
|
<li>stops : <a class="el" href="group__dom.html#a9c56e5fb8075d8a48b1b0c3b4ea31831">LinearGradient</a></li>
|
|
<li>strikethrough : <a class="el" href="group__screen.html#a21fbeba389ccf8f76447c7a73ead8db2">Pixel</a></li>
|
|
<li>StringRef() : <a class="el" href="classftxui_1_1StringRef.html#ad3cfa31525e075cbd5f50c2476e665ce">StringRef</a></li>
|
|
<li>Style() : <a class="el" href="group__dom.html#ae9e7d3f5b753cf2650057623960d4cb4">Canvas</a></li>
|
|
<li>Stylizer : <a class="el" href="group__dom.html#a407f299e079846ce6169f2a709ad4aae">Canvas</a></li>
|
|
</ul>
|
|
</div><!-- contents -->
|
|
</div><!-- doc-content -->
|
|
<!-- HTML footer for doxygen 1.9.8-->
|
|
<!-- start footer part -->
|
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
|
<ul>
|
|
<li class="footer">Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.12.0 </li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|