aseprite/src/ui/event.h

35 lines
695 B
C
Raw Normal View History

// Aseprite UI Library
2013-01-27 15:13:13 +00:00
// Copyright (C) 2001-2013 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
2012-06-18 01:49:58 +00:00
#ifndef UI_EVENT_H_INCLUDED
#define UI_EVENT_H_INCLUDED
2014-03-29 22:40:17 +00:00
#pragma once
namespace ui {
class Component;
// Base class for every kind of event.
class Event
{
public:
// Creates a new event specifying that it was generated from the
// source component.
Event(Component* source);
virtual ~Event();
// Returns the component which generated the event.
Component* getSource();
private:
// The component which generates the event.
Component* m_source;
};
} // namespace ui
#endif