ec93ed4ed6e8637e09117b892e409ccde2990467
[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(QString);
51
52     //! Request to stop all active searchings
53     void stopSearching();
54
55 public Q_SLOTS:
56     //! Enable or disable search word line edit and history buttons
57     /*!
58       While searching it disables only history button and line edit.
59       Search/Stop button is always enabled
60     */
61     void setEnabled(bool enabled = true);
62     void searchFinished();
63
64 private Q_SLOTS:
65     void clearSearchWordToolButtonClicked();
66     void searchPushButtonClicked();
67     void historyPrevToolButtonClicked();
68     void historyNextToolButtonClicked();
69     void historyShowToolButtonClicked();
70
71 private:
72     Backbone* backbone;
73     QLineEdit* searchWordLineEdit;
74     QToolButton* clearSearchWordToolButton;
75     QPushButton* searchPushButton;
76     QToolButton* historyPrevToolButton;
77     QToolButton* historyNextToolButton;
78     QToolButton* historyShowToolButton;
79     QHBoxLayout* horizontalLayout;
80     QProgressBar* searchingProgressBar;
81
82     QVBoxLayout* verticalLayout;
83
84     bool _isSearching;
85
86     void initializeUI();
87     void showHistoryListDialog();
88 };
89
90 #endif // SEARCHBARWIDGET_H