#include <array>
#include <chrono>
#include <cmath>
#include <functional>
#include <memory>
#include <string>
#include <thread>
#include <utility>
#include <vector>
int main(int argc, const char* argv[]) {
int shift = 0;
auto my_graph = [&shift](int width, int height) {
std::vector<int> output(width);
for (int i = 0; i < width; ++i) {
float v = 0.5f;
v += 0.1f * sin((i + shift) * 0.1f);
v += 0.2f * sin((i + shift + 10) * 0.15f);
v += 0.1f * sin((i + shift) * 0.03f);
v *= height;
output[i] = (int)v;
}
return output;
};
}),
});
auto utilization =
vbox({
}),
});
}),
});
}) |
});
const std::vector<std::string> compiler_entries = {
"gcc",
"clang",
"emcc",
"game_maker",
"Ada compilers",
"ALGOL 60 compilers",
"ALGOL 68 compilers",
"Assemblers (Intel *86)",
"Assemblers (Motorola 68*)",
"Assemblers (Zilog Z80)",
"Assemblers (other)",
"BASIC Compilers",
"BASIC interpreters",
"Batch compilers",
"C compilers",
"Source-to-source compilers",
"C++ compilers",
"C# compilers",
"COBOL compilers",
"Common Lisp compilers",
"D compilers",
"DIBOL/DBL compilers",
"ECMAScript interpreters",
"Eiffel compilers",
"Fortran compilers",
"Go compilers",
"Haskell compilers",
"Java compilers",
"Pascal compilers",
"Perl Interpreters",
"PHP compilers",
"PL/I compilers",
"Python compilers",
"Scheme compilers and interpreters",
"Smalltalk compilers",
"Tcl Interpreters",
"VMS Interpreters",
"Rexx Interpreters",
"CLI compilers",
};
int compiler_selected = 0;
std::array<std::string, 8> options_label = {
"-Wall",
"-Werror",
"-lpthread",
"-O3",
"-Wabi-tag",
"-Wno-class-conversion",
"-Wcomma-subscript",
"-Wno-conversion-null",
};
std::array<bool, 8> options_state = {
false, false, false, false, false, false, false, false,
};
std::vector<std::string> input_entries;
int input_selected = 0;
std::string input_add_content;
input_option.on_enter = [&] {
input_entries.push_back(input_add_content);
input_add_content = "";
};
Component input_add =
Input(&input_add_content,
"input files", input_option);
std::string executable_content_ = "";
Checkbox(&options_label[0], &options_state[0]),
Checkbox(&options_label[1], &options_state[1]),
Checkbox(&options_label[2], &options_state[2]),
Checkbox(&options_label[3], &options_state[3]),
Checkbox(&options_label[4], &options_state[4]),
Checkbox(&options_label[5], &options_state[5]),
Checkbox(&options_label[6], &options_state[6]),
Checkbox(&options_label[7], &options_state[7]),
});
compiler,
flags,
executable_,
input_add,
input,
}),
}),
});
auto render_command = [&] {
line.push_back(
text(compiler_entries[compiler_selected]) |
bold);
for (int i = 0; i < 8; ++i) {
if (options_state[i]) {
line.push_back(
text(
" "));
line.push_back(
text(options_label[i]) |
dim);
}
}
if (!executable_content_.empty()) {
}
for (auto& it : input_entries) {
}
return line;
};
auto compiler_renderer =
Renderer(compiler_component, [&] {
auto executable_win =
window(
text(
"Executable:"), executable_->Render());
auto input_win =
input_add->Render(),
}),
}));
compiler_win,
flags_win,
}),
}) |
});
auto spinner_tab_renderer =
Renderer([&] {
for (int i = 0; i < 22; ++i) {
}
});
}),
}),
}) |
});
auto render_gauge = [&shift](int delta) {
float progress = (shift + delta) % 1000 / 1000.f;
});
};
auto gauge_component =
Renderer([render_gauge] {
}) |
});
int tab_index = 0;
std::vector<std::string> tab_entries = {
"htop", "color", "spinner", "gauge", "compiler",
};
auto tab_selection =
Toggle(&tab_entries, &tab_index);
{
htop,
color_tab_renderer,
spinner_tab_renderer,
gauge_component,
compiler_renderer,
},
&tab_index);
tab_selection,
tab_content,
});
auto main_renderer =
Renderer(main_container, [&] {
tab_content->Render() |
flex,
});
});
bool refresh_ui_continue = true;
std::thread refresh_ui([&] {
while (refresh_ui_continue) {
using namespace std::chrono_literals;
std::this_thread::sleep_for(0.05s);
shift++;
}
});
screen.Loop(main_renderer);
refresh_ui_continue = false;
refresh_ui.join();
return 0;
}