refaktoring
[mdictionary] / src / include / DictDialog.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 DictDialog.h
23     \brief Interface for plugin dialog provider
24     \author Mateusz Półrola <mateusz.polrola@comarch.com>
25 */
26
27
28 //Created by Mateusz Półrola
29
30 #ifndef DICTDIALOG_H
31 #define DICTDIALOG_H
32
33 #include <QObject>
34
35 class Settings;
36
37 //! Interface for plugin dialog provider
38 class DictDialog : public QObject {
39     Q_OBJECT
40
41 public:
42     DictDialog(QObject *parent = 0) : QObject(parent) {}
43
44     /*!
45       Shows "add new dictionary" dialog and returns settings of new dict
46       \param parent parent widget on which dialog will be displayed
47       */
48     virtual Settings* addNewDictionary(QWidget*parent=0)=0;
49
50     /*!
51       Shows "settings" dialog and saves new settings in plugin
52       \param parent parent widget on which dialog will be displayed
53       */
54     virtual void changeSettings(QWidget *parent = 0) = 0;
55 };
56
57 #endif // DICTDIALOG_H