Added search from command line
[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 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     void searchWordList(QStringList);
64
65 private Q_SLOTS:
66     void clearSearchWordToolButtonClicked();
67     void searchPushButtonClicked();
68     void historyPrevToolButtonClicked();
69     void historyNextToolButtonClicked();
70     void historyShowToolButtonClicked();
71
72 private:
73     Backbone* backbone;
74     QLineEdit* searchWordLineEdit;
75     QToolButton* clearSearchWordToolButton;
76     QPushButton* searchPushButton;
77     QToolButton* historyPrevToolButton;
78     QToolButton* historyNextToolButton;
79     QToolButton* historyShowToolButton;
80     QHBoxLayout* horizontalLayout;
81     QProgressBar* searchingProgressBar;
82
83     QVBoxLayout* verticalLayout;
84
85     bool _isSearching;
86
87     void initializeUI();
88     void showHistoryListDialog();
89 };
90
91 #endif // SEARCHBARWIDGET_H