cc7ee06efa4d1514f4e6db8020584dec3d69c577
[mdictionary] / src / plugins / stardict / StarDictPlugin.cpp
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     mDictionary is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21
22 /*! \file stardictplugin.cpp
23 */
24
25 #include "StarDictPlugin.h"
26 #include <QDebug>
27 #include "../../include/Notify.h"
28 #include <QTranslator>
29 #include <QCoreApplication>
30 #include <QThread>
31
32 StarDictPlugin::StarDictPlugin(QObject *parent) : CommonDictInterface(parent),
33                     _langFrom(""), _langTo(""),_name(""), _infoNote("") {
34     _settings = new Settings();
35     _dictDialog = new StarDictDialog(this, this);
36
37     connect(_dictDialog, SIGNAL(notify(Notify::NotifyType,QString)),
38             this, SIGNAL(notify(Notify::NotifyType,QString)));
39
40
41     _settings->setValue("type","stardict");
42     _icon = QIcon("/usr/share/mdictionary/xdxf.png");
43     _wordsCount = -1;
44     stopped = false;
45
46     initAccents();
47 }
48
49 void StarDictPlugin::retranslate() {
50     QString locale = QLocale::system().name();
51
52     QTranslator *translator = new QTranslator(this);
53
54     if(!translator->load(":/xdxf/translations/" + locale)) {
55         translator->load(":/xdxf/translations/en_US");
56     }
57     QCoreApplication::installTranslator(translator);
58 }
59
60
61 StarDictPlugin::~StarDictPlugin() {
62     delete _settings;
63     delete _dictDialog;
64 }
65
66
67 QString StarDictPlugin::langFrom() const {
68     return _langFrom;
69 }
70
71
72 QString StarDictPlugin::langTo() const {
73     return  _langTo;
74 }
75
76
77 QString StarDictPlugin::name() const {
78     return  _name;
79 }
80
81
82 QString StarDictPlugin::type() const {
83     return QString("stardict");
84 }
85
86
87 QString StarDictPlugin::infoNote() const {
88     return _infoNote;
89 }
90
91
92 QList<Translation*> StarDictPlugin::searchWordList(QString word, int limit) {
93     QSet<Translation*> translations;
94     return translations.toList();
95 }
96
97
98
99 QString StarDictPlugin::search(QString key) {
100     return "";
101 }
102
103 void StarDictPlugin::parseIfoFile()
104 {
105     QFile file(settings()->value("path"));
106     if (!file.open(QIODevice::ReadOnly))
107     {
108         return 0;
109     }
110     QTextStream in(&file);
111     while (!in.atEnd()) {
112         QString line = in.readLine();
113         QStringList list = line.split("=");
114
115         settings()->setValue(list.at(0),list.at(1));
116     }
117 }
118
119
120 void StarDictPlugin::stop() {
121     stopped=true;
122 }
123
124
125 DictDialog* StarDictPlugin::dictDialog() {
126      return _dictDialog;
127 }
128
129
130 CommonDictInterface* StarDictPlugin::getNew(const Settings *settings) const {
131     StarDictPlugin *plugin = new StarDictPlugin();
132
133     connect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
134             this, SIGNAL(notify(Notify::NotifyType,QString)));
135
136     ((StarDictDialog*)plugin->dictDialog())->setLastDialogParent(_dictDialog->lastDialogParent());
137
138
139
140     if(settings && plugin->setSettings(settings)) {
141
142         disconnect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
143                 this, SIGNAL(notify(Notify::NotifyType,QString)));
144         return plugin;
145     }
146     else {
147         disconnect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
148                 this, SIGNAL(notify(Notify::NotifyType,QString)));
149         delete plugin;
150         return 0;
151     }
152 }
153
154
155 bool StarDictPlugin::isAvailable() const {
156     return true;
157 }
158
159
160 Settings* StarDictPlugin::settings() {
161     return _settings;
162 }
163
164
165 bool StarDictPlugin::isCached() {
166     return false;
167 }
168
169
170 bool StarDictPlugin::setSettings(const Settings *settings) {
171     if(settings) {
172
173     } else
174         return false;
175     Q_EMIT settingsChanged();
176     return true;
177 }
178
179
180 bool StarDictPlugin::getDictionaryInfo() {
181     QFile dictionaryFile(_settings->value("path"));
182     if(!QFile::exists(_settings->value("path"))
183                 || !dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
184        Q_EMIT notify(Notify::Warning,
185                QString(tr("StarDict dictionary cannot be read from file")));
186         qDebug()<<"Error: could not open the file";
187         return false;
188     }
189
190     return false;
191 }
192
193
194 QIcon* StarDictPlugin::icon() {
195     return &_icon;
196 }
197
198
199 int StarDictPlugin::countWords() {
200     return 0;
201 }
202
203
204
205 void StarDictPlugin::clean() {
206
207 }
208
209
210 Q_EXPORT_PLUGIN2(stardict, StarDictPlugin)