Clean and order documentation in source files. Source ready to beta 2 release
[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 /*!
23     \file TranslationGoogle.cpp
24     \brief Implementation of google plugin's translation.
25
26     \author Jakub Jaszczynski <j.j.jaszczynski@gmail.com>
27 */
28
29 #include "TranslationGoogle.h"
30
31 TranslationGoogle::TranslationGoogle():_key(QString("")),
32                     _dictionaryInfo(QString("")), _trans(QString("")) {
33     googlePlugin=0;
34 }
35
36 TranslationGoogle::TranslationGoogle(QString _key,QString _trans,
37                     QString _dictionaryInfo,GooglePlugin *googlePlugin):
38                      _key(_key),_dictionaryInfo(_dictionaryInfo), _trans(_trans) {
39     this->googlePlugin=googlePlugin;
40     if(googlePlugin)
41         _dictHash = googlePlugin->hash();
42     _bookmark=0;
43 }
44
45 TranslationGoogle::~TranslationGoogle(){
46     ;
47 }
48
49 QString TranslationGoogle::key() const{
50     return _key;
51 }
52
53 QString TranslationGoogle::toXml() const {
54     QString result("");
55     if(!googlePlugin)
56         return result;   
57     result="<dict> <info path=\"/usr/share/mdictionary/google.png\" ";
58     if(isBookmark())
59         result+=" bookmark=\"true\" > \n";
60     else
61         result+=" bookmark=\"false\" > \n";
62
63     if(_trans!="")
64         return result+=_dictionaryInfo+ "</info>"+_trans +"</dict>";
65     QList<Translation*> translations=googlePlugin->searchWordList(_key);
66     if(translations.size()>0 && translations.at(0)){
67         if(isBookmark())
68             translations.at(0)->setBookmark(true);
69         return translations.at(0)->toXml();
70     }
71     return "";
72
73 }
74
75 void TranslationGoogle::setKey(QString) {
76     this->_key=_key;
77 }
78
79 void TranslationGoogle::setDictionaryInfo(QString){
80     this->_dictionaryInfo=_dictionaryInfo;
81 }