mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-23 23:41:13 +08:00
316 lines
22 KiB
HTML
316 lines
22 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_c.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_c" name="index_c"></a>- c -</h3><ul>
|
|
<li>C : <a class="el" href="group__component.html#aad99c99d06c8b90edc409743b4c23efb">Event</a></li>
|
|
<li>c : <a class="el" href="group__component.html#af8a909c0d59f212fdf1e79af33888d53">Event</a></li>
|
|
<li>CadetBlue : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa76906c6e4ac2ee22b81bda5a59e335f1">Color</a></li>
|
|
<li>CadetBlueBis : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfacb5d4e2aebcd3abba4c91d055f07513b">Color</a></li>
|
|
<li>Canvas() : <a class="el" href="group__dom.html#a3cbcd839ac8597df2e0f351850ec4735">Canvas</a></li>
|
|
<li>CapturedMouseInterface() : <a class="el" href="classftxui_1_1CapturedMouseInterface.html#abc72c038150d1866199c28dffe7ace7b">CapturedMouseInterface</a></li>
|
|
<li>CaptureMouse() : <a class="el" href="group__component.html#a164d10a2cf367bdd4ae14318a6c7d769">ComponentBase</a>, <a class="el" href="group__component.html#aad61519d291dcc216d2ac618618a45a2">ScreenInteractive</a></li>
|
|
<li>Character() : <a class="el" href="group__component.html#a769519ed730b72a53a2e770d6ee44365">Event</a></li>
|
|
<li>character() : <a class="el" href="group__component.html#a07022c6e92b9144a0e5b337b562f9892">Event</a>, <a class="el" href="group__screen.html#a3bbcd6a381555ea201dbe4251a9aafb3">Pixel</a></li>
|
|
<li>Chartreuse1 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa7d2d4cc3af6756a4eac7d12fbe4775d4">Color</a></li>
|
|
<li>Chartreuse2 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa353575e36d1260652eb3d18e73f04cfe">Color</a></li>
|
|
<li>Chartreuse2Bis : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa6338086ae05e58041188d89165d87c1a">Color</a></li>
|
|
<li>Chartreuse3 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa2f3df27b5ed05a3e040deec31c684003">Color</a></li>
|
|
<li>Chartreuse3Bis : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa2087d90de0840d3f15fad878ba4b4fc4">Color</a></li>
|
|
<li>Chartreuse4 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa734cd2fab3e94385552fc745665bcc98">Color</a></li>
|
|
<li>Check() : <a class="el" href="group__dom.html#a5b71d891a102197f2856f53702425581">Node</a></li>
|
|
<li>checkbox : <a class="el" href="group__component.html#a0797deb307cd89059137a4ca6075fcbf">DropdownOption</a></li>
|
|
<li>checked : <a class="el" href="group__component.html#ab7741e52624c0d7906159d77edffe27e">CheckboxOption</a></li>
|
|
<li>ChildAt() : <a class="el" href="group__component.html#aceb41a98abe10fb0b521ff8b65529b7f">ComponentBase</a></li>
|
|
<li>ChildCount() : <a class="el" href="group__component.html#a9ae5f77e923e2f0f8b0e26dcd4affb5b">ComponentBase</a></li>
|
|
<li>children_ : <a class="el" href="group__component.html#a22b4fa4d6aa4c9c2eef275cd25aa8ab9">ComponentBase</a>, <a class="el" href="group__dom.html#a2aeb117dade3254694355ab90e9fc566">Node</a></li>
|
|
<li>Clear() : <a class="el" href="group__screen.html#aa71d36872f416feaa853788a7a7a7ef8">Image</a>, <a class="el" href="group__screen.html#aa71d36872f416feaa853788a7a7a7ef8">Screen</a></li>
|
|
<li>Clone() : <a class="el" href="classftxui_1_1SenderImpl.html#a575817a7bf1afd8bc9af4973e4f38481">SenderImpl< T ></a></li>
|
|
<li>Color() : <a class="el" href="group__screen.html#a1589b83974b42a2f3315624f14c3c92c">Color</a></li>
|
|
<li>color : <a class="el" href="structftxui_1_1LinearGradient_1_1Stop.html#aa5f4d1eda21c196bd8401ff73f105073">LinearGradient::Stop</a></li>
|
|
<li>color_active : <a class="el" href="structftxui_1_1SliderOption.html#a593f1ba15add21d1972c01372db369df">SliderOption< T ></a>, <a class="el" href="group__component.html#a593f1ba15add21d1972c01372db369df">UnderlineOption</a></li>
|
|
<li>color_inactive : <a class="el" href="structftxui_1_1SliderOption.html#ad5a77e0bc0ce649271a13949a7a0a635">SliderOption< T ></a>, <a class="el" href="group__component.html#ad5a77e0bc0ce649271a13949a7a0a635">UnderlineOption</a></li>
|
|
<li>component_active : <a class="el" href="structftxui_1_1Requirement_1_1Focused.html#ac3226c18ed017dd81566f593d1257ce1">Requirement::Focused</a></li>
|
|
<li>ComponentBase() : <a class="el" href="group__component.html#ad2a5b6ce11bc7a8ce1150cf0ba9144c0">ComponentBase</a></li>
|
|
<li>ComputeRequirement() : <a class="el" href="group__dom.html#a40bd818c5de23bb2d208360d275ae59d">Node</a>, <a class="el" href="classftxui_1_1NodeDecorator.html#ac68a91492bfe8a6dd7ea2b3f7f295720">NodeDecorator</a></li>
|
|
<li>config : <a class="el" href="structftxui_1_1flexbox__helper_1_1Global.html#ae1dac1dbfb99211895f88d2c4b609849">Global</a></li>
|
|
<li>ConstRef() : <a class="el" href="classftxui_1_1ConstRef.html#a2949426897a0bd427771597c7cc34f08">ConstRef< T ></a></li>
|
|
<li>ConstStringListRef() : <a class="el" href="classftxui_1_1ConstStringListRef.html#a425bc6a013bf3a539794b7a874fc722f">ConstStringListRef</a></li>
|
|
<li>ConstStringRef() : <a class="el" href="classftxui_1_1ConstStringRef.html#a9a4560dc18026ec3753e87d569fa5103">ConstStringRef</a></li>
|
|
<li>Contain() : <a class="el" href="group__screen.html#a2f31c89738607b84e65992a7005d35a9">Box</a></li>
|
|
<li>content : <a class="el" href="group__component.html#ac9f6c2acd72d74eeb3a18baf32b02932">InputOption</a></li>
|
|
<li>control : <a class="el" href="group__component.html#ad155fe5a68eb888a7e0eb897a3dfc015">Mouse</a></li>
|
|
<li>CornflowerBlue : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfab4dcc712554f602559b3f9b7662ea4dd">Color</a></li>
|
|
<li>Cornsilk1 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa9d7dd269922a0e2fac6366c623ed3d45">Color</a></li>
|
|
<li>Create() : <a class="el" href="group__screen.html#a32b98be0603ace46d6dc9d05b330a9fd">Screen</a></li>
|
|
<li>CtrlA : <a class="el" href="group__component.html#acf7817ed11559c82a26322521f390d6e">Event</a></li>
|
|
<li>CtrlAltA : <a class="el" href="group__component.html#adb198f3baf944a55bcfa46107615d359">Event</a></li>
|
|
<li>CtrlAltB : <a class="el" href="group__component.html#ae44c243b858cb3400fdbfa0175c489e4">Event</a></li>
|
|
<li>CtrlAltC : <a class="el" href="group__component.html#a1cd1b6ca37581db00ee5ad5d44e94e3f">Event</a></li>
|
|
<li>CtrlAltD : <a class="el" href="group__component.html#aec5fdc15c18b77c8ca74d1f077754916">Event</a></li>
|
|
<li>CtrlAltE : <a class="el" href="group__component.html#a459c4f925ed72d9ebdd5caa74be905f8">Event</a></li>
|
|
<li>CtrlAltF : <a class="el" href="group__component.html#a22ee0cd5fb9dbb1ff5fe2b249d9de1fc">Event</a></li>
|
|
<li>CtrlAltG : <a class="el" href="group__component.html#acf6ba80979dddb644d8a06ddc8b32a43">Event</a></li>
|
|
<li>CtrlAltH : <a class="el" href="group__component.html#a54b56653957ef7a339f0659e6c4f826f">Event</a></li>
|
|
<li>CtrlAltI : <a class="el" href="group__component.html#a2bf197114604fe111bd01a5ad64b0576">Event</a></li>
|
|
<li>CtrlAltJ : <a class="el" href="group__component.html#a48019246646c62005152941069919bf2">Event</a></li>
|
|
<li>CtrlAltK : <a class="el" href="group__component.html#ace12bff4272d8e0c85db12524e42f7b0">Event</a></li>
|
|
<li>CtrlAltL : <a class="el" href="group__component.html#ab37accf33aab3cd7187bb7f589bc3c5b">Event</a></li>
|
|
<li>CtrlAltM : <a class="el" href="group__component.html#a7866574be02fec611b5aca5d333ccccf">Event</a></li>
|
|
<li>CtrlAltN : <a class="el" href="group__component.html#a0bcae083304c682e85f1e18be85dc141">Event</a></li>
|
|
<li>CtrlAltO : <a class="el" href="group__component.html#a62641366fdaffa002aca0087af45297a">Event</a></li>
|
|
<li>CtrlAltP : <a class="el" href="group__component.html#a44bc2e6312cd6e9eda4d4778e88052f0">Event</a></li>
|
|
<li>CtrlAltQ : <a class="el" href="group__component.html#af8bec3764c43c08d08c0bffdcf9b4255">Event</a></li>
|
|
<li>CtrlAltR : <a class="el" href="group__component.html#a8aecef2c60fd63f3cbc7c16b7b5d804b">Event</a></li>
|
|
<li>CtrlAltS : <a class="el" href="group__component.html#abf589677d9c6463e97519567c3d1b021">Event</a></li>
|
|
<li>CtrlAltT : <a class="el" href="group__component.html#adad452726bfb3d523b19299bf8017a41">Event</a></li>
|
|
<li>CtrlAltU : <a class="el" href="group__component.html#ad4e4ff7f9a534882d7e5adc29235d761">Event</a></li>
|
|
<li>CtrlAltV : <a class="el" href="group__component.html#ae7afc70b1bc9d4e5c046bcbaf7767c19">Event</a></li>
|
|
<li>CtrlAltW : <a class="el" href="group__component.html#a5d6ebbe9bdb0b7fe28104a58602bcc37">Event</a></li>
|
|
<li>CtrlAltX : <a class="el" href="group__component.html#a07a380297456b42f4929d47ece5517a0">Event</a></li>
|
|
<li>CtrlAltY : <a class="el" href="group__component.html#ab001073b99625145403adbbd3a3e21e8">Event</a></li>
|
|
<li>CtrlAltZ : <a class="el" href="group__component.html#a98f8350cb5499a5432506ac732d495ec">Event</a></li>
|
|
<li>CtrlB : <a class="el" href="group__component.html#a52c5a6db246fce616cf8d6408af8e3a3">Event</a></li>
|
|
<li>CtrlC : <a class="el" href="group__component.html#a038a33c469a2e4474d08d637e37f660d">Event</a></li>
|
|
<li>CtrlD : <a class="el" href="group__component.html#ae0d493f520768be24d4e9508eb3f263d">Event</a></li>
|
|
<li>CtrlE : <a class="el" href="group__component.html#a1fbae80d9ab6f7c72f07f1a84da7de64">Event</a></li>
|
|
<li>CtrlF : <a class="el" href="group__component.html#a46651cd420861328dff49c5651ac853c">Event</a></li>
|
|
<li>CtrlG : <a class="el" href="group__component.html#aa221be42071500650486cc199f26b072">Event</a></li>
|
|
<li>CtrlH : <a class="el" href="group__component.html#a72c30a2cd1d2309f4e81aad7163e24ca">Event</a></li>
|
|
<li>CtrlI : <a class="el" href="group__component.html#af5df3d152c8ea5303cc2d5c9bb8c5747">Event</a></li>
|
|
<li>CtrlJ : <a class="el" href="group__component.html#a76d3ea748f24c9c8d55a8f563616de3f">Event</a></li>
|
|
<li>CtrlK : <a class="el" href="group__component.html#a8deeb92abd293c7a0750b6891cc217bd">Event</a></li>
|
|
<li>CtrlL : <a class="el" href="group__component.html#a0608ea347cb61c04bf7f1e89d215d1c3">Event</a></li>
|
|
<li>CtrlM : <a class="el" href="group__component.html#a86af858198ebfedc83ada8f775a1b4bc">Event</a></li>
|
|
<li>CtrlN : <a class="el" href="group__component.html#a85966b9d428df487e2b896596e90f4ed">Event</a></li>
|
|
<li>CtrlO : <a class="el" href="group__component.html#ae7915261b9c6d8e844933bd1f68ed120">Event</a></li>
|
|
<li>CtrlP : <a class="el" href="group__component.html#a043bd0f01364983076c98ebf2fd6f503">Event</a></li>
|
|
<li>CtrlQ : <a class="el" href="group__component.html#a97bdebeccfd100f5e8f5df3b4e04b62e">Event</a></li>
|
|
<li>CtrlR : <a class="el" href="group__component.html#a5cca4aa809fa07d3ea1992ebef011a19">Event</a></li>
|
|
<li>CtrlS : <a class="el" href="group__component.html#a7c7ffc28a2d2d1eb67444edb7a44e575">Event</a></li>
|
|
<li>CtrlT : <a class="el" href="group__component.html#ac1e7d6a13cfa09a29e2c735e01463598">Event</a></li>
|
|
<li>CtrlU : <a class="el" href="group__component.html#a26730fa452c79611f5aa6ca0e157e217">Event</a></li>
|
|
<li>CtrlV : <a class="el" href="group__component.html#a053eca96c74722632b0a1e53f3af2978">Event</a></li>
|
|
<li>CtrlW : <a class="el" href="group__component.html#a8520a7531235eb2ff76f2de1704e7e1c">Event</a></li>
|
|
<li>CtrlX : <a class="el" href="group__component.html#a50ef26ee285d63d0a805f59eed52239f">Event</a></li>
|
|
<li>CtrlY : <a class="el" href="group__component.html#a697c813972ac5d83b75f65e81acd5cff">Event</a></li>
|
|
<li>CtrlZ : <a class="el" href="group__component.html#a22ef83103e0443ba82acc19f24f729bc">Event</a></li>
|
|
<li>cursor : <a class="el" href="group__component.html#a9d8d873964fd143f113fce55e15c37fb">Event</a>, <a class="el" href="group__screen.html#a94febaac347b83267ff6a10b7837d612">Screen</a></li>
|
|
<li>cursor_ : <a class="el" href="group__screen.html#a9df9d1ae7ed66857ca987963b2365904">Screen</a></li>
|
|
<li>cursor_position : <a class="el" href="group__component.html#a699547942204afa70864e0e6df94c96c">InputOption</a></li>
|
|
<li>cursor_shape : <a class="el" href="group__component.html#a25a0efbff7ae0393c695f6d720cb5542">Event</a>, <a class="el" href="structftxui_1_1Requirement_1_1Focused.html#a21f4c5c8f6862a204f795d4f0cb6d479">Requirement::Focused</a></li>
|
|
<li>cursor_x() : <a class="el" href="group__component.html#a1ef75084a5f2a9d26df8cafcf048526e">Event</a></li>
|
|
<li>cursor_y() : <a class="el" href="group__component.html#a1a24372c00e6485f2648350df4301ae3">Event</a></li>
|
|
<li>CursorPosition() : <a class="el" href="group__component.html#acef096fb0273c844877408912445988c">Event</a></li>
|
|
<li>CursorShape() : <a class="el" href="group__component.html#a0e2ede93a1146707a4f5e540056e13bc">Event</a></li>
|
|
<li>Custom : <a class="el" href="group__component.html#a699872f2a6d8607d714be174e9435290">Event</a></li>
|
|
<li>Cyan : <a class="el" href="group__screen.html#ae2b6d9670960e89c66d7b76167a0802fab0d4738f9c7f12049e52aa4e868bdc8b">Color</a></li>
|
|
<li>Cyan1 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa35e9559f51c82a7adda45276bbedb0f4">Color</a></li>
|
|
<li>Cyan2 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfacc49853d1836ecf3b66c4b8c568aba3f">Color</a></li>
|
|
<li>Cyan3 : <a class="el" href="group__screen.html#abd07c48f62cc507fafa2486a43130fcfa7a36fc7d64942362d706fad5544517d1">Color</a></li>
|
|
<li>CyanLight : <a class="el" href="group__screen.html#ae2b6d9670960e89c66d7b76167a0802fa61bd7f1290cc0a24e565539a61ba5839">Color</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>
|