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/capitaldivisionasker.cpp

75 lines
3.0 KiB

/***************************************************************************
* Copyright (C) 2004 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 <tqradiobutton.h>
#include "capitaldivisionasker.h"
#include "map.h"
capitalDivisionAsker::capitalDivisionAsker(TQWidget *parent, KGmap *m, TQWidget *w, uint count) : boxAsker(parent, m, w, count)
{
init();
}
bool capitalDivisionAsker::nextBoxAskerQuestionHook(const TQString &division, int i, bool isAnswer)
{
bool b;
if (isAnswer)
{
p_capital = p_map -> getDivisionCapital(division);
p_currentAnswer.setQuestion(i18n(p_map -> getFileName().utf8(), p_capital.utf8()));
p_currentAnswer.setCorrectAnswer(i18n(p_map -> getFileName().utf8(), division.utf8()));
TQString sw = i18n("There are two ways of dealing with the translation of \"%1 is the capital of...\". The first option simply replaces %1 with the translated name of the relevant city. If the grammar of your language allows this, choose this option by setting the translation of this message to 1, and leave untranslated the translations of \"%1 is the capital of...\" that have the placename embedded (or translate them as - if you wish to show the file as fully translated. The second option is to translate all messages in full - this is likely to be required in the case of highly-inflected languages like Russian. To choose this option, set the translation of this message to 0, and translate all the messages.", "0");
if (sw == "1")
{
TQString capitalName = i18n(p_map -> getFileName().utf8(), p_capital.utf8());
TQString text = i18n("%1 is the capital of...");
setQuestion(text.arg(capitalName));
}
else
{
TQString s = TQString("%1 is the capital of...").arg(p_capital);
setQuestion(i18n(p_map -> getFileName().utf8(), s.utf8()));
}
p_rb[i] -> setText(i18n(p_map -> getFileName().utf8(), division.utf8()));
b = true;
}
else
{
// There are crazy countries like Norway where two different divisions
// have the same capital, avoid asking
// Oslo is the capital of ...
// Oslo (true)
// Akershus (true)
// Buskerud
// Hedmark
if (p_map -> getDivisionCapital(division) != p_capital)
{
p_rb[i] -> setText(i18n(p_map -> getFileName().utf8(), division.utf8()));
b = true;
}
else b = false;
}
return b;
}
void capitalDivisionAsker::setAnswerHook(int userSays)
{
p_currentAnswer.setAnswer(p_rb[userSays] -> text());
}
TQString capitalDivisionAsker::getQuestionHook() const
{
return i18n("Division From Its Capital");
}