34b084726a1db80973961b1df9b166321b193cf2
[mdictionary] / src / mdictionary / gui / DictTypeSelectDialog.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 /*! \file DictTypeSelectDialog.h
22     \brief Implements plugin selection dialog
23
24     \author Mateusz Półrola <mateusz.polrola@comarch.pl>
25 */
26
27 #ifndef DICTTYPESELECTDIALOG_H
28 #define DICTTYPESELECTDIALOG_H
29
30 #include <QDialog>
31 #include <QtGui>
32 #include "../../include/settings.h"
33 #include "../../include/CommonDictInterface.h"
34
35 #define PLUGIN_ROW_ROLE 99      //TODO remove this
36
37
38 /*!
39   Shows a list of loaded dictionaries plugins.
40   Static function addNewdict will return selected plugin.
41 */
42 class DictTypeSelectDialog : public QDialog {
43     Q_OBJECT
44 public:    
45     //! Shows dialog with a list of plugins
46     /*!
47       \param plugins list of loaded plugins
48       \param parent parent widget
49       \return selected plugin, if user cancels dialog it returns 0 (NULL)
50       */
51     static CommonDictInterface* addNewDict(
52             QList<CommonDictInterface* > plugins,
53             QWidget *parent = 0);
54
55     //! \returns plugin selected by user
56     CommonDictInterface* selectedPlugin();
57
58 protected:
59     explicit DictTypeSelectDialog(QList<CommonDictInterface* > plugins,
60                                   QWidget *parent = 0);
61 private Q_SLOTS:
62     void pluginSelected(QListWidgetItem* item);
63
64 private:
65     QListWidget* pluginsListWidget;
66     QList<CommonDictInterface*> plugins;
67     QVBoxLayout* verticalLayout;
68     CommonDictInterface* _selectedPlugin;
69 };
70
71 #endif // DICTTYPESELECTDIALOG_H