2013-08-08 21:01:20 -03:00
|
|
|
// Aseprite UI Library
|
2013-01-27 12:13:13 -03:00
|
|
|
// Copyright (C) 2001-2013 David Capello
|
2012-08-06 01:17:29 -03:00
|
|
|
//
|
2014-03-29 20:08:05 -03:00
|
|
|
// This file is released under the terms of the MIT license.
|
|
|
|
// Read LICENSE.txt for more information.
|
2012-08-06 01:17:29 -03:00
|
|
|
|
2013-08-05 21:20:19 -03:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2012-08-06 01:17:29 -03:00
|
|
|
#include "config.h"
|
2013-08-05 21:20:19 -03:00
|
|
|
#endif
|
2012-08-06 01:17:29 -03:00
|
|
|
|
|
|
|
#include "ui/overlay.h"
|
|
|
|
|
|
|
|
#include "she/locked_surface.h"
|
|
|
|
#include "she/scoped_surface_lock.h"
|
|
|
|
#include "she/system.h"
|
|
|
|
#include "ui/manager.h"
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
Overlay::Overlay(she::Surface* overlaySurface, const gfx::Point& pos, ZOrder zorder)
|
|
|
|
: m_surface(overlaySurface)
|
|
|
|
, m_overlap(NULL)
|
|
|
|
, m_pos(pos)
|
|
|
|
, m_zorder(zorder)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Overlay::~Overlay()
|
|
|
|
{
|
2012-08-10 23:14:54 -03:00
|
|
|
if (m_surface) {
|
|
|
|
Manager* manager = Manager::getDefault();
|
|
|
|
if (manager)
|
|
|
|
manager->invalidateRect(gfx::Rect(m_pos.x, m_pos.y,
|
|
|
|
m_surface->width(),
|
|
|
|
m_surface->height()));
|
|
|
|
m_surface->dispose();
|
|
|
|
}
|
|
|
|
|
2012-08-06 01:17:29 -03:00
|
|
|
if (m_overlap)
|
|
|
|
m_overlap->dispose();
|
|
|
|
}
|
|
|
|
|
2012-08-10 23:14:54 -03:00
|
|
|
she::Surface* Overlay::setSurface(she::Surface* newSurface)
|
|
|
|
{
|
|
|
|
she::Surface* oldSurface = m_surface;
|
|
|
|
m_surface = newSurface;
|
|
|
|
return oldSurface;
|
|
|
|
}
|
|
|
|
|
2012-08-06 01:17:29 -03:00
|
|
|
gfx::Rect Overlay::getBounds() const
|
|
|
|
{
|
2012-08-10 23:14:54 -03:00
|
|
|
if (m_surface)
|
|
|
|
return gfx::Rect(m_pos.x, m_pos.y, m_surface->width(), m_surface->height());
|
|
|
|
else
|
|
|
|
return gfx::Rect(0, 0, 0, 0);
|
2012-08-06 01:17:29 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void Overlay::drawOverlay(she::LockedSurface* screen)
|
|
|
|
{
|
2012-08-10 23:14:54 -03:00
|
|
|
if (!m_surface)
|
|
|
|
return;
|
|
|
|
|
2012-08-06 01:17:29 -03:00
|
|
|
she::ScopedSurfaceLock lockedSurface(m_surface);
|
2014-06-22 18:53:14 -03:00
|
|
|
screen->drawRgbaSurface(lockedSurface, m_pos.x, m_pos.y);
|
2012-08-06 01:17:29 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void Overlay::moveOverlay(const gfx::Point& newPos)
|
|
|
|
{
|
|
|
|
m_pos = newPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Overlay::captureOverlappedArea(she::LockedSurface* screen)
|
|
|
|
{
|
2012-08-10 23:14:54 -03:00
|
|
|
if (!m_surface)
|
|
|
|
return;
|
|
|
|
|
2012-08-06 01:17:29 -03:00
|
|
|
if (!m_overlap)
|
2014-06-22 18:53:14 -03:00
|
|
|
m_overlap = she::instance()->createSurface(m_surface->width(), m_surface->height());
|
2012-08-06 01:17:29 -03:00
|
|
|
|
|
|
|
she::ScopedSurfaceLock lock(m_overlap);
|
|
|
|
screen->blitTo(lock, m_pos.x, m_pos.y, 0, 0,
|
|
|
|
m_overlap->width(), m_overlap->height());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Overlay::restoreOverlappedArea(she::LockedSurface* screen)
|
|
|
|
{
|
2012-08-10 23:14:54 -03:00
|
|
|
if (!m_surface)
|
|
|
|
return;
|
|
|
|
|
2012-08-06 01:17:29 -03:00
|
|
|
if (!m_overlap)
|
|
|
|
return;
|
|
|
|
|
|
|
|
she::ScopedSurfaceLock lock(m_overlap);
|
|
|
|
lock->blitTo(screen, 0, 0, m_pos.x, m_pos.y,
|
|
|
|
m_overlap->width(), m_overlap->height());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|