mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-23 23:41:13 +08:00
523 lines
26 KiB
HTML
523 lines
26 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 Hierarchy</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('hierarchy.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="header">
|
|
<div class="headertitle"><div class="title">Class Hierarchy</div></div>
|
|
</div><!--header-->
|
|
<div class="contents">
|
|
<div class="textblock">
|
|
<p><a href="hierarchy.html">Go to the textual class hierarchy</a></p>
|
|
</div><table border="0" cellspacing="10" cellpadding="0">
|
|
<tr><td><img src="inherit_graph_0.png" border="0" usemap="#aAnimatedColorOption" alt=""/>
|
|
<map name="aAnimatedColorOption" id="aAnimatedColorOption">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1AnimatedColorOption" title="Option about a potentially animated color." alt="" coords="5,5,168,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_1.png" border="0" usemap="#aAnimatedColorsOption" alt=""/>
|
|
<map name="aAnimatedColorsOption" id="aAnimatedColorsOption">
|
|
<area shape="rect" href="structftxui_1_1AnimatedColorsOption.html" title=" " alt="" coords="5,5,175,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_2.png" border="0" usemap="#aAnimationTask" alt=""/>
|
|
<map name="aAnimationTask" id="aAnimationTask">
|
|
<area shape="rect" href="classftxui_1_1AnimationTask.html" title=" " alt="" coords="5,5,124,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_3.png" border="0" usemap="#aAnimator" alt=""/>
|
|
<map name="aAnimator" id="aAnimator">
|
|
<area shape="rect" href="classftxui_1_1animation_1_1Animator.html" title=" " alt="" coords="5,5,88,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_4.png" border="0" usemap="#aAutoReset_3_01T_01_4" alt=""/>
|
|
<map name="aAutoReset_3_01T_01_4" id="aAutoReset_3_01T_01_4">
|
|
<area shape="rect" href="classftxui_1_1AutoReset.html" title="Assign a value to a variable, reset its old value when going out of scope." alt="" coords="5,5,132,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_5.png" border="0" usemap="#aBlock" alt=""/>
|
|
<map name="aBlock" id="aBlock">
|
|
<area shape="rect" href="structftxui_1_1flexbox__helper_1_1Block.html" title=" " alt="" coords="5,5,64,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_6.png" border="0" usemap="#aBox" alt=""/>
|
|
<map name="aBox" id="aBox">
|
|
<area shape="rect" href="group__screen.html#structftxui_1_1Box" title="Box is a structure that represents a rectangular area in a 2D space." alt="" coords="5,5,52,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_7.png" border="0" usemap="#aButtonOption" alt=""/>
|
|
<map name="aButtonOption" id="aButtonOption">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1ButtonOption" title="Option for the AnimatedButton component." alt="" coords="5,5,113,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_8.png" border="0" usemap="#aCanvas" alt=""/>
|
|
<map name="aCanvas" id="aCanvas">
|
|
<area shape="rect" href="group__dom.html#structftxui_1_1Canvas" title="Canvas is a drawable buffer associated with drawing operations." alt="" coords="5,5,76,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_9.png" border="0" usemap="#aCapturedMouseInterface" alt=""/>
|
|
<map name="aCapturedMouseInterface" id="aCapturedMouseInterface">
|
|
<area shape="rect" href="classftxui_1_1CapturedMouseInterface.html" title=" " alt="" coords="5,5,188,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_10.png" border="0" usemap="#aCheckboxOption" alt=""/>
|
|
<map name="aCheckboxOption" id="aCheckboxOption">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1CheckboxOption" title="Option for the Checkbox component." alt="" coords="5,5,135,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_11.png" border="0" usemap="#aColor" alt=""/>
|
|
<map name="aColor" id="aColor">
|
|
<area shape="rect" href="group__screen.html#classftxui_1_1Color" title="Color is a class that represents a color in the terminal user interface." alt="" coords="5,5,61,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_12.png" border="0" usemap="#aColorInfo" alt=""/>
|
|
<map name="aColorInfo" id="aColorInfo">
|
|
<area shape="rect" href="group__screen.html#structftxui_1_1ColorInfo" title="ColorInfo is a structure that contains information about the terminal color palette." alt="" coords="5,5,87,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_13.png" border="0" usemap="#aComponentBase" alt=""/>
|
|
<map name="aComponentBase" id="aComponentBase">
|
|
<area shape="rect" href="group__component.html#classftxui_1_1ComponentBase" title="It implement rendering itself as ftxui::Element. It implement keyboard navigation by responding to ft..." alt="" coords="5,5,135,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_14.png" border="0" usemap="#aConstRef_3_01std_1_1string_01_4" alt=""/>
|
|
<map name="aConstRef_3_01std_1_1string_01_4" id="aConstRef_3_01std_1_1string_01_4">
|
|
<area shape="rect" href="classftxui_1_1ConstRef.html" title=" " alt="" coords="5,5,181,31"/>
|
|
<area shape="rect" href="classftxui_1_1ConstStringRef.html" title="An adapter. Own or reference a constant string. For convenience, this class convert multiple immutabl..." alt="" coords="229,5,348,31"/>
|
|
<area shape="poly" title=" " alt="" coords="195,15,229,15,229,21,195,21"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_15.png" border="0" usemap="#aConstRef_3_01T_01_4" alt=""/>
|
|
<map name="aConstRef_3_01T_01_4" id="aConstRef_3_01T_01_4">
|
|
<area shape="rect" href="classftxui_1_1ConstRef.html" title="An adapter. Own or reference an immutable object." alt="" coords="5,5,124,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_16.png" border="0" usemap="#aConstStringListRef" alt=""/>
|
|
<map name="aConstStringListRef" id="aConstStringListRef">
|
|
<area shape="rect" href="classftxui_1_1ConstStringListRef.html" title="An adapter. Reference a list of strings." alt="" coords="5,5,148,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_17.png" border="0" usemap="#aConstStringListRef_1_1Adapter" alt=""/>
|
|
<map name="aConstStringListRef_1_1Adapter" id="aConstStringListRef_1_1Adapter">
|
|
<area shape="rect" href="classftxui_1_1ConstStringListRef_1_1Adapter.html" title=" " alt="" coords="5,5,148,45"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_18.png" border="0" usemap="#aDimensions" alt=""/>
|
|
<map name="aDimensions" id="aDimensions">
|
|
<area shape="rect" href="group__screen.html#structftxui_1_1Dimensions" title="Dimensions is a structure that represents the size of the terminal." alt="" coords="5,5,104,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_19.png" border="0" usemap="#aDropdownOption" alt=""/>
|
|
<map name="aDropdownOption" id="aDropdownOption">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1DropdownOption" title="Option for the Dropdown component.A dropdown menu is a checkbox opening/closing a radiobox." alt="" coords="5,5,136,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_20.png" border="0" usemap="#aElement" alt=""/>
|
|
<map name="aElement" id="aElement">
|
|
<area shape="rect" href="structftxui_1_1box__helper_1_1Element.html" title=" " alt="" coords="5,5,81,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_21.png" border="0" usemap="#aEntryState" alt=""/>
|
|
<map name="aEntryState" id="aEntryState">
|
|
<area shape="rect" href="structftxui_1_1EntryState.html" title="arguments for transform from |ButtonOption|, |CheckboxOption|, |RadioboxOption|, |MenuEntryOption|,..." alt="" coords="5,5,96,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_22.png" border="0" usemap="#aEvent" alt=""/>
|
|
<map name="aEvent" id="aEvent">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1Event" title="Represent an event. It can be key press event, a terminal resize, or more ..." alt="" coords="5,5,64,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_23.png" border="0" usemap="#aFlexboxConfig" alt=""/>
|
|
<map name="aFlexboxConfig" id="aFlexboxConfig">
|
|
<area shape="rect" href="group__dom.html#structftxui_1_1FlexboxConfig" title="FlexboxConfig is a configuration structure that defines the layout properties for a flexbox container..." alt="" coords="5,5,120,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_24.png" border="0" usemap="#aGlobal" alt=""/>
|
|
<map name="aGlobal" id="aGlobal">
|
|
<area shape="rect" href="structftxui_1_1flexbox__helper_1_1Global.html" title=" " alt="" coords="5,5,69,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_25.png" border="0" usemap="#aImage" alt=""/>
|
|
<map name="aImage" id="aImage">
|
|
<area shape="rect" href="group__screen.html#classftxui_1_1Image" title="A rectangular grid of Pixel." alt="" coords="5,5,68,31"/>
|
|
<area shape="rect" href="group__screen.html#classftxui_1_1Screen" title="A rectangular grid of Pixel." alt="" coords="116,5,183,31"/>
|
|
<area shape="poly" title=" " alt="" coords="81,15,116,15,116,21,81,21"/>
|
|
<area shape="rect" href="group__component.html#classftxui_1_1ScreenInteractive" title="ScreenInteractive is a Screen that can handle events, run a main loop, and manage components." alt="" coords="231,5,367,31"/>
|
|
<area shape="poly" title=" " alt="" coords="196,15,230,15,230,21,196,21"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_26.png" border="0" usemap="#aInputOption" alt=""/>
|
|
<map name="aInputOption" id="aInputOption">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1InputOption" title="Option for the Input component." alt="" coords="5,5,104,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_27.png" border="0" usemap="#aInputState" alt=""/>
|
|
<map name="aInputState" id="aInputState">
|
|
<area shape="rect" href="structftxui_1_1InputState.html" title="Used to define style for the Input component." alt="" coords="5,5,95,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_28.png" border="0" usemap="#aLine" alt=""/>
|
|
<map name="aLine" id="aLine">
|
|
<area shape="rect" href="structftxui_1_1flexbox__helper_1_1Line.html" title=" " alt="" coords="5,5,55,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_29.png" border="0" usemap="#aLinearGradient" alt=""/>
|
|
<map name="aLinearGradient" id="aLinearGradient">
|
|
<area shape="rect" href="group__dom.html#structftxui_1_1LinearGradient" title="A class representing the settings for linear-gradient color effect." alt="" coords="5,5,124,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_30.png" border="0" usemap="#aLinearGradient_1_1Stop" alt=""/>
|
|
<map name="aLinearGradient_1_1Stop" id="aLinearGradient_1_1Stop">
|
|
<area shape="rect" href="structftxui_1_1LinearGradient_1_1Stop.html" title=" " alt="" coords="5,5,160,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_31.png" border="0" usemap="#aLoop" alt=""/>
|
|
<map name="aLoop" id="aLoop">
|
|
<area shape="rect" href="group__component.html#classftxui_1_1Loop" title="Loop is a class that manages the event loop for a component." alt="" coords="5,5,59,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_32.png" border="0" usemap="#aMenuEntryOption" alt=""/>
|
|
<map name="aMenuEntryOption" id="aMenuEntryOption">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1MenuEntryOption" title="Option for the MenuEntry component." alt="" coords="5,5,140,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_33.png" border="0" usemap="#aMenuOption" alt=""/>
|
|
<map name="aMenuOption" id="aMenuOption">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1MenuOption" title="Option for the Menu component." alt="" coords="5,5,107,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_34.png" border="0" usemap="#aMouse" alt=""/>
|
|
<map name="aMouse" id="aMouse">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1Mouse" title="A mouse event. It contains the coordinate of the mouse, the button pressed and the modifier (shift,..." alt="" coords="5,5,71,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_35.png" border="0" usemap="#aNode" alt=""/>
|
|
<map name="aNode" id="aNode">
|
|
<area shape="rect" href="group__dom.html#classftxui_1_1Node" title="Node is the base class for all elements in the DOM tree." alt="" coords="5,5,61,31"/>
|
|
<area shape="rect" href="classftxui_1_1NodeDecorator.html" title=" " alt="" coords="109,5,229,31"/>
|
|
<area shape="poly" title=" " alt="" coords="75,15,109,15,109,21,75,21"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_36.png" border="0" usemap="#aNode_1_1Status" alt=""/>
|
|
<map name="aNode_1_1Status" id="aNode_1_1Status">
|
|
<area shape="rect" href="structftxui_1_1Node_1_1Status.html" title=" " alt="" coords="5,5,111,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_37.png" border="0" usemap="#aParams" alt=""/>
|
|
<map name="aParams" id="aParams">
|
|
<area shape="rect" href="classftxui_1_1animation_1_1Params.html" title=" " alt="" coords="5,5,76,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_38.png" border="0" usemap="#aPixel" alt=""/>
|
|
<map name="aPixel" id="aPixel">
|
|
<area shape="rect" href="group__screen.html#structftxui_1_1Pixel" title="A Unicode character and its associated style." alt="" coords="5,5,59,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_39.png" border="0" usemap="#aRadioboxOption" alt=""/>
|
|
<map name="aRadioboxOption" id="aRadioboxOption">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1RadioboxOption" title="Option for the Radiobox component." alt="" coords="5,5,132,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_40.png" border="0" usemap="#aReceiverImpl_3_01T_01_4" alt=""/>
|
|
<map name="aReceiverImpl_3_01T_01_4" id="aReceiverImpl_3_01T_01_4">
|
|
<area shape="rect" href="classftxui_1_1ReceiverImpl.html" title=" " alt="" coords="5,5,152,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_41.png" border="0" usemap="#aRef_3_01bool_01_4" alt=""/>
|
|
<map name="aRef_3_01bool_01_4" id="aRef_3_01bool_01_4">
|
|
<area shape="rect" href="classftxui_1_1Ref.html" title=" " alt="" coords="5,5,108,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_42.png" border="0" usemap="#aRef_3_01Direction_01_4" alt=""/>
|
|
<map name="aRef_3_01Direction_01_4" id="aRef_3_01Direction_01_4">
|
|
<area shape="rect" href="classftxui_1_1Ref.html" title=" " alt="" coords="5,5,139,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_43.png" border="0" usemap="#aRef_3_01int_01_4" alt=""/>
|
|
<map name="aRef_3_01int_01_4" id="aRef_3_01int_01_4">
|
|
<area shape="rect" href="classftxui_1_1Ref.html" title=" " alt="" coords="5,5,96,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_44.png" border="0" usemap="#aRef_3_01std_1_1string_01_4" alt=""/>
|
|
<map name="aRef_3_01std_1_1string_01_4" id="aRef_3_01std_1_1string_01_4">
|
|
<area shape="rect" href="classftxui_1_1Ref.html" title=" " alt="" coords="5,5,144,31"/>
|
|
<area shape="rect" href="classftxui_1_1StringRef.html" title="An adapter. Own or reference a constant string. For convenience, this class convert multiple mutable ..." alt="" coords="192,5,275,31"/>
|
|
<area shape="poly" title=" " alt="" coords="158,15,192,15,192,21,158,21"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_45.png" border="0" usemap="#aRef_3_01T_01_4" alt=""/>
|
|
<map name="aRef_3_01T_01_4" id="aRef_3_01T_01_4">
|
|
<area shape="rect" href="classftxui_1_1Ref.html" title="An adapter. Own or reference an mutable object." alt="" coords="5,5,88,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_46.png" border="0" usemap="#aRequirement" alt=""/>
|
|
<map name="aRequirement" id="aRequirement">
|
|
<area shape="rect" href="group__dom.html#structftxui_1_1Requirement" title="Requirement is a structure that defines the layout requirements for a Node in the terminal user inter..." alt="" coords="5,5,112,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_47.png" border="0" usemap="#aRequirement_1_1Focused" alt=""/>
|
|
<map name="aRequirement_1_1Focused" id="aRequirement_1_1Focused">
|
|
<area shape="rect" href="structftxui_1_1Requirement_1_1Focused.html" title=" " alt="" coords="5,5,172,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_48.png" border="0" usemap="#aResizableSplitOption" alt=""/>
|
|
<map name="aResizableSplitOption" id="aResizableSplitOption">
|
|
<area shape="rect" href="structftxui_1_1ResizableSplitOption.html" title=" " alt="" coords="5,5,163,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_49.png" border="0" usemap="#aScreen_1_1Cursor" alt=""/>
|
|
<map name="aScreen_1_1Cursor" id="aScreen_1_1Cursor">
|
|
<area shape="rect" href="structftxui_1_1Screen_1_1Cursor.html" title=" " alt="" coords="5,5,121,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_50.png" border="0" usemap="#aScreenInteractive_1_1Private" alt=""/>
|
|
<map name="aScreenInteractive_1_1Private" id="aScreenInteractive_1_1Private">
|
|
<area shape="rect" href="classftxui_1_1ScreenInteractive_1_1Private.html" title=" " alt="" coords="5,5,149,45"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_51.png" border="0" usemap="#aSelection" alt=""/>
|
|
<map name="aSelection" id="aSelection">
|
|
<area shape="rect" href="group__dom.html#classftxui_1_1Selection" title="Represents a selection in a terminal user interface." alt="" coords="5,5,88,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_52.png" border="0" usemap="#aSenderImpl_3_01T_01_4" alt=""/>
|
|
<map name="aSenderImpl_3_01T_01_4" id="aSenderImpl_3_01T_01_4">
|
|
<area shape="rect" href="classftxui_1_1SenderImpl.html" title=" " alt="" coords="5,5,140,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_53.png" border="0" usemap="#aSliderOption_3_01T_01_4" alt=""/>
|
|
<map name="aSliderOption_3_01T_01_4" id="aSliderOption_3_01T_01_4">
|
|
<area shape="rect" href="structftxui_1_1SliderOption.html" title=" " alt="" coords="5,5,145,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_54.png" border="0" usemap="#aTable" alt=""/>
|
|
<map name="aTable" id="aTable">
|
|
<area shape="rect" href="group__dom.html#classftxui_1_1Table" title="Table is a utility to draw tables." alt="" coords="5,5,61,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_55.png" border="0" usemap="#aTableSelection" alt=""/>
|
|
<map name="aTableSelection" id="aTableSelection">
|
|
<area shape="rect" href="classftxui_1_1TableSelection.html" title=" " alt="" coords="5,5,121,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_56.png" border="0" usemap="#aTerminalInputParser" alt=""/>
|
|
<map name="aTerminalInputParser" id="aTerminalInputParser">
|
|
<area shape="rect" href="classftxui_1_1TerminalInputParser.html" title=" " alt="" coords="5,5,156,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_57.png" border="0" usemap="#aUnderlineOption" alt=""/>
|
|
<map name="aUnderlineOption" id="aUnderlineOption">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1UnderlineOption" title="Option for the underline effect." alt="" coords="5,5,133,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_58.png" border="0" usemap="#aWindowOptions" alt=""/>
|
|
<map name="aWindowOptions" id="aWindowOptions">
|
|
<area shape="rect" href="structftxui_1_1WindowOptions.html" title=" " alt="" coords="5,5,129,31"/>
|
|
</map>
|
|
</td></tr>
|
|
<tr><td><img src="inherit_graph_59.png" border="0" usemap="#aWindowRenderState" alt=""/>
|
|
<map name="aWindowRenderState" id="aWindowRenderState">
|
|
<area shape="rect" href="group__component.html#structftxui_1_1WindowRenderState" title="State passed to the Window component's render function." alt="" coords="5,5,160,31"/>
|
|
</map>
|
|
</td></tr>
|
|
</table>
|
|
</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>
|