Align list items, dont process selected item twice if changed in event loop, mouse button events should only occur when pressing left mouse button

This commit is contained in:
dec05eba
2024-08-03 23:36:11 +02:00
parent c080342fcd
commit 3a20c417cb
13 changed files with 94 additions and 54 deletions

View File

@@ -12,7 +12,13 @@ namespace gsr {
HORIZONTAL
};
List(Orientation orientation);
enum class Alignment {
START,
CENTER,
END
};
List(Orientation orientation, Alignment content_alignment = Alignment::START);
List(const List&) = delete;
List& operator=(const List&) = delete;
@@ -24,5 +30,6 @@ namespace gsr {
protected:
std::vector<std::unique_ptr<Widget>> widgets;
Orientation orientation;
Alignment content_alignment;
};
}