Remove toggle.hpp

This commit is contained in:
ArthurSonzogni
2021-07-10 13:15:28 +02:00
committed by Arthur Sonzogni
parent bead2134d6
commit 7f514ff41c
5 changed files with 108 additions and 141 deletions

View File

@@ -74,6 +74,8 @@ struct ToggleOption {
std::function<void()> on_change = [] {};
/// Called when the user presses enter.
std::function<void()> on_enter = [] {};
Ref<int> focused_entry = 0;
};
}; // namespace ftxui

View File

@@ -1,51 +0,0 @@
#ifndef FTXUI_COMPONENT_TOGGLE_H_
#define FTXUI_COMPONENT_TOGGLE_H_
#include <functional> // for function
#include <string> // for wstring
#include <vector> // for vector
#include "ftxui/component/component.hpp" // for Component
#include "ftxui/component/component_base.hpp" // for ComponentBase
#include "ftxui/dom/elements.hpp" // for Element, Decorator, operator|, bold, dim, inverted
#include "ftxui/screen/box.hpp" // for Box
namespace ftxui {
struct Event;
/// @brief An horizontal list of elements. The user can navigate through them.
/// @ingroup component
class ToggleBase : public ComponentBase {
public:
// Access this interface from a Component
static ToggleBase* From(Component component);
// Constructor.
ToggleBase(const std::vector<std::wstring>* entries,
int* selected,
Ref<ToggleOption> option = {});
~ToggleBase() override = default;
// State.
int focused = 0;
// Component implementation.
Element Render() override;
bool OnEvent(Event) override;
protected:
const std::vector<std::wstring>* const entries_;
int* selected_ = 0;
bool OnMouseEvent(Event event);
std::vector<Box> boxes_;
Ref<ToggleOption> option_;
};
} // namespace ftxui
#endif /* end of include guard: FTXUI_COMPONENT_TOGGLE_H_ */
// Copyright 2020 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.