Merged with master
[mdictionary] / trunk / tests / mDictionaryTests / CommonDictInterfaceMock.h
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
25
26
27 #ifndef COMMONDICTINTERFACEMOCK_H
28 #define COMMONDICTINTERFACEMOCK_H
29
30 #include "../../src/includes/CommonDictInterface.h"
31 #include "TranslationMock.h"
32
33 class CommonDictInterfaceMock : public CommonDictInterface
34 {
35 public:
36     QString fromv, tov, namev, typev, infoNotev;
37     bool available,stopped;
38     uint _hash;
39     CommonDictInterfaceMock(QObject* parent = 0) :
40             CommonDictInterface(parent) {}
41
42     QString langFrom () const { return fromv; }
43     QString langTo() const {return tov;}
44     QString name() const { return namev;}
45     QString type() const {return typev;}
46     QString infoNote() const {return infoNotev;}
47     QDialog* loadDialog() {return 0;}
48     QDialog* settingsDialog() {return 0;}
49     CommonDictInterface* getNew(const Settings *) const { return 0;}
50     bool isAvailable() const {return available;}
51     uint hash() const { return _hash;}
52     void setHash(uint h) {_hash = h;}
53     void stop() {stopped = 1;}
54     QString search(QString key) {return "";}
55     QList<Translation*> searchWordList(QString word, int limit) {
56         qDebug() << "search " << this->thread()->currentThreadId();
57         stopped = 0;
58         QList<Translation*> list;
59
60         TranslationMock *tm = new TranslationMock();
61         tm->_key = langFrom();
62         tm->_translation = langTo();
63         TranslationMock *tm1 = new TranslationMock();
64         tm1->_key = name();
65         tm1->_translation = type();
66         list << tm << tm1;
67
68         return list;
69     }
70     DictDialog* dictDialog() {return 0;}
71     Settings* settings() {return 0;}
72
73 };
74
75 #endif // COMMONDICTINTERFACEMOCK_H