fa6e35daea0ed5528179d687b9eb61ae8043fb6b
[mdictionary] / src / plugins / google / 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(QString("")),
29                     _dictionaryInfo(QString("")), _trans(QString("")) {
30     googlePlugin=0;
31 }
32
33 TranslationGoogle::TranslationGoogle(QString _key,QString _trans,
34                     QString _dictionaryInfo,GooglePlugin *googlePlugin):
35                      _key(_key),_dictionaryInfo(_dictionaryInfo), _trans(_trans) {
36     this->googlePlugin=googlePlugin;
37     if(googlePlugin)
38         _dictHash = googlePlugin->hash();
39     _bookmark=0;
40 }
41
42 TranslationGoogle::~TranslationGoogle(){
43     ;
44 }
45
46 QString TranslationGoogle::key() const{
47     return _key;
48 }
49
50 QString TranslationGoogle::toXml() const {
51     QString result("");
52     if(!googlePlugin)
53         return result;   
54     result="<dict> <info path=\"/usr/share/mdictionary/google.png\" ";
55     if(isBookmark())
56         result+=" bookmark=\"true\" > \n";
57     else
58         result+=" bookmark=\"false\" > \n";
59
60     if(_trans!="")
61         return result+=_dictionaryInfo+ "</info>"+_trans +"</dict>";
62     QList<Translation*> translations=googlePlugin->searchWordList(_key);
63     if(translations.size()>0 && translations.at(0)){
64         if(isBookmark())
65             translations.at(0)->setBookmark(true);
66         return translations.at(0)->toXml();
67     }
68     return "";
69
70 }
71
72 void TranslationGoogle::setKey(QString) {
73     this->_key=_key;
74 }
75
76 void TranslationGoogle::setDictionaryInfo(QString){
77     this->_dictionaryInfo=_dictionaryInfo;
78 }