1b0c70ecdb2c60c7e6db7a85ba0ea15df143a385
[mdictionary] / trunk / src / base / backbone / backbone.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 // Created by Bartosz Szatkowski
23
24 #include "backbone.h"
25
26 Backbone::Backbone(QObject *parent)
27     : QObject(parent)
28 {
29    searchLimitv = 10;
30 }
31
32 Backbone::~Backbone()
33 {
34
35 }
36
37 Backbone::Backbone(const Backbone &b){
38     dicts = QHash<CommonDictInterface*, bool > (b.dicts);
39     plugins = QList<CommonDictInterface* > (b.plugins);
40     resultv = QHash<QString, Translation* > (b.resultv);
41     searchLimitv = b.searchLimit();
42 }
43
44 int Backbone::searchLimit() const {
45     return searchLimitv;
46 }
47
48 QHash<CommonDictInterface*, bool > Backbone::getDictionaries() {
49     return dicts;
50 }
51
52 QList<CommonDictInterface* > Backbone::getPlugins() {
53     return plugins;
54 }
55
56 QList<QString> Backbone::getHistory() {
57     //TODO code needed
58 }
59
60 QHash<QString, Translation*> Backbone::result() {
61     return resultv;
62 }
63
64 void Backbone::stopSearching() {
65     foreach(CommonDictInterface* dict, dicts.keys())
66         dict->stop();
67 }
68
69 void Backbone::search(QString word) {
70     //TODO add running searches in new threads
71     foreach(CommonDictInterface* dict, dicts.keys())
72         if(dicts[dict] == 1)
73             dict->search(word, searchLimit());
74 }
75
76  void Backbone::selectedDictionaries(QList<CommonDictInterface* > activeDicts) {
77      foreach(CommonDictInterface* dict, dicts.keys())
78          if(activeDicts.contains(dict))
79              dicts[dict] = 1;
80          else
81              dicts[dict] = 0;
82  }
83
84  void Backbone::addDictionary(CommonDictInterface* dict) {
85      dicts[dict] = 1;
86      connect(dict, SIGNAL(finalTranslation(QList<Translation*>)),
87              this, SLOT(translation(QList<Translation*>)));
88  }
89
90  void Backbone::quit() {
91     stopSearching();
92     Q_EMIT closeOk();
93 }
94
95
96
97 void Backbone::translation(QList<Translation *> trans) {
98
99 }
100
101
102