c1add44dbe5f89bef2360531465826c5b3d327f2
[mdictionary] / trunk / src / base / backbone / HistoryTranslation.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 HistoryTranslation.h
23 \brief Bookmarks functionality needs its own translation  object - becouse
24     Translation object should use slighty different api of Bookmarks objects
25
26 \author Bartosz Szatkowski <bulislaw@linux.com>
27 */
28 #ifndef HISTORYTRANSLATION_H
29 #define HISTORYTRANSLATION_H
30
31 #ifndef BOOKMARKS_H
32 #define BOOKMARKS_H
33
34 #include "../../includes/settings.h"
35 #include "../../includes/translation.h"
36
37 class Bookmarks;
38
39
40 class HistoryTranslation : public Translation
41 {
42 public:
43     TranslationXdxf();
44     TranslationXdxf(QString key, Bookmarks* bookmarks) {
45         _key = key;
46         _dictionaryInfo = "Bookmarks";
47         _bookmarks = bookmarks;
48     }
49
50     //! \return word to be translated
51     QString key() const {
52         return _key;
53     }
54
55     /*! \returns dictionary information (plugin name, languages, <logo> etc)\
56         to be displayed in translation table header*/
57     QString dictionaryInfo() const {
58         return _dictionaryInfo;
59     }
60
61     //! \return parsed raw format into html
62     QString toHtml() const {
63         return _bookmarks->search(_key);
64     }
65
66     /*! sets the word for which we want to find a translation
67         \param word for which we want to find a translation */
68     void setKey(QString key) {
69         _key = key;
70     };
71
72     //! sets information about dictionary
73     void setDictionaryInfo(QString dictionaryInfo) {
74         _dictionaryInfo = dictionaryInfo;
75     }
76
77
78 private:
79     QString _key;
80     QString _dictionaryInfo;
81     Bookmarks* _bookmarks;
82
83 };
84
85 #endif // HISTORYTRANSLATION_H