/* _______ __ __ __ ______ __ __ _______ __ __ * / _____/\ / /\ / /\ / /\ / ____/\ / /\ / /\ / ___ /\ / |\/ /\ * / /\____\// / // / // / // /\___\// /_// / // /\_/ / // , |/ / / * / / /__ / / // / // / // / / / ___ / // ___ / // /| ' / / * / /_// /\ / /_// / // / // /_/_ / / // / // /\_/ / // / | / / * /______/ //______/ //_/ //_____/\ /_/ //_/ //_/ //_/ //_/ /|_/ / * \______\/ \______\/ \_\/ \_____\/ \_\/ \_\/ \_\/ \_\/ \_\/ \_\/ * * Copyright (c) 2004, 2005, 2006, 2007 Olof Naessén and Per Larsson * * Js_./ * Per Larsson a.k.a finalman _RqZ{a<^_aa * Olof Naessén a.k.a jansem/yakslem _asww7!uY`> )\a// * _Qhm`] _f "'c 1!5m * Visit: http://guichan.darkbits.org )Qk

ws?a-?' ._/L #' * binary forms, with or without )4d[#7r, . ' )d`)[ * modification, are permitted provided _Q-5'5W..j/?' -?!\)cam' * that the following conditions are met: j<. a J@\ * this list of conditions and the j(]1usetFont(getFont()); graphics->setColor(getForegroundColor()); int h = getHeight() + getHeight() / 2; graphics->drawText(getCaption(), h - 2, 0); if (isFocused()) { graphics->drawRectangle(Rectangle(h - 4, 0, getWidth() - h + 3, getHeight())); } } void RadioButton::drawBorder(Graphics* graphics) { Color faceColor = getBaseColor(); Color highlightColor, shadowColor; int alpha = getBaseColor().a; int width = getWidth() + getBorderSize() * 2 - 1; int height = getHeight() + getBorderSize() * 2 - 1; highlightColor = faceColor + 0x303030; highlightColor.a = alpha; shadowColor = faceColor - 0x303030; shadowColor.a = alpha; unsigned int i; for (i = 0; i < getBorderSize(); ++i) { graphics->setColor(shadowColor); graphics->drawLine(i,i, width - i, i); graphics->drawLine(i,i + 1, i, height - i - 1); graphics->setColor(highlightColor); graphics->drawLine(width - i,i + 1, width - i, height - i); graphics->drawLine(i,height - i, width - i - 1, height - i); } } void RadioButton::drawBox(Graphics *graphics) { int h; if (getHeight()%2 == 0) { h = getHeight() - 2; } else { h = getHeight() - 1; } int alpha = getBaseColor().a; Color faceColor = getBaseColor(); faceColor.a = alpha; Color highlightColor = faceColor + 0x303030; highlightColor.a = alpha; Color shadowColor = faceColor - 0x303030; shadowColor.a = alpha; graphics->setColor(getBackgroundColor()); int i; int hh = (h + 1) / 2; for (i = 1; i <= hh; ++i) { graphics->drawLine(hh - i + 1, i, hh + i - 1, i); } for (i = 1; i < hh; ++i) { graphics->drawLine(hh - i + 1, h - i, hh + i - 1, h - i); } graphics->setColor(shadowColor); graphics->drawLine(hh, 0, 0, hh); graphics->drawLine(hh + 1, 1, h - 1, hh - 1); graphics->setColor(highlightColor); graphics->drawLine(1, hh + 1, hh, h); graphics->drawLine(hh + 1, h - 1, h, hh); graphics->setColor(getForegroundColor()); int hhh = hh - 3; if (isMarked()) { for (i = 0; i < hhh; ++i) { graphics->drawLine(hh - i, 4 + i, hh + i, 4 + i); } for (i = 0; i < hhh; ++i) { graphics->drawLine(hh - i, h - 4 - i, hh + i, h - 4 - i); } } } bool RadioButton::isMarked() const { return mMarked; } void RadioButton::setMarked(bool marked) { if (marked && mGroup != "") { GroupIterator iter, iterEnd; iterEnd = mGroupMap.upper_bound(mGroup); for (iter = mGroupMap.lower_bound(mGroup); iter != iterEnd; iter++) { if (iter->second->isMarked()) { iter->second->setMarked(false); } } } mMarked = marked; } const std::string &RadioButton::getCaption() const { return mCaption; } void RadioButton::setCaption(const std::string caption) { mCaption = caption; } void RadioButton::keyPressed(KeyEvent& keyEvent) { Key key = keyEvent.getKey(); if (key.getValue() == Key::ENTER || key.getValue() == Key::SPACE) { setMarked(true); generateAction(); keyEvent.consume(); } } void RadioButton::mouseClicked(MouseEvent& mouseEvent) { if (mouseEvent.getButton() == MouseEvent::LEFT) { setMarked(true); generateAction(); } } void RadioButton::mouseDragged(MouseEvent& mouseEvent) { mouseEvent.consume(); } void RadioButton::setGroup(const std::string &group) { if (mGroup != "") { GroupIterator iter, iterEnd; iterEnd = mGroupMap.upper_bound(mGroup); for (iter = mGroupMap.lower_bound(mGroup); iter != iterEnd; iter++) { if (iter->second == this) { mGroupMap.erase(iter); break; } } } if (group != "") { mGroupMap.insert( std::pair(group, this)); } mGroup = group; } const std::string &RadioButton::getGroup() const { return mGroup; } void RadioButton::adjustSize() { int height = getFont()->getHeight(); setHeight(height); setWidth(getFont()->getWidth(getCaption()) + height + height/2); } }