From cccbb52e1e5d4e972d7d2974d33034507dc772b4 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 11 May 2005 19:31:23 +0000 Subject: Do not autoscale about dialog, rather let it scale itself properly svn-id: r18061 --- gui/about.cpp | 12 ++++++++++-- gui/about.h | 8 ++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) (limited to 'gui') diff --git a/gui/about.cpp b/gui/about.cpp index 6312cb0bcd..7e1b267654 100644 --- a/gui/about.cpp +++ b/gui/about.cpp @@ -88,7 +88,15 @@ AboutDialog::AboutDialog() int i; - _lineHeight = g_gui.getFontHeight() + 3; + _w = g_system->getOverlayWidth() - 2 * 10; + _h = g_system->getOverlayHeight() - 20 - 16; + + if (_w < 450) + _font = FontMan.getFontByUsage(Graphics::FontManager::kGUIFont); + else + _font = FontMan.getFontByUsage(Graphics::FontManager::kBigGUIFont); + + _lineHeight = _font->getFontHeight() + 3; for (i = 0; i < 1; i++) _lines.push_back(""); @@ -199,7 +207,7 @@ void AboutDialog::drawDialog() { while (*str && *str == ' ') str++; - g_gui.drawString(str, _x + kXOff, y, _w - 2 * kXOff, color, align); + _font->drawString(&g_gui.getScreen(), str, _x + kXOff, y, _w - 2 * kXOff, color, align); y += _lineHeight; } diff --git a/gui/about.h b/gui/about.h index 65dbb49f40..35eb34a710 100644 --- a/gui/about.h +++ b/gui/about.h @@ -25,6 +25,10 @@ #include "common/str.h" #include "graphics/surface.h" +namespace Graphics { + class Font; +} + namespace GUI { class AboutDialog : public Dialog { @@ -37,6 +41,7 @@ protected: byte _modifiers; bool _willClose; Graphics::Surface _canvas; + const Graphics::Font *_font; public: AboutDialog(); @@ -49,6 +54,9 @@ public: void handleMouseUp(int x, int y, int button, int clickCount); void handleKeyDown(uint16 ascii, int keycode, int modifiers); void handleKeyUp(uint16 ascii, int keycode, int modifiers); + + // disable scaling + bool wantsScaling() const { return false; } }; } // End of namespace GUI -- cgit v1.2.3