74aa5c06817a038aaba8c9980d967ebf32b59cfd
[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     CommonDictInterfaceMock() {}
39
40     QString langFrom () const { return fromv; }
41     QString langTo() const {return tov;}
42     QString name() const { return namev;}
43     QString type() const {return typev;}
44     QString infoNote() const {return infoNotev;}
45     QDialog* loadDialog() {return 0;}
46     QDialog* settingsDialog() {return 0;}
47     CommonDictInterface* getNew(const Settings *) const { return 0;}
48     bool isAvailable() const {return available;}
49     uint hash() const { return namev.length() + 10*typev.length();}
50     void stop() {stopped = 1;}
51     void search(QString word, int limit) {
52         stopped = 0;
53         QList<Translation*> list;
54
55         TranslationMock *tm = new TranslationMock();
56         tm->_key = fromv;
57         tm->_translation = tov;
58         TranslationMock *tm1 = new TranslationMock();
59         tm1->_key = namev;
60         tm1->_translation = typev;
61         list << tm << tm1;
62
63         Q_EMIT finalTranslation(list);
64     }
65
66 };
67
68 #endif // COMMONDICTINTERFACEMOCK_H