You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kgeography/src/askwidget.cpp

105 lines
2.3 KiB

/***************************************************************************
* Copyright (C) 2004-2005 by Albert Astals Cid *
* tsdgeos@terra.es *
* *
* 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 <tdelocale.h>
#include <tdemessagebox.h>
#include <tqlabel.h>
#include "askwidget.h"
#include "map.h"
askWidget::askWidget(TQWidget *parent, KGmap *m, TQWidget *w, uint count, bool showLabel) : TQWidget(parent), p_map(m), p_count(count)
{
if (showLabel)
{
p_answers = new TQLabel(w);
p_answers -> setAlignment(AlignTop | AlignHCenter);
resetAnswers();
p_answers -> show();
}
else p_answers = 0;
}
askWidget::~askWidget()
{
delete p_answers;
}
int askWidget::correctAnswers() const
{
return p_correctAnswers;
}
TQValueVector<userAnswer> askWidget::userAnswers() const
{
return p_userAnswers;
}
void askWidget::setMovement(bool)
{
}
void askWidget::setZoom(bool)
{
}
void askWidget::setOriginalZoom()
{
}
void askWidget::clearAsked()
{
p_asked.clear();
}
TQString askWidget::lastDivisionAsked()
{
return p_asked.last();
}
void askWidget::nextQuestion()
{
TQString aux;
if (p_asked.count() < p_count)
{
aux = p_map -> getRandomDivision(isClickOnDivision());
while (p_asked.find(aux) != p_asked.end()) aux = p_map -> getRandomDivision(isClickOnDivision());
p_asked << aux;
nextQuestionHook(aux);
}
else emit questionsEnded();
}
void askWidget::questionAnswered(bool wasCorrect)
{
p_currentAnswer.setAnswerCorrect(wasCorrect);
p_userAnswers.append(p_currentAnswer);
if (wasCorrect) p_correctAnswers++;
else p_incorrectAnswers++;
updateLabel();
}
void askWidget::resetAnswers()
{
p_correctAnswers = 0;
p_incorrectAnswers = 0;
updateLabel();
}
void askWidget::updateLabel()
{
p_answers -> setText(i18n("Correct answers: %1/%2").arg(p_correctAnswers).arg(p_correctAnswers + p_incorrectAnswers));
}
#include "askwidget.moc"