/* This file is part of kiten, a KDE Japanese Reference Tool Copyright (C) 2006 Joseph Kerian This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "radicalbutton.h" #include #include #include #include #include #include #include #include radicalButton::radicalButton(const QString &text, QWidget *parent) : QPushButton(text,parent) { setCheckable(true); } QSize radicalButton::minimumSizeHint() const { int width = fontMetrics().size(Qt::TextShowMnemonic,text()).width(); int height = QPushButton::sizeHint().height(); //TODO: radicalButton size calculation right, one of these days // QSize sz = fontMetrics().size(Qt::TextShowMnemonic, *it); // setMinimumSize(sz); // QStyleOptionButton opt; // opt.initFrom(this); // QRect rect = kapp->style()->subElementRect(QStyle::SE_PushButtonContents,&opt,this); return QSize(width,height); } QSize radicalButton::sizeHint() const { return minimumSizeHint(); } bool radicalButton::event(QEvent *event) { //This button does not handle wheel events, and unlike //the superclass, we don't care if we're enabled or disabled //(the superclass eats wheel events when disabled) if(event->type() == QEvent::Wheel) return false; return QPushButton::event(event); } void radicalButton::setStatus(radicalButton::ButtonStatus newStatus) { if(status == newStatus) return; //Because it's more work to check everything rather than just set it, //we'll just set everything every time bool checked=false, underline=false, italic=false, hidden=false, disabled=false; switch(newStatus) { case kNormal: break; case kSelected: checked=true; break; case kNotAppropriate: disabled=true; break; case kRelated: italic=true; break; case kHidden: hidden=true; } QFont theFont = font(); theFont.setUnderline(underline); theFont.setItalic(italic); setFont(theFont); setVisible(!hidden); setEnabled(!disabled); setChecked(checked); status = newStatus; } void radicalButton::resetButton() { setStatus(kNormal); } void radicalButton::mousePressEvent(QMouseEvent *e) { QPushButton::mousePressEvent(e); if(e->button() == Qt::RightButton) { setStatus(kRelated); emit userClicked(text(), kRelated); } } void radicalButton::mouseReleaseEvent(QMouseEvent *e){ QPushButton::mouseReleaseEvent(e); if(e->button() == Qt::LeftButton) { switch(status) { case kSelected: setStatus(kNormal); emit userClicked(text(), kNormal); break; default: setStatus(kSelected); emit userClicked(text(), kSelected); } } } #include "radicalbutton.moc"