140 lines
No EOL
3 KiB
C++
140 lines
No EOL
3 KiB
C++
#pragma once
|
|
|
|
#include "Widget.hpp"
|
|
|
|
#include <functional>
|
|
|
|
namespace tp {
|
|
class LabelWidget : public Widget {
|
|
public:
|
|
LabelWidget() : Widget() {
|
|
setDebug("label", { 0.1, 0.1, 0.1, 0.1 });
|
|
}
|
|
|
|
void setText(const std::string& text);
|
|
|
|
[[nodiscard]] const std::string& getText() const;
|
|
|
|
void draw(Canvas& canvas) override;
|
|
|
|
[[nodiscard]] bool processesEvents() const override { return false; }
|
|
|
|
private:
|
|
std::string mText = "Text";
|
|
|
|
halnf mPadding = 5;
|
|
RGBA mColor = 1.f;
|
|
halnf mSize = 17.f;
|
|
};
|
|
|
|
class ButtonWidget : public LabelWidget {
|
|
public:
|
|
ButtonWidget();
|
|
|
|
void setAction(const std::function<void()>& action);
|
|
|
|
void process(const EventHandler& eventHandler) override;
|
|
void draw(Canvas& canvas) override;
|
|
|
|
void mouseEnter() override;
|
|
void mouseLeave() override;
|
|
|
|
[[nodiscard]] bool processesEvents() const override { return true; }
|
|
[[nodiscard]] bool needsNextFrame() const override;
|
|
|
|
void endAnimations() override;
|
|
void updateAnimations() override;
|
|
|
|
void setColor(const RGBA& in);
|
|
|
|
private:
|
|
std::function<void()> mAction;
|
|
|
|
SpringRect mColorAnimated;
|
|
|
|
halnf mRounding = 5;
|
|
RGBA mColorHovered = { 0.0f, 0.4f, 0.4f, 1.f };
|
|
RGBA mColor = { 0.13f, 0.13f, 0.13f, 1.f };
|
|
};
|
|
|
|
class SliderWidget : public Widget {
|
|
enum State {
|
|
IDLE,
|
|
HOVER,
|
|
SLIDING,
|
|
};
|
|
|
|
public:
|
|
SliderWidget() = default;
|
|
|
|
void process(const EventHandler& eventHandler) override;
|
|
void draw(Canvas& canvas) override;
|
|
|
|
[[nodiscard]] bool processesEvents() const override { return true; }
|
|
[[nodiscard]] bool needsNextFrame() const override { return mState != IDLE; }
|
|
|
|
[[nodiscard]] halnf val() const { return mFactor; }
|
|
|
|
private:
|
|
[[nodiscard]] RectF getHandleArea() const;
|
|
|
|
private:
|
|
halnf mFactor = 0;
|
|
State mState = IDLE;
|
|
|
|
private:
|
|
halnf mHandleSize = 20;
|
|
halnf mRounding = 5;
|
|
|
|
RGBA mColorActive = { 0.99f, 0.99f, 0.99f, 1.f };
|
|
RGBA mColorHovered = { 0.9f, 0.9f, 0.9f, 1.f };
|
|
RGBA mColorIdle = { 0.8f, 0.8f, 0.8f, 1.f };
|
|
RGBA mColorBG = { 0.3f, 0.3f, 0.3f, 1.0f };
|
|
};
|
|
|
|
class PopupWidget : public Widget {
|
|
public:
|
|
PopupWidget() = default;
|
|
|
|
public:
|
|
void process(const EventHandler& events) override;
|
|
void draw(Canvas& canvas) override;
|
|
|
|
void open(Widget* parent, const RectF& at);
|
|
[[nodiscard]] bool processesEvents() const override { return true; }
|
|
|
|
private:
|
|
RectF mParentArea {};
|
|
RGBA col = RGBA(0.03f, 0.03f, 0.03f, 0.9f);
|
|
halnf rounding = 5;
|
|
halnf borders = 2;
|
|
};
|
|
|
|
class HoverPopupTriggerWidget : public LabelWidget {
|
|
public:
|
|
enum ExpandDirection {
|
|
Right,
|
|
Bottom,
|
|
};
|
|
|
|
public:
|
|
HoverPopupTriggerWidget() = default;
|
|
|
|
[[nodiscard]] bool processesEvents() const override { return true; }
|
|
void mouseEnter() override;
|
|
|
|
void draw(Canvas& canvas) override;
|
|
|
|
PopupWidget* getPopup();
|
|
void setDirection(ExpandDirection dir) { mDirection = dir; }
|
|
|
|
private:
|
|
PopupWidget mPopup;
|
|
|
|
private:
|
|
ExpandDirection mDirection = Bottom;
|
|
RGBA col = RGBA(0.03f, 0.03f, 0.03f, 0.07f);
|
|
halnf rounding = 5;
|
|
halnf gap = 7;
|
|
};
|
|
} |