diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-25 20:12:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-25 20:12:20 +0300 |
commit | 80b0caa35e4b84b745daef7e4102b428539cdee5 (patch) | |
tree | eb24de08cd9bed429569b34f35fa0f638fcdc93d /src/gui/widgets/icon.cpp | |
parent | 7369332bb0a6d219cb2415a0b5e65bf2825da349 (diff) | |
download | plus-80b0caa35e4b84b745daef7e4102b428539cdee5.tar.gz plus-80b0caa35e4b84b745daef7e4102b428539cdee5.tar.bz2 plus-80b0caa35e4b84b745daef7e4102b428539cdee5.tar.xz plus-80b0caa35e4b84b745daef7e4102b428539cdee5.zip |
Remove safeDraw implimentation from Widget.
Diffstat (limited to 'src/gui/widgets/icon.cpp')
-rw-r--r-- | src/gui/widgets/icon.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gui/widgets/icon.cpp b/src/gui/widgets/icon.cpp index 1d5de684d..4be9ae127 100644 --- a/src/gui/widgets/icon.cpp +++ b/src/gui/widgets/icon.cpp @@ -82,3 +82,15 @@ void Icon::draw(Graphics *graphics) } BLOCK_END("Icon::draw") } + +void Icon::safeDraw(Graphics *graphics) +{ + BLOCK_START("Icon::draw") + if (mImage) + { + graphics->drawImage(mImage, + (mDimension.width - mImage->mBounds.w) / 2, + (mDimension.height - mImage->mBounds.h) / 2); + } + BLOCK_END("Icon::draw") +} |