aseprite/src/ui/resize_event.cpp

23 lines
420 B
C++
Raw Normal View History

// ASEPRITE gui library
// Copyright (C) 2001-2013 David Capello
//
// This source file is distributed under a BSD-like license, please
// read LICENSE.txt for more information.
#include "config.h"
#include "ui/resize_event.h"
#include "ui/widget.h"
using namespace gfx;
namespace ui {
ResizeEvent::ResizeEvent(Widget* source, const gfx::Rect& bounds)
: Event(source)
, m_bounds(bounds)
{
}
} // namespace ui