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