aseprite/src/ui/resize_event.h
David Capello 1aaeacc460 Refactor several "getNoun()" getters to "noun()"
This is a work-in-progress to create a consistent API and finally
separate the whole Aseprite base/gfx/ui libs into a reusable C++ library.

Classes:
app::IFileItem, app::AppMenuItem, app::skin::SkinPart,
gfx::Rect, gfx::Border, she::FileDialog,
ui::IButtonIcon, ui::Graphics, ui::Overlay, ui::Widget,
ui::ScrollableViewDelegate, and UI events
2015-12-04 14:39:04 -03:00

31 lines
565 B
C++

// Aseprite UI Library
// Copyright (C) 2001-2013, 2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_RESIZE_EVENT_H_INCLUDED
#define UI_RESIZE_EVENT_H_INCLUDED
#pragma once
#include "gfx/rect.h"
#include "ui/event.h"
namespace ui {
class Widget;
class ResizeEvent : public Event {
public:
ResizeEvent(Widget* source, const gfx::Rect& bounds);
const gfx::Rect& bounds() { return m_bounds; }
private:
gfx::Rect m_bounds;
};
} // namespace ui
#endif