Fixed StarDictPlugin integration with other stardict classes
[mdictionary] / src / plugins / stardict / StarDictPlugin.h
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
23 /*! \file xdxfplugin.h
24 */
25 #ifndef STARDICTPLUGIN_H
26 #define STARDICTPLUGIN_H
27
28
29 #include <QObject>
30 #include <QDialog>
31 #include <QRegExp>
32 #include <QTime>
33 #include <QSqlQuery>
34 #include <QSqlDatabase>
35 #include <QSqlError>
36 #include <QFile>
37 #include <QXmlStreamReader>
38 #include <QtPlugin>
39 #include <QHash>
40 #include <QIcon>
41
42 #include "../../include/CommonDictInterface.h"
43 #include "../../include/settings.h"
44 #include "StarDictDialog.h"
45 #include "TranslationStarDict.h"
46
47 class TranslationXdxf;
48
49 class StarDictPlugin : public CommonDictInterface
50 {
51     Q_OBJECT
52     Q_INTERFACES(CommonDictInterface)
53 public:
54     StarDictPlugin(QObject *parent=0);
55
56     ~StarDictPlugin();
57
58     //! \returns source language code iso 639-2
59     QString langFrom() const;
60
61     //! \returns destination language code iso 639-2
62     QString langTo() const;
63
64     //! \returns dictionary name (like "old English" or so)
65     QString name() const;
66
67     //! \returns dictionary type (xdxf, google translate, etc)
68     QString type() const;
69
70     //! returns information about dictionary in xml (name, authors, etc)
71     QString infoNote() const;
72
73     /*! \returns DictDialog object that creates dialogs
74         for adding a new dictionary and changing plugin settings
75       */
76     DictDialog* dictDialog();
77
78     //! \returns new, clean copy of plugin with settings set as in Settings*
79     CommonDictInterface* getNew(const Settings*) const;
80
81     //! \returns whether plugin can start searching
82     bool isAvailable() const;
83
84     //! \returns a description of a word given by a QString
85     QString search(QString key);
86
87     //! \returns current plugin settings
88     Settings* settings();
89
90     //! \returns words count in a dictionary
91     long wordsCount();
92
93     //! Sets new settings
94     bool setSettings(const Settings*);
95
96     //! \return object containing data parsed from .ifo file
97     void parseIfoFile();
98
99     //! \returns plugin icon
100     QIcon* icon();
101
102     /*! plugin should delete any files (eg. cache) that have been created and are ready
103         to be deleted
104         */
105     void clean();
106
107
108
109 public Q_SLOTS:
110     /*! performs search in a dictionary
111       \param  word word to search for in a dictionary
112       \param limit limit on number of results
113
114       After finishing search it has to emit
115       \see CommonDictInterface:finalTranslation  finalTranslation
116     */
117     QList<Translation*> searchWordList(QString word, int limit=0);
118
119     //! stops current operation
120     void stop();
121
122     //! loads translations for each plugin only once
123     void retranslate();
124
125
126 private:
127
128     /*! \returns true or false depending on whether the dictionary is cached
129         or not
130      */
131     bool isCached();
132     /*! searches for a list of words similar to a word in a database file
133     \param word key compared with keys in a database
134     \param limit limits the number of translations in returned list,
135            0 means unlimited
136     \returns list of translations
137     */
138     QList<Translation*> searchWordListCache(QString word, int limit=0);
139
140     /*! searches for a list of words similar to a word in a xdxf file
141     \param word key compared with keys in a xdxf file
142     \param limit limits the number of translations in returned list,
143            0 means unlimited
144     \returns list of translations
145     */
146     QList<Translation*> searchWordListFile(QString word, int limit=0);
147
148     /*! searches for a translation of a word which is exactly like a key
149         in a xdxf file */
150     QString searchFile(QString key);
151
152     //! scans dictionary file to get information about it
153     bool getDictionaryInfo();
154
155     //! counts the keys in a xdxf file
156     int countWords();
157
158
159     //! language from which we translate
160     QString _langFrom;
161     //! language to which we translate
162     QString _langTo;
163     //! name of a dictionary
164     QString _name;
165     //! information about dictionary
166     QString _infoNote;
167
168     QString _dictionaryInfo;
169
170     //! icon displayed during translations and when a dictionary is chosen
171     QIcon _icon;
172
173     //! number of words in a dictionary
174     long _wordsCount;
175     //! indicates if search is stopped
176     volatile bool stopped;
177     Settings *_settings;
178     StarDictDialog* _dictDialog;
179     Settings* _ifoFileSettings;
180 };
181
182 #endif // XDXFPLUGIN_H
183
184