2019-04-11 14:40:54 +08:00
|
|
|
// Copyright (c) 2016-2018 Kiwano - Nomango
|
2019-03-31 01:37:06 +08:00
|
|
|
//
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
//
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
|
//
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
#include "Button.h"
|
|
|
|
|
#include "../2d/Scene.h"
|
2019-07-30 14:58:24 +08:00
|
|
|
#include "../base/window.h"
|
2019-03-31 01:37:06 +08:00
|
|
|
|
2019-04-11 14:40:54 +08:00
|
|
|
namespace kiwano
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
|
|
|
|
Button::Button()
|
|
|
|
|
: enabled_(true)
|
|
|
|
|
, is_selected_(false)
|
|
|
|
|
, click_callback_(nullptr)
|
|
|
|
|
, status_(Status::Normal)
|
|
|
|
|
{
|
|
|
|
|
SetResponsible(true);
|
|
|
|
|
|
2019-04-08 14:15:27 +08:00
|
|
|
AddListener(Event::MouseHover, MakeClosure(this, &Button::UpdateStatus));
|
|
|
|
|
AddListener(Event::MouseOut, MakeClosure(this, &Button::UpdateStatus));
|
|
|
|
|
AddListener(Event::MouseBtnDown, MakeClosure(this, &Button::UpdateStatus));
|
|
|
|
|
AddListener(Event::MouseBtnUp, MakeClosure(this, &Button::UpdateStatus));
|
2019-03-31 01:37:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Button::Button(const Callback& click)
|
|
|
|
|
: Button()
|
|
|
|
|
{
|
|
|
|
|
this->SetClickCallback(click);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Button::Button(Callback const & click, Callback const & pressed, Callback const & mouse_over, Callback const & mouse_out)
|
|
|
|
|
: Button()
|
|
|
|
|
{
|
|
|
|
|
this->SetClickCallback(click);
|
|
|
|
|
this->SetPressedCallback(pressed);
|
|
|
|
|
this->SetMouseOverCallback(mouse_over);
|
|
|
|
|
this->SetMouseOutCallback(mouse_out);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Button::~Button()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Button::IsEnable() const
|
|
|
|
|
{
|
|
|
|
|
return enabled_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Button::SetEnabled(bool enabled)
|
|
|
|
|
{
|
|
|
|
|
if (enabled_ != enabled)
|
|
|
|
|
{
|
|
|
|
|
enabled_ = enabled;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Button::SetClickCallback(const Callback& func)
|
|
|
|
|
{
|
|
|
|
|
click_callback_ = func;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Button::SetPressedCallback(const Callback & func)
|
|
|
|
|
{
|
|
|
|
|
pressed_callback_ = func;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-03 15:27:18 +08:00
|
|
|
void Button::SetReleasedCallback(const Callback& func)
|
|
|
|
|
{
|
|
|
|
|
released_callback_ = func;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-31 01:37:06 +08:00
|
|
|
void Button::SetMouseOverCallback(const Callback & func)
|
|
|
|
|
{
|
|
|
|
|
mouse_over_callback_ = func;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Button::SetMouseOutCallback(const Callback & func)
|
|
|
|
|
{
|
|
|
|
|
mouse_out_callback_ = func;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Button::SetStatus(Status status)
|
|
|
|
|
{
|
|
|
|
|
if (status_ != status)
|
|
|
|
|
{
|
|
|
|
|
status_ = status;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Button::UpdateStatus(Event const& evt)
|
|
|
|
|
{
|
2019-04-11 14:40:54 +08:00
|
|
|
KGE_ASSERT(MouseEvent::Check(evt.type));
|
2019-03-31 01:37:06 +08:00
|
|
|
|
|
|
|
|
if (enabled_ && (evt.target == this))
|
|
|
|
|
{
|
|
|
|
|
if (evt.type == Event::MouseHover)
|
|
|
|
|
{
|
|
|
|
|
SetStatus(Status::Hover);
|
2019-07-30 15:27:01 +08:00
|
|
|
Window::Instance()->SetMouseCursor(MouseCursor::Hand);
|
2019-03-31 01:37:06 +08:00
|
|
|
|
|
|
|
|
if (mouse_over_callback_)
|
|
|
|
|
mouse_over_callback_();
|
|
|
|
|
}
|
|
|
|
|
else if (evt.type == Event::MouseOut)
|
|
|
|
|
{
|
|
|
|
|
SetStatus(Status::Normal);
|
2019-07-30 15:27:01 +08:00
|
|
|
Window::Instance()->SetMouseCursor(MouseCursor::Arrow);
|
2019-03-31 01:37:06 +08:00
|
|
|
|
|
|
|
|
if (mouse_out_callback_)
|
|
|
|
|
mouse_out_callback_();
|
|
|
|
|
}
|
|
|
|
|
else if (evt.type == Event::MouseBtnDown && status_ == Status::Hover)
|
|
|
|
|
{
|
|
|
|
|
SetStatus(Status::Pressed);
|
|
|
|
|
|
|
|
|
|
if (pressed_callback_)
|
|
|
|
|
pressed_callback_();
|
|
|
|
|
}
|
|
|
|
|
else if (evt.type == Event::MouseBtnUp && status_ == Status::Pressed)
|
|
|
|
|
{
|
|
|
|
|
SetStatus(Status::Hover);
|
|
|
|
|
|
2019-05-03 15:27:18 +08:00
|
|
|
if (released_callback_)
|
|
|
|
|
released_callback_();
|
|
|
|
|
|
2019-03-31 01:37:06 +08:00
|
|
|
if (click_callback_)
|
|
|
|
|
click_callback_();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|