This commit is contained in:
ArthurSonzogni
2024-12-01 17:44:06 +01:00
parent c1c4caf24f
commit 07202b7757
11 changed files with 22 additions and 32 deletions

View File

@@ -113,8 +113,6 @@ Decorator focusPositionRelative(float x, float y);
Element automerge(Element child);
Decorator hyperlink(std::string link);
Element hyperlink(std::string link, Element child);
Element selectable(Element child);
Decorator selectable(void);
// --- Layout is
// Horizontal, Vertical or stacked set of elements.

View File

@@ -4,7 +4,6 @@
#ifndef FTXUI_DOM_NODE_HPP
#define FTXUI_DOM_NODE_HPP
#include <list> // for list
#include <memory> // for shared_ptr
#include <vector> // for vector
@@ -58,7 +57,6 @@ class Node {
};
virtual void Check(Status* status);
protected:
Elements children_;
Requirement requirement_;

View File

@@ -18,7 +18,6 @@ class Selection {
Selection SaturateHorizontal(Box box);
Selection SaturateVertical(Box box);
private:
Selection* const parent_ = nullptr;
const int start_x_;