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

76 lines
3.1 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 "divisioncapitalasker.h"
#include "map.h"
divisionCapitalAsker::divisionCapitalAsker(TQWidget *parent, KGmap *m, TQWidget *w, uint count) : boxAsker(parent, m, w, count)
{
init();
}
bool divisionCapitalAsker::nextBoxAskerQuestionHook(const TQString &division, int i, bool isAnswer)
{
bool b;
if (isAnswer)
{
TQString sw = i18n("There are two ways of dealing with the translation of \"The capital of %1 is...\". The first option simply replaces %1 with the translated name of the relevant region. 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 \"The capital of %1 is...\" 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 divisionName = i18n(p_map -> getFileName().utf8(), division.utf8());
TQString text = i18n("The capital of %1 is...");
setQuestion(text.arg(divisionName));
}
else
{
TQString s = TQString("The capital of %1 is...").arg(division);
setQuestion(i18n(p_map -> getFileName().utf8(), s.utf8()));
}
p_currentAnswer.setQuestion(i18n(p_map -> getFileName().utf8(), division.utf8()));
p_capital = p_map -> getDivisionCapital(division);
p_currentAnswer.setCorrectAnswer(i18n(p_map -> getFileName().utf8(), p_capital.utf8()));
p_rb[i] -> setText(i18n(p_map -> getFileName().utf8(), p_capital.utf8()));
b = true;
}
else
{
TQString capital;
capital = p_map -> getDivisionCapital(division);
// There are crazy countries like Norway where two different divisions
// have the same capital, avoid asking
// The capital of Akershus is ...
// Oslo (true)
// Oslo (true)
// Lillehammer
// Moss
if (capital != p_capital)
{
p_rb[i] -> setText(i18n(p_map -> getFileName().utf8(), capital.utf8()));
b = true;
}
else b = false;
}
return b;
}
void divisionCapitalAsker::setAnswerHook(int userSays)
{
p_currentAnswer.setAnswer(p_rb[userSays] -> text());
}
TQString divisionCapitalAsker::getQuestionHook() const
{
return i18n("Capital of Division");
}