/*************************************************************************** * Copyright (C) 2004-2007 by Albert Astals Cid * * aacid@kde.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * ***************************************************************************/ #include "boxasker.h" #include // for RAND_MAX #include #include #include #include #include #include #include #include #include #include #include "map.h" boxAsker::boxAsker(QWidget *parent, KGmap *m, QWidget *w, uint count) : askWidget(parent, m, w, count) { p_lay = new QVBoxLayout(this); QGroupBox *bg = new QGroupBox(this); QVBoxLayout *gbLayout = new QVBoxLayout(bg); p_label = new QLabel(this); p_rb = new QRadioButton*[4]; for(int i = 0; i < 4; i++) { p_rb[i] = new QRadioButton(bg); gbLayout -> addWidget(p_rb[i]); } gbLayout->addStretch(1); p_accept = new KPushButton(this); p_lay -> addWidget(p_label); p_lay -> addWidget(bg, 1); p_lay -> addWidget(p_accept); KAcceleratorManager::setNoAccel(this); } boxAsker::~boxAsker() { delete[] p_rb; } void boxAsker::setQuestion(const QString &q) { p_label -> setText(q); } void boxAsker::keyReleaseEvent(QKeyEvent *e) { if (e -> key() == Qt::Key_Return || e -> key() == Qt::Key_Enter) checkAnswer(); else askWidget::keyReleaseEvent(e); } void boxAsker::nextQuestionHook(const QString &division) { QString otherDivision; QStringList auxList; int j; setFocus(); for(int i = 0; i < 4; i++) p_rb[i] -> setAutoExclusive(false); for(int i = 0; i < 4; i++) p_rb[i] -> setChecked(false); for(int i = 0; i < 4; i++) p_rb[i] -> setText(QString()); for(int i = 0; i < 4; i++) p_rb[i] -> setIcon(QIcon()); for(int i = 0; i < 4; i++) p_rb[i] -> setAutoExclusive(true); auxList << division; // we put the division in a random place p_position = (int)((float)4 * KRandom::random() / (RAND_MAX + 1.0)); nextBoxAskerQuestionHook(division, p_position, true); // fill the other names j = 0; while (j < 4) { if (p_rb[j] -> text().isNull() && p_rb[j] -> icon().isNull()) { otherDivision = p_map -> getRandomDivision(askMode()); while (auxList.contains(otherDivision)) otherDivision = p_map -> getRandomDivision(askMode()); if (nextBoxAskerQuestionHook(otherDivision, j, false)) ++j; auxList << otherDivision; } else ++j; } } void boxAsker::checkAnswer() { bool any, correct; int i; correct = false; any = false; i = 0; while(!any && i < 4) { if (p_rb[i] -> isChecked()) { any = true; correct = (i == p_position); } else i++; } if (any) { setAnswerHook(i); questionAnswered(correct); nextQuestion(); } } void boxAsker::init() { p_accept -> setText(i18n("&Accept")); resetAnswers(); clearAsked(); nextQuestion(); p_accept -> disconnect(); connect(p_accept, SIGNAL(clicked()), this, SLOT(checkAnswer())); } #include "boxasker.moc"