Refactorization of gui
[mdictionary] / trunk / src / base / gui / MainWindow.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 Mateusz Półrola
23
24 #ifndef MAINWINDOW_H
25 #define MAINWINDOW_H
26
27 #include <QMainWindow>
28 #include "../../includes/GUIInterface.h"
29 #include "../backbone/backbone.h"
30 #include "TranslationWidget.h"
31 #include "WordListWidget.h"
32 #include "SearchBarWidget.h"
33 #include "MenuWidget.h"
34 #include "DictManagerWidget.h"
35 #include "HistoryListDialog.h"
36
37 namespace Ui {
38     class MainWindow;
39 }
40
41 class MainWindow : public GUIInterface
42 {
43     Q_OBJECT
44
45 public:
46     explicit MainWindow(Backbone* backbone, QWidget *parent = 0);
47     ~MainWindow();
48
49     QHash<CommonDictInterface*, bool> getDictionaries();
50     QList<CommonDictInterface*> getPlugins();
51
52     bool exactSearch();
53     void setExactSearch(bool);
54
55
56  public Q_SLOTS:
57     void searchExact(QString);
58
59 protected Q_SLOTS:
60     void wordListReady();
61     void translationsReady();
62     void addToHistory(QList<Translation*>);
63     void showHistory();
64     void historyNext();
65     void historyPrev();
66
67 private Q_SLOTS:
68     void setSearchString(QString);
69     void disableMenu();
70     void enableMenu();
71     void breakSearching();
72
73
74 protected:
75     /*! When user wants to close application, we first sends signal to stop all
76         ongoing searches.
77     */
78     void closeEvent(QCloseEvent *);
79
80
81 private:
82     Backbone* backbone;
83     Ui::MainWindow *ui;
84     SearchBarWidget* searchBarWidget;
85     TranslationWidget* translationWidget;
86     WordListWidget* wordListWidget;
87     MenuWidget* menuWidget;
88     DictManagerWidget* dictManagerWidget;
89
90     bool _exactSearch;
91     QString searchString;
92
93     void connectBackbone();
94     void connectSearchBar();
95     void connectWordList();
96     void connectTranslationWidget();
97     void connectDictManager();
98     void connectMenu();
99 };
100
101 #endif // MAINWINDOW_H