2016-06-02 19:02:32 +02:00
|
|
|
#include "macwindowborder.h"
|
|
|
|
|
2016-07-29 10:27:30 +02:00
|
|
|
#include "common/system.h"
|
|
|
|
|
|
|
|
#include "graphics/macgui/macwindowmanager.h"
|
|
|
|
|
|
|
|
|
2016-06-02 19:02:32 +02:00
|
|
|
namespace Graphics {
|
|
|
|
|
2016-07-29 10:27:30 +02:00
|
|
|
using namespace Graphics::MacGUIConstants;
|
|
|
|
|
2016-06-03 20:49:54 +02:00
|
|
|
MacWindowBorder::MacWindowBorder() : _activeInitialized(false), _inactiveInitialized(false) {
|
2016-06-02 19:02:32 +02:00
|
|
|
_activeBorder = nullptr;
|
2016-07-29 12:16:08 +02:00
|
|
|
_inactiveBorder = nullptr;
|
|
|
|
_hasOffsets = false;
|
2016-06-02 19:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MacWindowBorder::~MacWindowBorder() {
|
|
|
|
if (_activeBorder)
|
|
|
|
delete _activeBorder;
|
|
|
|
if (_inactiveBorder)
|
|
|
|
delete _inactiveBorder;
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:16:08 +02:00
|
|
|
bool MacWindowBorder::hasBorder(bool active) {
|
|
|
|
return active ? _activeInitialized : _inactiveInitialized;
|
2016-06-03 20:49:54 +02:00
|
|
|
}
|
2016-07-29 12:14:19 +02:00
|
|
|
|
2016-06-03 20:49:54 +02:00
|
|
|
void MacWindowBorder::addActiveBorder(TransparentSurface &source) {
|
|
|
|
assert(!_activeBorder);
|
2016-07-29 12:16:08 +02:00
|
|
|
_activeBorder = new NinePatchBitmap(&source, false);
|
2016-06-03 20:49:54 +02:00
|
|
|
_activeInitialized = true;
|
2016-06-02 19:02:32 +02:00
|
|
|
}
|
|
|
|
|
2016-06-03 20:49:54 +02:00
|
|
|
void MacWindowBorder::addInactiveBorder(TransparentSurface &source) {
|
|
|
|
assert(!_inactiveBorder);
|
|
|
|
_inactiveBorder = new NinePatchBitmap(&source, false);
|
|
|
|
_inactiveInitialized = true;
|
2016-06-02 19:02:32 +02:00
|
|
|
}
|
|
|
|
|
2016-07-29 12:16:08 +02:00
|
|
|
bool MacWindowBorder::hasOffsets() {
|
|
|
|
return _hasOffsets;
|
|
|
|
}
|
|
|
|
|
2016-07-29 10:27:30 +02:00
|
|
|
void MacWindowBorder::setOffsets(int left, int right, int top, int bottom) {
|
2016-07-29 12:16:08 +02:00
|
|
|
_borderOffsets[0] = left;
|
|
|
|
_borderOffsets[1] = right;
|
|
|
|
_borderOffsets[2] = top;
|
|
|
|
_borderOffsets[3] = bottom;
|
|
|
|
_hasOffsets = true;
|
|
|
|
}
|
|
|
|
|
2016-07-29 10:27:30 +02:00
|
|
|
int MacWindowBorder::getOffset(MacBorderOffset offset) {
|
2016-07-29 12:16:08 +02:00
|
|
|
return _borderOffsets[offset];
|
|
|
|
}
|
|
|
|
|
2016-06-02 19:02:32 +02:00
|
|
|
void MacWindowBorder::blitBorderInto(ManagedSurface &destination, bool active) {
|
|
|
|
|
|
|
|
TransparentSurface srf;
|
|
|
|
NinePatchBitmap *src = active ? _activeBorder : _inactiveBorder;
|
|
|
|
|
2016-07-29 10:27:30 +02:00
|
|
|
srf.create(destination.w, destination.h, destination.format);
|
|
|
|
srf.fillRect(Common::Rect(0, 0, srf.w, srf.h), kColorGreen2);
|
|
|
|
|
|
|
|
byte palette[kColorCount];
|
|
|
|
g_system->getPaletteManager()->grabPalette(palette, 0, kColorCount);
|
2016-06-02 19:02:32 +02:00
|
|
|
|
2016-07-29 10:27:30 +02:00
|
|
|
src->blit(srf, 0, 0, srf.w, srf.h, palette, kColorCount);
|
|
|
|
destination.transBlitFrom(srf, kColorGreen2);
|
2016-06-02 19:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Graphics
|