Changed Backbone::addDictionary to take CommmonDictInterface as a parametr
[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 }
42
43 int Backbone::searchLimit() {
44     return searchLimitv;
45 }
46
47 QHash<CommonDictInterface*, bool > Backbone::getDictionaries() {
48     return dicts;
49 }
50
51 QList<CommonDictInterface* > Backbone::getPlugins() {
52     return plugins;
53 }
54
55 QList<QString> Backbone::getHistory() {
56     //TODO code needed
57 }
58
59 QHash<QString, Translation*> Backbone::result() {
60     return resultv;
61 }
62
63 void Backbone::stopSearching() {
64     foreach(CommonDictInterface* dict, dicts.keys())
65         dict->stop();
66 }
67
68 void Backbone::search(QString word) {
69     //TODO add running searches in new threads
70     foreach(CommonDictInterface* dict, dicts.keys())
71         if(dicts[dict] == 1)
72             dict->search(word, searchLimit());
73 }
74
75  void Backbone::selectedDictionaries(QList<CommonDictInterface* > activeDicts) {
76      foreach(CommonDictInterface* dict, dicts.keys())
77          if(activeDicts.contains(dict))
78              dicts[dict] = 1;
79          else
80              dicts[dict] = 0;
81  }
82
83  void Backbone::addDictionary(CommonDictInterface *dict) {
84      dicts[dict] = 1;
85  }
86
87  void Backbone::quit() {
88     foreach(CommonDictInterface* dict, dicts.keys())
89         dict->stop();
90     Q_EMIT closeOk();
91 }
92
93
94
95