37ab63e1d2b12c7ae82743e75555055a4f2a74f7
[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);
62
63
64     //! Sets search bar in busy state
65     /*!
66       Displays "busy" bar and disables search word text edit andhistory buttons
67       */
68     void setBusy();
69
70     //! Sets search bar in idle state
71     /*!
72       Hides "busy" bar and enables all widgets
73       */
74     void setIdle();
75
76
77     //! Search for given word
78     void search(QString word);
79
80 private Q_SLOTS:
81     void clearSearchWordToolButtonClicked();
82     void searchPushButtonClicked();
83     void historyPrevToolButtonClicked();
84     void historyNextToolButtonClicked();
85     void historyShowToolButtonClicked();
86
87
88 private:
89     Backbone* backbone;
90     QLineEdit* searchWordLineEdit;
91     QToolButton* clearSearchWordToolButton;
92     QPushButton* searchPushButton;
93     QToolButton* historyPrevToolButton;
94     QToolButton* historyNextToolButton;
95     QToolButton* historyShowToolButton;
96     QHBoxLayout* horizontalLayout;
97     QProgressBar* searchingProgressBar;
98
99     QIcon generateIcon(QIcon oryginal, qreal rotation=0);
100
101     QVBoxLayout* verticalLayout;
102
103     bool _isSearching;
104
105     void initializeUI();
106     void showHistoryListDialog();
107 };
108
109 #endif // SEARCHBARWIDGET_H