Sdk/Widget: Add Canvas system, mouse movement event for widgets (buttons react to hovering)
Former-commit-id: 685295853d1f0edf28c36b2f698eca881da25ea2 [formerly f65f951ed3d2edfd9c12d390837cd13e5691eaa3] [formerly 5e239f37c28bf5e93a71cba29a94f0de680a79a2 [formerly 38346fa5d68c7bf79ddebc1990959e7c56617640]] Former-commit-id: 92da4ed40fb63fe0b02c7543ea64cebda0575623 [formerly 2db1fe5fca87a1461ceb8314709d764af079a7be] Former-commit-id: 77d61a99fd5a2bb21701fbe4a4b4451c3655663a
This commit is contained in:
parent
136fb65a6d
commit
72206a3ca3
|
|
@ -16,12 +16,16 @@
|
||||||
|
|
||||||
namespace Ndk
|
namespace Ndk
|
||||||
{
|
{
|
||||||
|
class Canvas;
|
||||||
|
|
||||||
class NDK_API BaseWidget : public Nz::Node
|
class NDK_API BaseWidget : public Nz::Node
|
||||||
{
|
{
|
||||||
|
friend Canvas;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
struct Padding;
|
struct Padding;
|
||||||
|
|
||||||
inline BaseWidget(WorldHandle world, BaseWidget* parent = nullptr);
|
BaseWidget(BaseWidget* parent);
|
||||||
BaseWidget(const BaseWidget&) = delete;
|
BaseWidget(const BaseWidget&) = delete;
|
||||||
BaseWidget(BaseWidget&&) = default;
|
BaseWidget(BaseWidget&&) = default;
|
||||||
virtual ~BaseWidget();
|
virtual ~BaseWidget();
|
||||||
|
|
@ -32,6 +36,7 @@ namespace Ndk
|
||||||
|
|
||||||
//virtual BaseWidget* Clone() const = 0;
|
//virtual BaseWidget* Clone() const = 0;
|
||||||
|
|
||||||
|
inline Canvas* GetCanvas();
|
||||||
inline const Padding& GetPadding() const;
|
inline const Padding& GetPadding() const;
|
||||||
inline const Nz::Vector2f& GetContentSize() const;
|
inline const Nz::Vector2f& GetContentSize() const;
|
||||||
inline Nz::Vector2f GetSize() const;
|
inline Nz::Vector2f GetSize() const;
|
||||||
|
|
@ -57,10 +62,21 @@ namespace Ndk
|
||||||
EntityHandle CreateEntity();
|
EntityHandle CreateEntity();
|
||||||
void DestroyEntity(Entity* entity);
|
void DestroyEntity(Entity* entity);
|
||||||
virtual void Layout();
|
virtual void Layout();
|
||||||
|
void InvalidateNode() override;
|
||||||
|
|
||||||
|
virtual void OnMouseEnter();
|
||||||
|
virtual void OnMouseMoved(int x, int y, int deltaX, int deltaY);
|
||||||
|
virtual void OnMouseExit();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
inline BaseWidget();
|
||||||
|
|
||||||
|
inline void UpdateCanvasIndex(std::size_t index);
|
||||||
|
|
||||||
|
std::size_t m_canvasIndex;
|
||||||
std::vector<EntityOwner> m_entities;
|
std::vector<EntityOwner> m_entities;
|
||||||
std::vector<BaseWidget*> m_children;
|
std::vector<std::unique_ptr<BaseWidget>> m_children;
|
||||||
|
Canvas* m_canvas;
|
||||||
EntityOwner m_backgroundEntity;
|
EntityOwner m_backgroundEntity;
|
||||||
Padding m_padding;
|
Padding m_padding;
|
||||||
WorldHandle m_world;
|
WorldHandle m_world;
|
||||||
|
|
|
||||||
|
|
@ -8,18 +8,23 @@
|
||||||
|
|
||||||
namespace Ndk
|
namespace Ndk
|
||||||
{
|
{
|
||||||
inline BaseWidget::BaseWidget(WorldHandle world, BaseWidget* parent) :
|
inline BaseWidget::BaseWidget() :
|
||||||
m_world(std::move(world)),
|
|
||||||
m_backgroundColor(Nz::Color(230, 230, 230, 255)),
|
m_backgroundColor(Nz::Color(230, 230, 230, 255)),
|
||||||
|
m_canvas(nullptr),
|
||||||
m_contentSize(50.f, 50.f),
|
m_contentSize(50.f, 50.f),
|
||||||
m_widgetParent(parent)
|
m_widgetParent(nullptr)
|
||||||
{
|
{
|
||||||
SetPadding(5.f, 5.f, 5.f, 5.f);
|
SetPadding(5.f, 5.f, 5.f, 5.f);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void BaseWidget::AddChild(std::unique_ptr<BaseWidget>&& widget)
|
inline void BaseWidget::AddChild(std::unique_ptr<BaseWidget>&& widget)
|
||||||
{
|
{
|
||||||
m_children.push_back(widget.release());
|
m_children.emplace_back(std::move(widget));
|
||||||
|
}
|
||||||
|
|
||||||
|
inline Canvas* BaseWidget::GetCanvas()
|
||||||
|
{
|
||||||
|
return m_canvas;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline const BaseWidget::Padding& BaseWidget::GetPadding() const
|
inline const BaseWidget::Padding& BaseWidget::GetPadding() const
|
||||||
|
|
@ -53,4 +58,9 @@ namespace Ndk
|
||||||
|
|
||||||
Layout();
|
Layout();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline void BaseWidget::UpdateCanvasIndex(std::size_t index)
|
||||||
|
{
|
||||||
|
m_canvasIndex = index;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
||||||
|
// Copyright (C) 2015 Jérôme Leclercq
|
||||||
|
// This file is part of the "Nazara Development Kit"
|
||||||
|
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef NDK_CANVAS_HPP
|
||||||
|
#define NDK_CANVAS_HPP
|
||||||
|
|
||||||
|
#include <NDK/Prerequesites.hpp>
|
||||||
|
#include <NDK/BaseWidget.hpp>
|
||||||
|
#include <Nazara/Utility/EventHandler.hpp>
|
||||||
|
|
||||||
|
namespace Ndk
|
||||||
|
{
|
||||||
|
class NDK_API Canvas : public BaseWidget
|
||||||
|
{
|
||||||
|
friend BaseWidget;
|
||||||
|
|
||||||
|
public:
|
||||||
|
struct Padding;
|
||||||
|
|
||||||
|
inline Canvas(WorldHandle world, Nz::EventHandler& eventHandler);
|
||||||
|
Canvas(const Canvas&) = delete;
|
||||||
|
Canvas(Canvas&&) = delete;
|
||||||
|
~Canvas() = default;
|
||||||
|
|
||||||
|
inline const WorldHandle& GetWorld() const;
|
||||||
|
|
||||||
|
void ResizeToContent() override;
|
||||||
|
|
||||||
|
Canvas& operator=(const Canvas&) = delete;
|
||||||
|
Canvas& operator=(Canvas&&) = delete;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void Layout() override;
|
||||||
|
|
||||||
|
void NotifyWidgetUpdate(std::size_t index);
|
||||||
|
std::size_t RegisterWidget(BaseWidget* widget);
|
||||||
|
void UnregisterWidget(std::size_t index);
|
||||||
|
|
||||||
|
private:
|
||||||
|
void OnMouseMoved(const Nz::EventHandler* eventHandler, const Nz::WindowEvent::MouseMoveEvent& event);
|
||||||
|
|
||||||
|
struct WidgetBox
|
||||||
|
{
|
||||||
|
BaseWidget* widget;
|
||||||
|
Nz::Boxf box;
|
||||||
|
};
|
||||||
|
|
||||||
|
NazaraSlot(Nz::EventHandler, OnMouseMoved, m_mouseMovedSlot);
|
||||||
|
|
||||||
|
std::vector<WidgetBox> m_widgetBoxes;
|
||||||
|
BaseWidget* m_hoveredWidget;
|
||||||
|
WorldHandle m_world;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#include <NDK/Canvas.inl>
|
||||||
|
|
||||||
|
#endif // NDK_CANVAS_HPP
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
// Copyright (C) 2015 Jérôme Leclercq
|
||||||
|
// This file is part of the "Nazara Development Kit"
|
||||||
|
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
||||||
|
|
||||||
|
#include <NDK/Canvas.hpp>
|
||||||
|
|
||||||
|
namespace Ndk
|
||||||
|
{
|
||||||
|
inline Canvas::Canvas(WorldHandle world, Nz::EventHandler& eventHandler) :
|
||||||
|
m_hoveredWidget(nullptr),
|
||||||
|
m_world(std::move(world))
|
||||||
|
{
|
||||||
|
m_canvas = this;
|
||||||
|
|
||||||
|
m_mouseMovedSlot.Connect(eventHandler.OnMouseMoved, this, &Canvas::OnMouseMoved);
|
||||||
|
}
|
||||||
|
|
||||||
|
inline const WorldHandle& Canvas::GetWorld() const
|
||||||
|
{
|
||||||
|
return m_world;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -20,7 +20,7 @@ namespace Ndk
|
||||||
class NDK_API ButtonWidget : public BaseWidget
|
class NDK_API ButtonWidget : public BaseWidget
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ButtonWidget(const WorldHandle& world, BaseWidget* parent = nullptr);
|
ButtonWidget(BaseWidget* parent = nullptr);
|
||||||
ButtonWidget(const ButtonWidget&) = delete;
|
ButtonWidget(const ButtonWidget&) = delete;
|
||||||
ButtonWidget(ButtonWidget&&) = default;
|
ButtonWidget(ButtonWidget&&) = default;
|
||||||
~ButtonWidget() = default;
|
~ButtonWidget() = default;
|
||||||
|
|
@ -37,6 +37,10 @@ namespace Ndk
|
||||||
private:
|
private:
|
||||||
void Layout() override;
|
void Layout() override;
|
||||||
|
|
||||||
|
void OnMouseEnter() override;
|
||||||
|
void OnMouseMoved(int x, int y, int deltaX, int deltaY) override;
|
||||||
|
void OnMouseExit() override;
|
||||||
|
|
||||||
EntityHandle m_textEntity;
|
EntityHandle m_textEntity;
|
||||||
EntityHandle m_gradientEntity;
|
EntityHandle m_gradientEntity;
|
||||||
Nz::SpriteRef m_gradientSprite;
|
Nz::SpriteRef m_gradientSprite;
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ namespace Ndk
|
||||||
class NDK_API LabelWidget : public BaseWidget
|
class NDK_API LabelWidget : public BaseWidget
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
LabelWidget(const WorldHandle& world, BaseWidget* parent = nullptr);
|
LabelWidget(BaseWidget* parent = nullptr);
|
||||||
LabelWidget(const LabelWidget&) = delete;
|
LabelWidget(const LabelWidget&) = delete;
|
||||||
LabelWidget(LabelWidget&&) = default;
|
LabelWidget(LabelWidget&&) = default;
|
||||||
~LabelWidget() = default;
|
~LabelWidget() = default;
|
||||||
|
|
|
||||||
|
|
@ -3,16 +3,28 @@
|
||||||
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
||||||
|
|
||||||
#include <NDK/BaseWidget.hpp>
|
#include <NDK/BaseWidget.hpp>
|
||||||
|
#include <NDK/Canvas.hpp>
|
||||||
#include <NDK/Components/GraphicsComponent.hpp>
|
#include <NDK/Components/GraphicsComponent.hpp>
|
||||||
#include <NDK/Components/NodeComponent.hpp>
|
#include <NDK/Components/NodeComponent.hpp>
|
||||||
#include <NDK/World.hpp>
|
#include <NDK/World.hpp>
|
||||||
|
|
||||||
namespace Ndk
|
namespace Ndk
|
||||||
{
|
{
|
||||||
|
BaseWidget::BaseWidget(BaseWidget* parent) :
|
||||||
|
BaseWidget()
|
||||||
|
{
|
||||||
|
NazaraAssert(parent, "Invalid parent");
|
||||||
|
NazaraAssert(parent->GetCanvas(), "Parent has no canvas");
|
||||||
|
|
||||||
|
m_canvas = parent->GetCanvas();
|
||||||
|
m_world = m_canvas->GetWorld();
|
||||||
|
|
||||||
|
m_canvasIndex = m_canvas->RegisterWidget(this);
|
||||||
|
}
|
||||||
|
|
||||||
BaseWidget::~BaseWidget()
|
BaseWidget::~BaseWidget()
|
||||||
{
|
{
|
||||||
for (BaseWidget* child : m_children)
|
m_canvas->UnregisterWidget(m_canvasIndex);
|
||||||
delete child;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void BaseWidget::EnableBackground(bool enable)
|
inline void BaseWidget::EnableBackground(bool enable)
|
||||||
|
|
@ -60,6 +72,9 @@ namespace Ndk
|
||||||
|
|
||||||
void BaseWidget::Layout()
|
void BaseWidget::Layout()
|
||||||
{
|
{
|
||||||
|
if (m_canvas)
|
||||||
|
m_canvas->NotifyWidgetUpdate(m_canvasIndex);
|
||||||
|
|
||||||
if (m_backgroundEntity)
|
if (m_backgroundEntity)
|
||||||
{
|
{
|
||||||
NodeComponent& node = m_backgroundEntity->GetComponent<NodeComponent>();
|
NodeComponent& node = m_backgroundEntity->GetComponent<NodeComponent>();
|
||||||
|
|
@ -68,4 +83,24 @@ namespace Ndk
|
||||||
m_backgroundSprite->SetSize(m_contentSize.x + m_padding.left + m_padding.right, m_contentSize.y + m_padding.top + m_padding.bottom);
|
m_backgroundSprite->SetSize(m_contentSize.x + m_padding.left + m_padding.right, m_contentSize.y + m_padding.top + m_padding.bottom);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void BaseWidget::InvalidateNode()
|
||||||
|
{
|
||||||
|
Node::InvalidateNode();
|
||||||
|
|
||||||
|
if (m_canvas)
|
||||||
|
m_canvas->NotifyWidgetUpdate(m_canvasIndex);
|
||||||
|
}
|
||||||
|
|
||||||
|
void BaseWidget::OnMouseEnter()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void BaseWidget::OnMouseMoved(int x, int y, int deltaX, int deltaY)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void BaseWidget::OnMouseExit()
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -0,0 +1,102 @@
|
||||||
|
// Copyright (C) 2015 Jérôme Leclercq
|
||||||
|
// This file is part of the "Nazara Development Kit"
|
||||||
|
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
||||||
|
|
||||||
|
#include <NDK/Canvas.hpp>
|
||||||
|
#include <NDK/Components/GraphicsComponent.hpp>
|
||||||
|
#include <NDK/Components/NodeComponent.hpp>
|
||||||
|
#include <NDK/World.hpp>
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
|
namespace Ndk
|
||||||
|
{
|
||||||
|
void Ndk::Canvas::ResizeToContent()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void Canvas::Layout()
|
||||||
|
{
|
||||||
|
if (m_backgroundEntity)
|
||||||
|
{
|
||||||
|
NodeComponent& node = m_backgroundEntity->GetComponent<NodeComponent>();
|
||||||
|
node.SetPosition(-m_padding.left, -m_padding.top);
|
||||||
|
|
||||||
|
m_backgroundSprite->SetSize(m_contentSize.x + m_padding.left + m_padding.right, m_contentSize.y + m_padding.top + m_padding.bottom);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Canvas::NotifyWidgetUpdate(std::size_t index)
|
||||||
|
{
|
||||||
|
WidgetBox& entry = m_widgetBoxes[index];
|
||||||
|
|
||||||
|
Nz::Vector3f pos = entry.widget->GetPosition();
|
||||||
|
Nz::Vector2f size = entry.widget->GetContentSize();
|
||||||
|
|
||||||
|
entry.box.Set(pos.x, pos.y, pos.z, size.x, size.y, 1.f);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::size_t Canvas::RegisterWidget(BaseWidget* widget)
|
||||||
|
{
|
||||||
|
WidgetBox box;
|
||||||
|
box.widget = widget;
|
||||||
|
|
||||||
|
std::size_t index = m_widgetBoxes.size();
|
||||||
|
m_widgetBoxes.emplace_back(box);
|
||||||
|
|
||||||
|
NotifyWidgetUpdate(index);
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Canvas::UnregisterWidget(std::size_t index)
|
||||||
|
{
|
||||||
|
if (m_widgetBoxes.size() > 1U)
|
||||||
|
{
|
||||||
|
WidgetBox& entry = m_widgetBoxes[index];
|
||||||
|
WidgetBox& lastEntry = m_widgetBoxes.back();
|
||||||
|
|
||||||
|
entry = std::move(lastEntry);
|
||||||
|
entry.widget->UpdateCanvasIndex(index);
|
||||||
|
m_widgetBoxes.pop_back();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Canvas::OnMouseMoved(const Nz::EventHandler* eventHandler, const Nz::WindowEvent::MouseMoveEvent& event)
|
||||||
|
{
|
||||||
|
const WidgetBox* bestEntry = nullptr;
|
||||||
|
float bestEntryArea = std::numeric_limits<float>::infinity();
|
||||||
|
|
||||||
|
for (const WidgetBox& entry : m_widgetBoxes)
|
||||||
|
{
|
||||||
|
const Nz::Boxf& box = entry.box;
|
||||||
|
|
||||||
|
if (box.Contains(Nz::Vector3f(event.x, event.y, 0.f)))
|
||||||
|
{
|
||||||
|
float area = box.width * box.height;
|
||||||
|
if (area < bestEntryArea)
|
||||||
|
{
|
||||||
|
bestEntry = &entry;
|
||||||
|
bestEntryArea = area;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bestEntry)
|
||||||
|
{
|
||||||
|
if (m_hoveredWidget != bestEntry->widget)
|
||||||
|
{
|
||||||
|
if (m_hoveredWidget)
|
||||||
|
m_hoveredWidget->OnMouseExit();
|
||||||
|
|
||||||
|
m_hoveredWidget = bestEntry->widget;
|
||||||
|
m_hoveredWidget->OnMouseEnter();
|
||||||
|
}
|
||||||
|
|
||||||
|
bestEntry->widget->OnMouseMoved(event.x - bestEntry->box.x, event.y - bestEntry->box.y, event.deltaX, event.deltaY);
|
||||||
|
}
|
||||||
|
else if (m_hoveredWidget)
|
||||||
|
{
|
||||||
|
m_hoveredWidget->OnMouseExit();
|
||||||
|
m_hoveredWidget = nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
|
|
||||||
namespace Ndk
|
namespace Ndk
|
||||||
{
|
{
|
||||||
ButtonWidget::ButtonWidget(const WorldHandle& world, BaseWidget* parent) :
|
ButtonWidget::ButtonWidget(BaseWidget* parent) :
|
||||||
BaseWidget(world, parent)
|
BaseWidget(parent)
|
||||||
{
|
{
|
||||||
m_gradientSprite = Nz::Sprite::New();
|
m_gradientSprite = Nz::Sprite::New();
|
||||||
m_gradientSprite->SetColor(Nz::Color(74, 74, 74));
|
m_gradientSprite->SetColor(Nz::Color(74, 74, 74));
|
||||||
|
|
@ -21,13 +21,14 @@ namespace Ndk
|
||||||
m_gradientEntity = CreateEntity();
|
m_gradientEntity = CreateEntity();
|
||||||
m_gradientEntity->AddComponent<NodeComponent>().SetParent(this);
|
m_gradientEntity->AddComponent<NodeComponent>().SetParent(this);
|
||||||
m_gradientEntity->AddComponent<GraphicsComponent>().Attach(m_gradientSprite);
|
m_gradientEntity->AddComponent<GraphicsComponent>().Attach(m_gradientSprite);
|
||||||
m_gradientEntity->GetComponent<GraphicsComponent>().Attach(m_borderSprite, Nz::Matrix4f::Translate(Nz::Vector2f(-1.f, -1.f)), -1);
|
|
||||||
|
|
||||||
m_textSprite = Nz::TextSprite::New();
|
m_textSprite = Nz::TextSprite::New();
|
||||||
|
|
||||||
m_textEntity = CreateEntity();
|
m_textEntity = CreateEntity();
|
||||||
m_textEntity->AddComponent<NodeComponent>().SetParent(this);
|
m_textEntity->AddComponent<NodeComponent>().SetParent(this);
|
||||||
m_textEntity->AddComponent<GraphicsComponent>().Attach(m_textSprite, 1);
|
m_textEntity->AddComponent<GraphicsComponent>().Attach(m_textSprite, 1);
|
||||||
|
|
||||||
|
Layout();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ButtonWidget::ResizeToContent()
|
void ButtonWidget::ResizeToContent()
|
||||||
|
|
@ -37,6 +38,8 @@ namespace Ndk
|
||||||
|
|
||||||
void ButtonWidget::Layout()
|
void ButtonWidget::Layout()
|
||||||
{
|
{
|
||||||
|
BaseWidget::Layout();
|
||||||
|
|
||||||
const Nz::Vector2f& contentSize = GetContentSize();
|
const Nz::Vector2f& contentSize = GetContentSize();
|
||||||
|
|
||||||
m_gradientSprite->SetSize(contentSize);
|
m_gradientSprite->SetSize(contentSize);
|
||||||
|
|
@ -44,4 +47,19 @@ namespace Ndk
|
||||||
Nz::Boxf textBox = m_textEntity->GetComponent<GraphicsComponent>().GetBoundingVolume().aabb;
|
Nz::Boxf textBox = m_textEntity->GetComponent<GraphicsComponent>().GetBoundingVolume().aabb;
|
||||||
m_textEntity->GetComponent<NodeComponent>().SetPosition(contentSize.x / 2 - textBox.width / 2, contentSize.y / 2 - textBox.height / 2);
|
m_textEntity->GetComponent<NodeComponent>().SetPosition(contentSize.x / 2 - textBox.width / 2, contentSize.y / 2 - textBox.height / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ButtonWidget::OnMouseEnter()
|
||||||
|
{
|
||||||
|
m_gradientSprite->SetColor(Nz::Color(128, 128, 128));
|
||||||
|
}
|
||||||
|
|
||||||
|
void ButtonWidget::OnMouseMoved(int x, int y, int deltaX, int deltaY)
|
||||||
|
{
|
||||||
|
NazaraDebug(Nz::String::Number(x) + ", " + Nz::String::Number(y));
|
||||||
|
}
|
||||||
|
|
||||||
|
void ButtonWidget::OnMouseExit()
|
||||||
|
{
|
||||||
|
m_gradientSprite->SetColor(Nz::Color(74, 74, 74));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,14 +9,16 @@
|
||||||
|
|
||||||
namespace Ndk
|
namespace Ndk
|
||||||
{
|
{
|
||||||
LabelWidget::LabelWidget(const WorldHandle& world, BaseWidget* parent) :
|
LabelWidget::LabelWidget(BaseWidget* parent) :
|
||||||
BaseWidget(world, parent)
|
BaseWidget(parent)
|
||||||
{
|
{
|
||||||
m_textSprite = Nz::TextSprite::New();
|
m_textSprite = Nz::TextSprite::New();
|
||||||
|
|
||||||
m_textEntity = CreateEntity();
|
m_textEntity = CreateEntity();
|
||||||
m_textEntity->AddComponent<GraphicsComponent>().Attach(m_textSprite);
|
m_textEntity->AddComponent<GraphicsComponent>().Attach(m_textSprite);
|
||||||
m_textEntity->AddComponent<NodeComponent>().SetParent(this);
|
m_textEntity->AddComponent<NodeComponent>().SetParent(this);
|
||||||
|
|
||||||
|
Layout();
|
||||||
}
|
}
|
||||||
|
|
||||||
void LabelWidget::ResizeToContent()
|
void LabelWidget::ResizeToContent()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue