aseprite/src/ui/hit_test_event.h

50 lines
1.0 KiB
C
Raw Normal View History

// ASEPRITE gui library
2012-01-06 03:52:11 +00:00
// Copyright (C) 2001-2012 David Capello
//
// This source file is distributed under a BSD-like license, please
// read LICENSE.txt for more information.
2012-06-18 01:49:58 +00:00
#ifndef UI_HIT_TEST_EVENT_H_INCLUDED
#define UI_HIT_TEST_EVENT_H_INCLUDED
2012-06-18 01:49:58 +00:00
#include "ui/event.h"
namespace ui {
enum HitTest
{
HitTestNowhere,
HitTestCaption,
HitTestClient,
HitTestBorderNW,
HitTestBorderN,
HitTestBorderNE,
HitTestBorderE,
HitTestBorderSE,
HitTestBorderS,
HitTestBorderSW,
HitTestBorderW,
};
class HitTestEvent : public Event
{
public:
HitTestEvent(Component* source, const gfx::Point& point, HitTest hit)
: Event(source)
, m_point(point)
, m_hit(hit) { }
gfx::Point getPoint() const { return m_point; }
HitTest getHit() const { return m_hit; }
void setHit(HitTest hit) { m_hit = hit; }
private:
gfx::Point m_point;
HitTest m_hit;
};
} // namespace ui
2012-06-18 01:49:58 +00:00
#endif // UI_HIT_TEST_EVENT_H_INCLUDED