4a0ea9e40aecea1bb74e3156bccd291c35aed9aa
[mdictionary] / trunk / src / plugins / google / src / TranslationGoogle.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 TranslationGoogle.cpp
23     \author Jakub Jaszczynski <j.j.jaszczynski@gmail.com>
24 */
25
26 #include "TranslationGoogle.h"
27
28 TranslationGoogle::TranslationGoogle():_key(""),_trans(""),_dictionaryInfo("") {
29     googlePlugin=0;
30 }
31
32 TranslationGoogle::TranslationGoogle(QString _key,QString _trans,
33                     QString _dictionaryInfo,GooglePlugin *googlePlugin):
34                     _key(_key),_trans(_trans),_dictionaryInfo(_dictionaryInfo) {
35     this->googlePlugin=googlePlugin;
36     if(googlePlugin)
37         _dictHash = googlePlugin->hash();
38     _bookmark=0;
39 }
40
41 QString TranslationGoogle::key() const{
42     return _key;
43 }
44
45 QString TranslationGoogle::dictionaryInfo() const {
46     return _dictionaryInfo;
47 }
48
49 QString TranslationGoogle::toHtml() const {
50     QString result("");
51     if(!googlePlugin)
52         return result;
53     result="<dict> <info path=\"\" ";
54     if(isBookmark())
55         result+="bookmark=\"true\" >";
56     else
57         result+="bookmark=\"false\" >";
58     if(_trans!="")
59         return result+=_dictionaryInfo+ "</info>"+_trans +"</dict>";
60
61     QList<Translation*> translations=googlePlugin->searchWordList(_key);
62     if(translations.size()>0)
63         return translations.at(0)->toHtml();
64 }
65
66 void TranslationGoogle::setKey(QString) {
67     this->_key=_key;
68 }
69
70 void TranslationGoogle::setDictionaryInfo(QString){
71     this->_dictionaryInfo=_dictionaryInfo;
72 }