diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/macgui/macwindow.cpp | 17 | ||||
-rw-r--r-- | graphics/macgui/macwindow.h | 4 |
2 files changed, 10 insertions, 11 deletions
diff --git a/graphics/macgui/macwindow.cpp b/graphics/macgui/macwindow.cpp index 4dacf23e11..0ca0a89acb 100644 --- a/graphics/macgui/macwindow.cpp +++ b/graphics/macgui/macwindow.cpp @@ -64,7 +64,7 @@ BaseMacWindow::BaseMacWindow(int id, bool editable, MacWindowManager *wm) : } MacWindow::MacWindow(int id, bool scrollable, bool resizable, bool editable, MacWindowManager *wm) : - BaseMacWindow(id, editable, wm), _scrollable(scrollable), _resizable(resizable), _bmp(new TransparentSurface(), false) { + BaseMacWindow(id, editable, wm), _scrollable(scrollable), _resizable(resizable) { _active = false; _borderIsDirty = true; @@ -79,8 +79,6 @@ MacWindow::MacWindow(int id, bool scrollable, bool resizable, bool editable, Mac _type = kWindowWindow; - TransparentSurface *srf = new TransparentSurface; - _bmp = NinePatchBitmap(srf, false); } MacWindow::~MacWindow() { @@ -150,17 +148,17 @@ bool MacWindow::draw(ManagedSurface *g, bool forceRedraw) { _composeSurface.blitFrom(_surface, Common::Rect(0, 0, _surface.w - 2, _surface.h - 2), Common::Point(2, 2)); _composeSurface.transBlitFrom(_borderSurface, kColorGreen); + TransparentSurface tr(_borders); + //tr.create(_composeSurface.w, _composeSurface.h, tr.getSupportedPixelFormat()); + + //_bmp->blit(tr, 0, 0, tr.w, tr.h) + _composeSurface.transBlitFrom(tr); + g->transBlitFrom(_composeSurface, _composeSurface.getBounds(), Common::Point(_dims.left - 2, _dims.top - 2), kColorGreen2); return true; } -bool MacWindow::drawTR(Surface &g, int x, int y, int w, int h, bool forceRedraw) { - - _bmp.blit(g, x, y, w, h); - - return false; -} #define ARROW_W 12 #define ARROW_H 6 @@ -289,6 +287,7 @@ void MacWindow::setHighlight(WindowClick highlightedPart) { void MacWindow::setBorders(TransparentSurface *source) { _bmp = NinePatchBitmap(source, true); + _borders = TransparentSurface(*source); } diff --git a/graphics/macgui/macwindow.h b/graphics/macgui/macwindow.h index dbbaff2d1e..335722b6e2 100644 --- a/graphics/macgui/macwindow.h +++ b/graphics/macgui/macwindow.h @@ -127,8 +127,7 @@ public: const Common::Rect &getInnerDimensions() { return _innerDims; } bool draw(ManagedSurface *g, bool forceRedraw = false); - bool drawTR(Surface &g, int x, int y, int w, int h, bool forceRedraw); - + void setActive(bool active); void setTitle(Common::String &title) { _title = title; } void setHighlight(WindowClick highlightedPart); @@ -151,6 +150,7 @@ private: ManagedSurface _composeSurface; NinePatchBitmap _bmp; + TransparentSurface _borders; bool _scrollable; bool _resizable; |