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