Add end-of-line spaces checker
This commit is contained in:
@@ -60,7 +60,7 @@ namespace Nz
|
||||
|
||||
private:
|
||||
template<typename F> bool DispatchEvent(std::size_t widgetIndex, F&& functor);
|
||||
|
||||
|
||||
void OnEventMouseButtonPressed(const WindowEventHandler* eventHandler, const WindowEvent::MouseButtonEvent& event);
|
||||
void OnEventMouseButtonRelease(const WindowEventHandler* eventHandler, const WindowEvent::MouseButtonEvent& event);
|
||||
void OnEventMouseEntered(const WindowEventHandler* eventHandler);
|
||||
|
||||
@@ -63,7 +63,7 @@ namespace Nz
|
||||
bool m_isHovered;
|
||||
bool m_isPressed;
|
||||
};
|
||||
|
||||
|
||||
class NAZARA_WIDGETS_API SimpleCheckboxWidgetStyle : public CheckboxWidgetStyle
|
||||
{
|
||||
public:
|
||||
@@ -109,7 +109,7 @@ namespace Nz
|
||||
entt::entity m_checkEntity;
|
||||
bool m_isHovered;
|
||||
};
|
||||
|
||||
|
||||
class NAZARA_WIDGETS_API SimpleImageButtonWidgetStyle : public ImageButtonWidgetStyle
|
||||
{
|
||||
public:
|
||||
@@ -150,7 +150,7 @@ namespace Nz
|
||||
bool m_isHovered;
|
||||
bool m_isPressed;
|
||||
};
|
||||
|
||||
|
||||
class NAZARA_WIDGETS_API SimpleLabelWidgetStyle : public LabelWidgetStyle
|
||||
{
|
||||
public:
|
||||
@@ -179,7 +179,7 @@ namespace Nz
|
||||
std::shared_ptr<TextSprite> m_textSprite;
|
||||
entt::entity m_entity;
|
||||
};
|
||||
|
||||
|
||||
class NAZARA_WIDGETS_API SimpleProgressBarWidgetStyle : public ProgressBarWidgetStyle
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -127,7 +127,7 @@ namespace Nz
|
||||
ButtonWidgetStyle& operator=(const ButtonWidgetStyle&) = delete;
|
||||
ButtonWidgetStyle& operator=(ButtonWidgetStyle&&) = default;
|
||||
};
|
||||
|
||||
|
||||
class NAZARA_WIDGETS_API CheckboxWidgetStyle : public BaseWidgetStyle
|
||||
{
|
||||
public:
|
||||
@@ -147,7 +147,7 @@ namespace Nz
|
||||
CheckboxWidgetStyle& operator=(const CheckboxWidgetStyle&) = delete;
|
||||
CheckboxWidgetStyle& operator=(CheckboxWidgetStyle&&) = default;
|
||||
};
|
||||
|
||||
|
||||
class NAZARA_WIDGETS_API ImageButtonWidgetStyle : public BaseWidgetStyle
|
||||
{
|
||||
public:
|
||||
@@ -186,7 +186,7 @@ namespace Nz
|
||||
LabelWidgetStyle& operator=(const LabelWidgetStyle&) = delete;
|
||||
LabelWidgetStyle& operator=(LabelWidgetStyle&&) = default;
|
||||
};
|
||||
|
||||
|
||||
class NAZARA_WIDGETS_API ProgressBarWidgetStyle : public BaseWidgetStyle
|
||||
{
|
||||
public:
|
||||
@@ -233,7 +233,7 @@ namespace Nz
|
||||
ScrollbarWidgetStyle& operator=(const ScrollbarWidgetStyle&) = delete;
|
||||
ScrollbarWidgetStyle& operator=(ScrollbarWidgetStyle&&) = default;
|
||||
};
|
||||
|
||||
|
||||
class NAZARA_WIDGETS_API ScrollbarButtonWidgetStyle : public BaseWidgetStyle
|
||||
{
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user