table view
[mdictionary] / src / plugins / xdxf / XdxfDictSelectDialog.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     \file XdxfDictSelectDialog.h
23     \brief Shows dialog with list of dictionaries allowing user
24   to select one of them.
25
26     \author Mateusz Półrola <mateusz.polrola@comarch.com>
27  */
28
29 #ifndef XDXFDICTSELECTDIALOG_H
30 #define XDXFDICTSELECTDIALOG_H
31
32 #include <QDialog>
33 #include <QtGui>
34 #include <QFile>
35 #include <QDir>
36 #include <QDeclarativeView>
37 #include <QDeclarativeContext>
38
39 #include "DownloadDict.h"
40 #include "DictsListModel.h"
41 #include "DictsModel.h"
42 #include "DictsProxyModel.h"
43 #include "DictsProxyListModel.h"
44
45
46 /*!
47   Shows dialog with list of dictionaries and informations about them,
48   allowing user to filter data based on dictionaries languages,
49   and to select one of them.
50 */
51 class XdxfDictSelectDialog : public QDialog {
52     Q_OBJECT
53 public:
54     /*!
55         Constructor
56         \param dicts list of DownloadDict objects describing dictionaries.
57     */
58     XdxfDictSelectDialog(QList<DownloadDict> dicts,
59                                   QWidget *parent = 0);
60
61     /*!
62         Returns download link of dictionary selected by user. This string is set
63         only when user select any dictionary (dialog was accepted), otherwise it
64         is empty.
65     */
66     QString link() { return _link;}
67
68 private Q_SLOTS:
69     //! creates items for comboboxes and creates model with dicts info
70     void initializeDicts();
71
72     //! filters dicts after filtering settings change
73     void refreshDictList();
74
75     //! accept dialog and sets download link of clicked dictionary
76     void itemClicked(QModelIndex);
77
78     void itemClicked(QString link);
79
80 private:
81     QVBoxLayout* mainLayout;
82     QDeclarativeView *view;
83     DictsListModel* model2;
84     DictsProxyListModel *proxyModel2;
85
86     QTreeView* treeView;
87     DictsModel* model;
88     DictsProxyModel *proxyModel; //used by treeView to allow filtering and sorti
89     QVBoxLayout* layout;
90     QHBoxLayout* checkBoxLayout;
91     QComboBox* langFrom;
92     QComboBox* langTo;
93     QLabel* langFromLabel;
94     QLabel* langToLabel;
95     QList<DownloadDict>* dictList;
96     QString _link;
97 };
98
99 #endif // XDXFDICTSELECTDIALOG_H