36 lines
923 B
C
36 lines
923 B
C
|
/**
|
||
|
* @file Button.h
|
||
|
* @author apio (cloudapio.eu)
|
||
|
* @brief A clickable component that triggers an action when pressed.
|
||
|
*
|
||
|
* @copyright Copyright (c) 2023, the Luna authors.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
#include <ui/Widget.h>
|
||
|
|
||
|
namespace ui
|
||
|
{
|
||
|
class Button : public Widget
|
||
|
{
|
||
|
public:
|
||
|
Button(Rect rect);
|
||
|
|
||
|
void set_widget(Widget& widget);
|
||
|
void set_action(void (*action)(void));
|
||
|
|
||
|
Result<EventResult> handle_mouse_move(Point position) override;
|
||
|
Result<EventResult> handle_mouse_leave(Point position) override;
|
||
|
Result<EventResult> handle_mouse_down(Point position, int buttons) override;
|
||
|
Result<EventResult> handle_mouse_up(Point position, int buttons) override;
|
||
|
Result<void> draw(Canvas& canvas) override;
|
||
|
|
||
|
private:
|
||
|
bool m_hovered { false };
|
||
|
bool m_clicked { false };
|
||
|
Widget* m_child;
|
||
|
void (*m_action)(void);
|
||
|
};
|
||
|
}
|