1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/* This file is part of the KDE project
Copyright (C) 2001, 2002 Montel Laurent <lmontel@mandrakesoft.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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 "LanguageTab.h"
#include "KoGlobal.h"
#include <KoCharacterStyle.h>
#include <kcombobox.h>
#include <kiconloader.h>
#include <QSet>
#include <QStringList>
#include <LanguageTab.moc>
LanguageTab::LanguageTab(/*KSpell2::Loader::Ptr loader,*/bool uniqueFormat, QWidget* parent, Qt::WFlags fl)
: QWidget(parent),
m_uniqueFormat(uniqueFormat)
{
widget.setupUi(this);
Q_UNUSED(fl);
widget.languageListSearchLine->setListWidget(widget.languageList);
//TODO use fl
const QStringList langNames = KoGlobal::listOfLanguages();
const QStringList langTags = KoGlobal::listOfLanguageTags();
QSet<QString> spellCheckLanguages;
widget.languageList->addItem(QString("None"));
#if 0 //Port it
if (loader)
spellCheckLanguages = QSet<QString>::fromList(loader->languages());
#endif
QStringList::ConstIterator itName = langNames.begin();
QStringList::ConstIterator itTag = langTags.begin();
for (; itName != langNames.end() && itTag != langTags.end(); ++itName, ++itTag) {
if (spellCheckLanguages.contains(*itTag)) {
QListWidgetItem* item = new QListWidgetItem();
item->setText(*itName);
item->setIcon(SmallIcon("tools-check-spelling"));
widget.languageList->addItem(item);
} else
widget.languageList->addItem(*itName);
}
connect(widget.languageList, SIGNAL(currentItemChanged(QListWidgetItem*, QListWidgetItem*)),
this, SIGNAL(languageChanged()));
}
LanguageTab::~LanguageTab()
{
}
void LanguageTab::save(KoCharacterStyle* style) const
{
if (!widget.languageList->currentItem() || widget.languageList->currentItem()->text() == "None") //TODO i18n
style->setLanguage(QString());
else
style->setLanguage(KoGlobal::tagOfLanguage(widget.languageList->currentItem()->text()));
}
void LanguageTab::setDisplay(KoCharacterStyle *style)
{
if (m_uniqueFormat) {
const QString& name = KoGlobal::languageFromTag(style->language());
QList<QListWidgetItem*> items = widget.languageList->findItems(name,
Qt::MatchFixedString);
if (!items.isEmpty()) {
widget.languageList->setCurrentItem(items.first());
widget.languageList->scrollToItem(items.first());
}
}
}
|