mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-28 16:29:34 +08:00
Fix format. Try compile on Windows.
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
window(text(L" main frame ") | hcenter,
|
||||
@@ -41,6 +41,7 @@ int main(int argc, const char *argv[])
|
||||
),
|
||||
filler()
|
||||
);
|
||||
// clang-format on
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
std::cout << screen.ToString() << std::endl;
|
||||
|
@@ -1,10 +1,11 @@
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
dbox(
|
||||
vbox(
|
||||
@@ -16,6 +17,7 @@ int main(int argc, const char *argv[])
|
||||
) | border,
|
||||
text(L"overlay") | border | center
|
||||
);
|
||||
// clang-format on
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
||||
|
@@ -2,24 +2,25 @@
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
std::string reset_position;
|
||||
for(float percentage = 0; percentage <= 1.0; percentage+=0.002) {
|
||||
for (float percentage = 0; percentage <= 1.0; percentage += 0.002) {
|
||||
std::wstring data_downloaded =
|
||||
std::to_wstring(int(percentage * 5000)) + L"/5000";
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
text(L"downloading:"),
|
||||
gauge(percentage) | flex,
|
||||
text(L" " + data_downloaded)
|
||||
);
|
||||
// clang-format on
|
||||
auto screen = Screen(100, 1);
|
||||
Render(screen, document.get());
|
||||
std::cout << reset_position << screen.ToString() << std::flush;
|
||||
|
@@ -2,6 +2,7 @@
|
||||
#include <cmath>
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/screen/string.hpp"
|
||||
@@ -13,7 +14,7 @@ class Graph {
|
||||
for (int i = 0; i < width; ++i) {
|
||||
float v = 0;
|
||||
v += 0.1 * sin((i + shift) * 0.1);
|
||||
v += 0.2 * sin((i + shift+10) * 0.15);
|
||||
v += 0.2 * sin((i + shift + 10) * 0.15);
|
||||
v += 0.1 * sin((i + shift) * 0.03);
|
||||
v *= height;
|
||||
v += 0.5 * height;
|
||||
@@ -40,6 +41,7 @@ int main(int argc, const char* argv[]) {
|
||||
|
||||
std::string reset_position;
|
||||
for (int i = 0;; ++i) {
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
vbox(
|
||||
@@ -55,6 +57,7 @@ int main(int argc, const char* argv[]) {
|
||||
)
|
||||
| border
|
||||
| size(HEIGHT, GREATER_THAN, 40);
|
||||
// clang-format on
|
||||
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
@@ -1,47 +1,32 @@
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/screen/string.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/screen/string.hpp"
|
||||
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
auto make_box = [](size_t dimx, size_t dimy) {
|
||||
std::wstring title = to_wstring(dimx) + L"x" + to_wstring(dimy);
|
||||
return
|
||||
window(
|
||||
text(title) | hcenter | bold,
|
||||
text(L"content") | hcenter | dim
|
||||
) | size(WIDTH, EQUAL, dimx)
|
||||
| size(HEIGHT, EQUAL, dimy)
|
||||
;
|
||||
// clang-format off
|
||||
return window(text(title) | hcenter | bold,
|
||||
text(L"content") | hcenter | dim) |
|
||||
size(WIDTH, EQUAL, dimx) | size(HEIGHT, EQUAL, dimy);
|
||||
// clang-format on
|
||||
};
|
||||
|
||||
// clang-format off
|
||||
auto document =
|
||||
hflow(
|
||||
make_box(7,7),
|
||||
make_box(7,5),
|
||||
make_box(5,7),
|
||||
make_box(10,4),
|
||||
make_box(10,4),
|
||||
make_box(10,4),
|
||||
make_box(10,4),
|
||||
make_box(11,4),
|
||||
make_box(11,4),
|
||||
make_box(11,4),
|
||||
make_box(11,4),
|
||||
make_box(12,4),
|
||||
make_box(12,5),
|
||||
make_box(12,4),
|
||||
make_box(13,4),
|
||||
make_box(13,3),
|
||||
make_box(13,3),
|
||||
make_box(10,3)
|
||||
) | size(WIDTH, GREATER_THAN, 20)
|
||||
hflow(make_box(7, 7), make_box(7, 5), make_box(5, 7), make_box(10, 4),
|
||||
make_box(10, 4), make_box(10, 4), make_box(10, 4), make_box(11, 4),
|
||||
make_box(11, 4), make_box(11, 4), make_box(11, 4), make_box(12, 4),
|
||||
make_box(12, 5), make_box(12, 4), make_box(13, 4), make_box(13, 3),
|
||||
make_box(13, 3), make_box(10, 3))
|
||||
| size(WIDTH, GREATER_THAN, 20)
|
||||
| border
|
||||
| size(HEIGHT, GREATER_THAN, 30)
|
||||
| size(WIDTH, LESS_THAN, 50)
|
||||
;
|
||||
| size(WIDTH, LESS_THAN, 50);
|
||||
// clang-format on
|
||||
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
@@ -1,6 +1,7 @@
|
||||
#include <chrono>
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/screen/string.hpp"
|
||||
|
@@ -1,15 +1,14 @@
|
||||
#include <chrono>
|
||||
#include <iostream>
|
||||
#include <list>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/screen/string.hpp"
|
||||
#include <list>
|
||||
#include <vector>
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
|
||||
struct Task {
|
||||
@@ -46,6 +45,7 @@ int main(int argc, const char *argv[])
|
||||
return text(to_wstring(number)) | size(WIDTH, EQUAL, 3);
|
||||
};
|
||||
|
||||
// clang-format off
|
||||
auto renderTask = [&](const Task& task) {
|
||||
auto style = (task.downloaded == task.size) ? dim : bold;
|
||||
return
|
||||
@@ -87,9 +87,10 @@ int main(int argc, const char *argv[])
|
||||
hbox(renderSummary(), filler())
|
||||
);
|
||||
};
|
||||
// clang-format on
|
||||
|
||||
auto updateModel = [&](){
|
||||
for(auto& task : displayed_task) {
|
||||
auto updateModel = [&]() {
|
||||
for (auto& task : displayed_task) {
|
||||
if (task.downloaded != task.size) {
|
||||
task.downloaded++;
|
||||
} else if (task.number_of_threads) {
|
||||
@@ -111,8 +112,7 @@ int main(int argc, const char *argv[])
|
||||
};
|
||||
|
||||
std::string reset_position;
|
||||
for(;;) {
|
||||
|
||||
for (;;) {
|
||||
// Draw.
|
||||
auto document = render();
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
|
@@ -1,13 +1,15 @@
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/screen/string.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
using namespace ftxui;
|
||||
std::wstring p = LR"(In probability theory and statistics, Bayes' theorem (alternatively Bayes' law or Bayes' rule) describes the probability of an event, based on prior knowledge of conditions that might be related to the event. For example, if cancer is related to age, then, using Bayes' theorem, a person's age can be used to more accurately assess the probability that they have cancer, compared to the assessment of the probability of cancer made without knowledge of the person's age. One of the many applications of Bayes' theorem is Bayesian inference, a particular approach to statistical inference. When applied, the probabilities involved in Bayes' theorem may have different probability interpretations. With the Bayesian probability interpretation the theorem expresses how a subjective degree of belief should rationally change to account for availability of related evidence. Bayesian inference is fundamental to Bayesian statistics.)";
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/screen/string.hpp"
|
||||
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
std::wstring p =
|
||||
LR"(In probability theory and statistics, Bayes' theorem (alternatively Bayes' law or Bayes' rule) describes the probability of an event, based on prior knowledge of conditions that might be related to the event. For example, if cancer is related to age, then, using Bayes' theorem, a person's age can be used to more accurately assess the probability that they have cancer, compared to the assessment of the probability of cancer made without knowledge of the person's age. One of the many applications of Bayes' theorem is Bayesian inference, a particular approach to statistical inference. When applied, the probabilities involved in Bayes' theorem may have different probability interpretations. With the Bayesian probability interpretation the theorem expresses how a subjective degree of belief should rationally change to account for availability of related evidence. Bayesian inference is fundamental to Bayesian statistics.)";
|
||||
|
||||
// clang-format off
|
||||
auto document =
|
||||
vbox(
|
||||
hbox(
|
||||
@@ -23,6 +25,7 @@ int main(int argc, const char *argv[])
|
||||
hflow(paragraph(p)) | border
|
||||
) | flex
|
||||
);
|
||||
// clang-format on
|
||||
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
@@ -1,10 +1,11 @@
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
text(L"left-column"),
|
||||
@@ -17,6 +18,7 @@ int main(int argc, const char *argv[])
|
||||
separator(),
|
||||
text(L"right-column")
|
||||
) | border;
|
||||
// clang-format on
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
||||
|
@@ -1,11 +1,12 @@
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/screen/string.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/screen/string.hpp"
|
||||
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto make_box = [](const std::wstring title) {
|
||||
return
|
||||
window(
|
||||
@@ -21,6 +22,7 @@ int main(int argc, const char *argv[])
|
||||
| size(WIDTH, EQUAL, x)
|
||||
);
|
||||
}
|
||||
// clang-format on
|
||||
auto document = hbox(std::move(content));
|
||||
auto screen = Screen::Create(Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
@@ -17,6 +17,7 @@ int main(int argc, const char *argv[])
|
||||
for(int i = 0; i<22; ++i) {
|
||||
if (i != 0)
|
||||
entries.push_back(separator());
|
||||
// clang-format off
|
||||
entries.push_back(
|
||||
hbox(
|
||||
text(to_wstring(i)) | size(WIDTH, EQUAL, 2),
|
||||
@@ -24,6 +25,7 @@ int main(int argc, const char *argv[])
|
||||
spinner(i, index) | bold
|
||||
)
|
||||
);
|
||||
// clang-format on
|
||||
}
|
||||
auto document = hbox(vbox(std::move(entries)) | border, filler());
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
|
@@ -1,16 +1,18 @@
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
text(L"This text is "),
|
||||
text(L"blink") | blink,
|
||||
text(L". Do you like it?")
|
||||
);
|
||||
// clang-format on
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
||||
|
@@ -1,16 +1,18 @@
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
text(L"This text is "),
|
||||
text(L"bold") | bold,
|
||||
text(L". Do you like it?")
|
||||
);
|
||||
// clang-format on
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
||||
|
@@ -1,10 +1,11 @@
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
|
||||
int main(int argc, const char* argv[]) {
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
vbox(
|
||||
@@ -47,6 +48,7 @@ int main(int argc, const char *argv[])
|
||||
),
|
||||
filler()
|
||||
);
|
||||
// clang-format on
|
||||
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
@@ -5,12 +5,14 @@
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
text(L"This text is "),
|
||||
text(L"dim") | dim,
|
||||
text(L". Do you like it?")
|
||||
);
|
||||
// clang-format on
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
||||
|
@@ -5,6 +5,7 @@
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
text(L"normal") , text(L" ") ,
|
||||
@@ -16,6 +17,7 @@ int main(int argc, const char *argv[])
|
||||
text(L"color") | color(Color::Blue) , text(L" ") ,
|
||||
text(L"bgcolor") | bgcolor(Color::Blue)
|
||||
);
|
||||
// clang-format on
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
||||
|
@@ -5,12 +5,14 @@
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
text(L"This text is "),
|
||||
text(L"inverted") | inverted,
|
||||
text(L". Do you like it?")
|
||||
);
|
||||
// clang-format on
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
||||
|
@@ -5,12 +5,14 @@
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
hbox(
|
||||
text(L"This text is "),
|
||||
text(L"underlined") | underlined,
|
||||
text(L". Do you like it?")
|
||||
);
|
||||
// clang-format on
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
||||
|
@@ -6,6 +6,7 @@
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
using namespace ftxui;
|
||||
// clang-format off
|
||||
auto document =
|
||||
vbox(
|
||||
hbox(
|
||||
@@ -28,6 +29,7 @@ int main(int argc, const char *argv[])
|
||||
text(L"south-east")
|
||||
)
|
||||
);
|
||||
// clang-format on
|
||||
auto screen = Screen::Create(Dimension::Full());
|
||||
Render(screen, document.get());
|
||||
|
||||
|
Reference in New Issue
Block a user