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/kwordquiz/src/multipleview.cpp

291 lines
7.4 KiB

/* This file is part of KWordQuiz
Copyright (C) 2003 Peter Hedlund <peter.hedlund@kdemail.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
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 <tqlabel.h>
#include <tqradiobutton.h>
#include <kiconloader.h>
#include <klocale.h>
#include <knotifyclient.h>
#include "kwordquiz.h"
#include "multipleview.h"
#include "prefs.h"
MultipleView::MultipleView(TQWidget *parent, const char *name, WFlags f)
: MultipleViewBase(parent, name, f)
{
m_score = new WTQScore();
}
MultipleView::~MultipleView()
{}
void MultipleView::setQuiz(WQQuiz *quiz)
{
m_quiz = quiz;
}
void MultipleView::init()
{
m_score ->setQuestionCount(m_quiz->questionCount());
m_score ->setAsPercent(Prefs::percent());
m_question = 0;
m_error = 0;
opt1->show();
opt2->show();
opt3->show();
lblQuestion -> setFont(Prefs::editorFont());
lblPreviousQuestion -> setFont(Prefs::editorFont());
lblYourAnswer -> setFont(Prefs::editorFont());
lblCorrect -> setFont(Prefs::editorFont());
opt1->setFont(Prefs::editorFont());
opt2->setFont(Prefs::editorFont());
opt3->setFont(Prefs::editorFont());
picAnswered->clear();
picCorrect->clear();
picError->clear();
lblPreviousQuestionHeader->clear();
lblPreviousQuestion->clear();
lblYourAnswerHeader->clear();
lblYourAnswer->clear();
lblCorrectHeader->clear();
lblCorrect->clear();
picPrevious->clear();
picYourAnswer->clear();
picCorrectAnswer->clear();
KWordQuizApp *win=(KWordQuizApp *) parent();
win->actionCollection()->action("quiz_check")->setEnabled(true);
win->actionCollection()->action("quiz_repeat_errors")->setEnabled(false);
updateScore();
showQuestion(0);
}
void MultipleView::slotCheck()
{
KWordQuizApp *win=(KWordQuizApp *) parent();
if (win->actionCollection()->action("quiz_check")->isEnabled())
{
TQString ans;
bool oneIsChecked = false;
if (opt1->isChecked())
{
ans = opt1->text().mid(3, opt1->text().length());
oneIsChecked = true;
}
if (opt2->isChecked())
{
ans = opt2->text().mid(3, opt2->text().length());
oneIsChecked = true;
}
if (opt3->isChecked())
{
ans = opt3->text().mid(3, opt3->text().length());
oneIsChecked = true;
}
if (!oneIsChecked)
return;
bool fIsCorrect = m_quiz->checkAnswer(m_question, ans);
if (fIsCorrect)
{
picYourAnswer->setPixmap(TDEGlobal::iconLoader()->loadIcon("check", TDEIcon::Panel));
lblCorrectHeader->clear();
picCorrectAnswer->clear();
lblCorrect->clear();
m_score->countIncrement(WTQScore::cdCorrect);
updateScore();
KNotifyClient::event(winId(), "QuizCorrect", i18n("Your answer was correct!"));
}
else
{
m_error++;
picYourAnswer->setPixmap(TDEGlobal::iconLoader()->loadIcon("error", TDEIcon::Panel));
lblCorrect->setText(m_quiz->answer(m_question));
//lblCorrect->setFont(m_quiz->fontAnswer(m_question));
picCorrectAnswer->setPixmap(TDEGlobal::iconLoader()->loadIcon("check", TDEIcon::Panel));
lblCorrectHeader->setText(i18n("Correct Answer"));
m_score->countIncrement(WTQScore::cdError);
updateScore();
KNotifyClient::event(winId(), "QuizError", i18n("Your answer was incorrect."));
}
lblPreviousQuestionHeader->setText(i18n("Previous Question"));
lblPreviousQuestion->setText(m_quiz->question(m_question));
//lblPreviousQuestion->setFont(m_quiz->fontQuestion(m_question));
picPrevious->setPixmap(TDEGlobal::iconLoader()->loadIcon("question", TDEIcon::Panel));
lblYourAnswerHeader->setText(i18n("Your Answer"));
lblYourAnswer->setText(m_quiz->yourAnswer(m_question, ans));
//lblYourAnswer->setFont(m_quiz->fontAnswer(m_question));
if (++m_question < m_quiz->questionCount())
{
showQuestion(m_question);
}
else
{
m_quiz->finish();
win->actionCollection()->action("quiz_check")->setEnabled(false);
win->actionCollection()->action("quiz_repeat_errors")->setEnabled((m_error > 0));
lblQuestionLanguage->setText(i18n("Summary"));
lblQuestion->clear();
lblAnswerLanguage->clear();
opt1->hide();
opt2->hide();
opt3->hide();
picQuestion->setPixmap(TDEGlobal::iconLoader()->loadIcon("kwordquiz", TDEIcon::Panel));
picAnswer->clear();
}
}
}
void MultipleView::slotOpt1Clicked()
{
if (Prefs::autoCheck())
slotCheck();
else
{
opt2->setChecked(false);
opt3->setChecked(false);
}
}
void MultipleView::slotOpt2Clicked()
{
if (Prefs::autoCheck())
slotCheck();
else
{
opt1->setChecked(false);
opt3->setChecked(false);
}
}
void MultipleView::slotOpt3Clicked()
{
if (Prefs::autoCheck())
slotCheck();
else
{
opt1->setChecked(false);
opt2->setChecked(false);
}
}
void MultipleView::slotRestart()
{
m_quiz->activateBaseList();
init();
}
void MultipleView::slotRepeat()
{
m_quiz->activateErrorList();
init();
}
void MultipleView::updateScore()
{
TQString s;
s = s.setNum(m_quiz->questionCount(), 10);
lblScoreCount->setText(s);
picCount->setPixmap(TDEGlobal::iconLoader()->loadIcon("kwordquiz", TDEIcon::Panel));
s = m_score->answerText();
lblScoreAnswered->setText(s);
if (!s.isEmpty())
picAnswered->setPixmap(TDEGlobal::iconLoader()->loadIcon("question", TDEIcon::Panel));
s = m_score->correctText();
lblScoreCorrect->setText(s);
if (!s.isEmpty())
picCorrect->setPixmap(TDEGlobal::iconLoader()->loadIcon("check", TDEIcon::Panel));
s = m_score->errorText();
lblScoreError->setText(s);
if (!s.isEmpty())
picError->setPixmap(TDEGlobal::iconLoader()->loadIcon("error", TDEIcon::Panel));
}
/*!
\fn MultipleView::showQuestion(int i)
*/
void MultipleView::showQuestion(int i)
{
lblQuestionLanguage -> setText(m_quiz ->langQuestion(i));
lblQuestion -> setText(m_quiz ->question(i));
//lblQuestion -> setFont(m_quiz->fontQuestion(i));
picQuestion->setPixmap(TDEGlobal::iconLoader()->loadIcon(m_quiz->quizIcon(i, WQQuiz::qiLeftCol), TDEIcon::Panel));
lblAnswerLanguage -> setText(m_quiz ->langAnswer(i));
//opt1->setFont(m_quiz->fontAnswer(i));
//opt2->setFont(m_quiz->fontAnswer(i));
//opt3->setFont(m_quiz->fontAnswer(i));
TQStringList sl = m_quiz->multiOptions(i);
TQString s[10];
int j = 0;
for(TQStringList::Iterator it = sl.begin(); it != sl.end(); ++it)
{
s[j] = *it;
j++;
}
opt1->setText("&1 " + s[0]);
opt2->setText("&2 " + s[1]);
opt3->setText("&3 " + s[2]);
opt1->setChecked(false);
opt2->setChecked(false);
opt3->setChecked(false);
picAnswer->setPixmap(TDEGlobal::iconLoader()->loadIcon(m_quiz->quizIcon(i, WQQuiz::qiRightCol), TDEIcon::Panel));
}
void MultipleView::slotApplySettings( )
{
m_score ->setAsPercent(Prefs::percent());
updateScore();
}
#include "multipleview.moc"