Fixed scrolling in translation widget
[mdictionary] / trunk / src / base / gui / SearchBarWidget.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
25 #ifndef SEARCHBARWIDGET_H
26 #define SEARCHBARWIDGET_H
27
28 #include <QWidget>
29 #include <QtGui>
30 #include "../backbone/backbone.h"
31
32
33 //! Displays search bar
34 /*!
35     Contains line edit field to input word which user would like to find
36     and buttons to browse search history.
37 */
38 class SearchBarWidget : public QWidget {
39     Q_OBJECT
40 public:
41     explicit SearchBarWidget(Backbone *backbone, QWidget *parent = 0);
42     ~SearchBarWidget();
43
44     //! Returns searching status
45     /*! If backbone is still searching returns true */
46     bool isSearching() const;
47
48 Q_SIGNALS:
49     //! Requests to search for translation of word passed as parameter
50     void searchForTranslations(QStringList);
51
52     //! Request to stop all active searchings
53     void stopSearching();
54
55     void enableMenu(bool);
56
57 public Q_SLOTS:
58     //! Enable or disable search word line edit and history buttons
59     /*!
60       While searching it disables only history button and line edit.
61       Search/Stop button is always enabled
62     */
63     void setEnabled(bool enabled = true);
64     void searchFinished();
65     void searchWordList(QStringList);
66
67 private Q_SLOTS:
68     void clearSearchWordToolButtonClicked();
69     void searchPushButtonClicked();
70     void historyPrevToolButtonClicked();
71     void historyNextToolButtonClicked();
72     void historyShowToolButtonClicked();
73
74 private:
75     Backbone* backbone;
76     QLineEdit* searchWordLineEdit;
77     QToolButton* clearSearchWordToolButton;
78     QPushButton* searchPushButton;
79     QToolButton* historyPrevToolButton;
80     QToolButton* historyNextToolButton;
81     QToolButton* historyShowToolButton;
82     QHBoxLayout* horizontalLayout;
83     QProgressBar* searchingProgressBar;
84
85     QVBoxLayout* verticalLayout;
86
87     bool _isSearching;
88
89     void initializeUI();
90     void showHistoryListDialog();
91 };
92
93 #endif // SEARCHBARWIDGET_H