f09815d01eb7d77cd1401f0d34c0b53ffcd7d557
[mdictionary] / src / include / CommonDictInterface.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 /*! \file CommonDictInterface.h
23 \brief Common interface for all dicts and plugins \see CommonDictInterface
24
25 \author Bartosz Szatkowski <bulislaw@linux.com>
26 */
27
28 #ifndef COMMONDICTINTERFACE_H
29 #define COMMONDICTINTERFACE_H
30
31 #include <QString>
32 #include <QDialog>
33 #include <QObject>
34 #include <QList>
35 #include "translation.h"
36 #include "Notify.h"
37 #include "settings.h"
38 #include "AccentsNormalizer.h"
39
40 class DictDialog;
41
42
43 //! Interface for dict engines plugins
44 class CommonDictInterface : public QObject, public AccentsNormalizer {
45   Q_OBJECT
46   public:
47     CommonDictInterface(QObject *parent = 0):QObject(parent) {}
48
49     virtual ~CommonDictInterface() {}
50
51     //! returns source language code iso 639-2
52     virtual QString langFrom() const = 0;
53
54     //! returns destination language code iso 639-2
55     virtual QString langTo() const = 0;
56
57     //! returns dictionary name (like "old English" or so)
58     virtual QString name() const = 0;
59
60     //! returns dictionary type (xdxf, google translate, etc)
61     virtual QString type() const = 0;
62
63     //! returns information about dictionary in html (name, authors, etc)
64     virtual QString infoNote() const = 0;
65
66     /*! returns DictDialog object that creates dialogs
67         for adding new dictionary and changing plugin settings*/
68     virtual DictDialog* dictDialog() = 0;
69
70
71     //! returns new, clean copy of plugin with settings set as in Settings*
72     virtual CommonDictInterface* getNew(const Settings*) const = 0;
73
74     //! returns whether plugin can start searching
75     virtual bool isAvailable() const = 0;
76
77     //! returns the actual translation of a word given in key
78     virtual QString search(QString key) = 0;
79
80     //! \returns unique value (unique for every dictionary, not plugin)
81     virtual uint hash() const = 0;
82
83     //! sets unique value (unique for every dictionary, not plugin)
84     virtual void setHash(uint) = 0;
85
86     //! returns current plugin settings
87     virtual Settings* settings() = 0;
88
89     //! returns plugin icon
90     virtual QIcon* icon() = 0;
91
92     //! returns empty translation object (to be fetched later) for given key
93     virtual Translation* getTranslationFor(QString ) {return 0;}
94
95     /*! plugin should delete any files (eg. cache) that have been created and are ready
96         to be deleted
97         */
98     virtual void clean() {}
99
100
101  public Q_SLOTS:
102     /*! performs search in dictionary
103         \param  word word to search in dictionary
104         \param  limit limit on number of results,
105                 if limit=0 all matching words are returned
106
107         After finishing search it has to emit
108         \see CommonDictInterface:finalTranslation  finalTranslation
109     */
110     virtual QList<Translation*> searchWordList(QString word, int limit=0) = 0;
111
112     //! stops current operation
113     virtual void stop() = 0;
114
115     virtual void retranslate() = 0;
116
117   Q_SIGNALS:
118
119     //! emitted when dictionary is ready to use afer being loaded
120     void loaded(CommonDictInterface*);
121
122     //! emitted after change in dictionary settings
123     void settingsChanged();
124
125     /*! emitted to backbone when it's needed to inform user about something
126         \param Backbone::NotifyType GUI may decide to show different types in
127             different ways
128         \param QString text of the notification
129     */
130     void notify(Notify::NotifyType, QString);
131     
132
133 protected:
134     QString removeAccents(QString string) {
135         if(settings()->value("strip_accents") == "true")
136             return AccentsNormalizer::removeAccents(string);
137         return string;
138     }
139 };
140
141 Q_DECLARE_INTERFACE(CommonDictInterface, "CommonDictInterface/0.1");
142
143 #endif