~ubuntu-branches/ubuntu/wily/sonnet/wily

« back to all changes in this revision

Viewing changes to src/plugins/voikko/voikkoclient.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-08-10 13:37:15 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20150810133715-i7wjuioyy0v9sxeq
Tags: 5.13.0-0ubuntu1
* new upstream release
* Add build-dep on libvoikko-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * voikkoclient.cpp
 
3
 *
 
4
 * Copyright (C)  2015  Jesse Jaara <jesse.jaara@gmail.com>
 
5
 *
 
6
 * This library is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Lesser General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2.1 of the License, or (at your option) any later version.
 
10
 *
 
11
 * This library is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public
 
17
 * License along with this library; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
19
 * 02110-1301  USA
 
20
 */
 
21
 
 
22
#include "voikkoclient.h"
 
23
#include "voikkodict.h"
 
24
#include "voikkodebug.h"
 
25
 
 
26
VoikkoClient::VoikkoClient(QObject* parent) : Sonnet::Client(parent)
 
27
{
 
28
    qCDebug(SONNET_VOIKKO) << "Initializing Voikko spell checker plugin.";
 
29
 
 
30
    char **dictionaries = voikkoListSupportedSpellingLanguages(Q_NULLPTR);
 
31
 
 
32
    if (!dictionaries) {
 
33
        return;
 
34
    }
 
35
 
 
36
    for (int i = 0; dictionaries[i] != Q_NULLPTR; ++i) {
 
37
        QString language = QString::fromUtf8(dictionaries[i]);
 
38
        m_supportedLanguages.append(language);
 
39
        qCDebug(SONNET_VOIKKO) << "Found dictionary for langauge:" << language;
 
40
    }
 
41
 
 
42
    voikkoFreeCstrArray(dictionaries);
 
43
}
 
44
 
 
45
VoikkoClient::~VoikkoClient()
 
46
{}
 
47
 
 
48
int VoikkoClient::reliability() const
 
49
{
 
50
    return 50;
 
51
}
 
52
 
 
53
Sonnet::SpellerPlugin* VoikkoClient::createSpeller(const QString &language)
 
54
{
 
55
    VoikkoDict *speller = new VoikkoDict(language);
 
56
    if (speller->initFailed()) {
 
57
        delete speller;
 
58
        return Q_NULLPTR;
 
59
    }
 
60
 
 
61
    return speller;
 
62
}
 
63
 
 
64
QStringList VoikkoClient::languages() const
 
65
{
 
66
    return m_supportedLanguages;
 
67
}
 
68
 
 
69
QString VoikkoClient::name() const
 
70
{
 
71
    return QStringLiteral("Voikko");
 
72
}
 
 
b'\\ No newline at end of file'