2016-06-02 19:02:32 +02:00
|
|
|
#include "macwindowborder.h"
|
|
|
|
|
|
|
|
namespace Graphics {
|
|
|
|
|
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-06-03 20:49:54 +02:00
|
|
|
_inactiveBorder = nullptr;
|
2016-06-02 19:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MacWindowBorder::~MacWindowBorder() {
|
|
|
|
if (_activeBorder)
|
|
|
|
delete _activeBorder;
|
|
|
|
if (_inactiveBorder)
|
|
|
|
delete _inactiveBorder;
|
|
|
|
}
|
|
|
|
|
2016-06-03 20:49:54 +02:00
|
|
|
bool MacWindowBorder::hasBorder(bool active) {
|
|
|
|
return active ? _activeInitialized : _inactiveInitialized;
|
|
|
|
}
|
2016-07-29 12:14:19 +02:00
|
|
|
|
2016-06-03 20:49:54 +02:00
|
|
|
void MacWindowBorder::addActiveBorder(TransparentSurface &source) {
|
|
|
|
assert(!_activeBorder);
|
|
|
|
_activeBorder = new NinePatchBitmap(&source, false);
|
|
|
|
_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
|
|
|
}
|
|
|
|
|
|
|
|
void MacWindowBorder::blitBorderInto(ManagedSurface &destination, bool active) {
|
|
|
|
|
|
|
|
TransparentSurface srf;
|
|
|
|
NinePatchBitmap *src = active ? _activeBorder : _inactiveBorder;
|
|
|
|
|
|
|
|
srf.create(destination.w, destination.h, src->getSource()->format);
|
|
|
|
|
|
|
|
src->blit(srf, 0, 0, srf.w, srf.h);
|
|
|
|
destination.transBlitFrom(srf, destination.format.ARGBToColor(0, 255, 255, 255));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Graphics
|