New DockspaceWidget Stable

This commit is contained in:
IlyaShurupov 2024-06-25 23:27:21 +03:00 committed by Ilya Shurupov
parent 9cc4819524
commit 242cd93589
8 changed files with 339 additions and 7 deletions

View file

@ -2,6 +2,8 @@
#include "LabelWidget.hpp"
#include <functional>
namespace tp {
class ButtonWidget : public Widget {
@ -23,5 +25,7 @@ namespace tp {
RGBA hoveredColor;
RGBA accentColor;
halnf rounding = 0;
std::function<void()> mCallback = [](){};
};
}