mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 18:59:59 +08:00
Execute clang-tidy and IWYU. (#576)
This commit is contained in:
parent
a4e70dfb93
commit
3e35f45830
@ -67,7 +67,6 @@ Component Radiobox(ConstStringListRef entries,
|
|||||||
Ref<RadioboxOption> option = {});
|
Ref<RadioboxOption> option = {});
|
||||||
Component Toggle(ConstStringListRef entries, int* selected);
|
Component Toggle(ConstStringListRef entries, int* selected);
|
||||||
|
|
||||||
|
|
||||||
// General slider constructor:
|
// General slider constructor:
|
||||||
template <typename T>
|
template <typename T>
|
||||||
Component Slider(SliderOption<T> options = {});
|
Component Slider(SliderOption<T> options = {});
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#define FTXUI_SCREEN_SCREEN_HPP
|
#define FTXUI_SCREEN_SCREEN_HPP
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <string> // for string, allocator, basic_string
|
#include <string> // for allocator, string, basic_string
|
||||||
#include <vector> // for vector
|
#include <vector> // for vector
|
||||||
|
|
||||||
#include "ftxui/screen/box.hpp" // for Box
|
#include "ftxui/screen/box.hpp" // for Box
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#include <cmath> // IWYU pragma: keep
|
#include <cmath> // for sin, pow, sqrt, cos
|
||||||
|
#include <compare> // for operator<=, operator>=, partial_ordering
|
||||||
#include <ratio> // for ratio
|
#include <ratio> // for ratio
|
||||||
#include <utility> // for move
|
#include <utility> // for move
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include <algorithm> // for copy, max, min
|
#include <algorithm> // for copy, max, min
|
||||||
#include <array> // for array
|
#include <array> // for array
|
||||||
#include <chrono> // for operator-, milliseconds, operator>=, duration, common_type<>::type, time_point
|
#include <chrono> // for operator-, milliseconds, operator<=>, duration, common_type<>::type, time_point
|
||||||
|
#include <compare> // for operator>=, strong_ordering
|
||||||
#include <csignal> // for signal, SIGTSTP, SIGABRT, SIGWINCH, raise, SIGFPE, SIGILL, SIGINT, SIGSEGV, SIGTERM, __sighandler_t, size_t
|
#include <csignal> // for signal, SIGTSTP, SIGABRT, SIGWINCH, raise, SIGFPE, SIGILL, SIGINT, SIGSEGV, SIGTERM, __sighandler_t, size_t
|
||||||
#include <cstdio> // for fileno, stdin
|
#include <cstdio> // for fileno, stdin
|
||||||
#include <ftxui/component/task.hpp> // for Task, Closure, AnimationTask
|
#include <ftxui/component/task.hpp> // for Task, Closure, AnimationTask
|
||||||
@ -26,8 +27,7 @@
|
|||||||
#include "ftxui/component/terminal_input_parser.hpp" // for TerminalInputParser
|
#include "ftxui/component/terminal_input_parser.hpp" // for TerminalInputParser
|
||||||
#include "ftxui/dom/node.hpp" // for Node, Render
|
#include "ftxui/dom/node.hpp" // for Node, Render
|
||||||
#include "ftxui/dom/requirement.hpp" // for Requirement
|
#include "ftxui/dom/requirement.hpp" // for Requirement
|
||||||
#include "ftxui/screen/string.hpp"
|
#include "ftxui/screen/terminal.hpp" // for Dimensions, Size
|
||||||
#include "ftxui/screen/terminal.hpp" // for Size, Dimensions
|
|
||||||
|
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
#define DEFINE_CONSOLEV2_PROPERTIES
|
#define DEFINE_CONSOLEV2_PROPERTIES
|
||||||
@ -107,7 +107,7 @@ void EventListener(std::atomic<bool>* quit, Sender<Task> out) {
|
|||||||
continue;
|
continue;
|
||||||
std::wstring wstring;
|
std::wstring wstring;
|
||||||
wstring += key_event.uChar.UnicodeChar;
|
wstring += key_event.uChar.UnicodeChar;
|
||||||
for(auto it : to_string(wstring)) {
|
for (auto it : to_string(wstring)) {
|
||||||
parser.Add(it);
|
parser.Add(it);
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
|
@ -1,12 +1,14 @@
|
|||||||
#include <gtest/gtest.h> // for AssertionResult, Message, TestPartResult, Test, EXPECT_TRUE, EXPECT_EQ, SuiteApiResolver, TestInfo (ptr only), EXPECT_FALSE, TEST, TestFactoryImpl
|
#include <gtest/gtest.h> // for AssertionResult, Message, TestPartResult, Test, EXPECT_EQ, EXPECT_TRUE, TestInfo (ptr only), EXPECT_FALSE, TEST
|
||||||
|
#include <stddef.h> // for size_t
|
||||||
#include <array> // for array
|
#include <array> // for array
|
||||||
#include <ftxui/component/mouse.hpp> // for Mouse, Mouse::Left, Mouse::Pressed, Mouse::Released
|
#include <ftxui/component/mouse.hpp> // for Mouse, Mouse::Left, Mouse::Pressed, Mouse::Released
|
||||||
#include <ftxui/dom/elements.hpp> // for GaugeDirection, GaugeDirection::Down, GaugeDirection::Left, GaugeDirection::Right, GaugeDirection::Up
|
#include <ftxui/dom/elements.hpp> // for GaugeDirection, GaugeDirection::Down, GaugeDirection::Left, GaugeDirection::Right, GaugeDirection::Up, frame
|
||||||
#include <memory> // for __shared_ptr_access, shared_ptr, allocator
|
#include <memory> // for shared_ptr, __shared_ptr_access, allocator
|
||||||
|
#include <string> // for to_string
|
||||||
|
|
||||||
#include "ftxui/component/component.hpp" // for Slider
|
#include "ftxui/component/component.hpp" // for Slider, Vertical, operator|=
|
||||||
#include "ftxui/component/component_base.hpp" // for ComponentBase
|
#include "ftxui/component/component_base.hpp" // for ComponentBase
|
||||||
#include "ftxui/component/event.hpp" // for Event
|
#include "ftxui/component/event.hpp" // for Event, Event::ArrowDown
|
||||||
#include "ftxui/dom/node.hpp" // for Render
|
#include "ftxui/dom/node.hpp" // for Render
|
||||||
#include "ftxui/screen/screen.hpp" // for Screen
|
#include "ftxui/screen/screen.hpp" // for Screen
|
||||||
|
|
||||||
@ -133,7 +135,7 @@ TEST(SliderTest, Up) {
|
|||||||
TEST(SliderTest, Focus) {
|
TEST(SliderTest, Focus) {
|
||||||
static std::array<int, 10> values;
|
static std::array<int, 10> values;
|
||||||
auto container = Container::Vertical({});
|
auto container = Container::Vertical({});
|
||||||
for(size_t i = 0; i<values.size(); ++i) {
|
for (size_t i = 0; i < values.size(); ++i) {
|
||||||
container->Add(Slider(std::to_string(i), &values[i]));
|
container->Add(Slider(std::to_string(i), &values[i]));
|
||||||
}
|
}
|
||||||
container |= frame;
|
container |= frame;
|
||||||
|
@ -27,7 +27,7 @@ Element vscroll_indicator(Element child) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void SetBox(Box box) override {
|
void SetBox(Box box) override {
|
||||||
Node::SetBox(box);
|
box_ = box;
|
||||||
box.x_max--;
|
box.x_max--;
|
||||||
children_[0]->SetBox(box);
|
children_[0]->SetBox(box);
|
||||||
}
|
}
|
||||||
|
@ -109,7 +109,7 @@ namespace {
|
|||||||
Element MakeHorizontalFlexboxList(int n) {
|
Element MakeHorizontalFlexboxList(int n) {
|
||||||
Elements list;
|
Elements list;
|
||||||
for (int i = 0; i < n; ++i) {
|
for (int i = 0; i < n; ++i) {
|
||||||
list.push_back(text(std::to_string(i%10)));
|
list.push_back(text(std::to_string(i % 10)));
|
||||||
}
|
}
|
||||||
return flexbox(std::move(list)) | vscroll_indicator | yframe | border;
|
return flexbox(std::move(list)) | vscroll_indicator | yframe | border;
|
||||||
}
|
}
|
||||||
@ -194,7 +194,7 @@ TEST(ScrollIndicator, HorizontalFlexbox) {
|
|||||||
"╰────╯");
|
"╰────╯");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} // namespace
|
||||||
|
|
||||||
} // namespace ftxui
|
} // namespace ftxui
|
||||||
|
|
||||||
|
@ -49,6 +49,7 @@ void WindowsEmulateVT100Terminal() {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// NOLINTNEXTLINE(readability-function-cognitive-complexity)
|
||||||
void UpdatePixelStyle(std::stringstream& ss,
|
void UpdatePixelStyle(std::stringstream& ss,
|
||||||
Pixel& previous,
|
Pixel& previous,
|
||||||
const Pixel& next) {
|
const Pixel& next) {
|
||||||
|
Loading…
Reference in New Issue
Block a user