Clean and order documentation in source files. Source ready to beta 2 release
[mdictionary] / src / plugins / stardict / StarDictDialog.cpp
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 StarDictDialog.cpp
23     \brief Class launches dialog which generates a new dictionary, or changes
24     settings
25
26     \author Mateusz Półrola
27 */
28
29 #include "StarDictDialog.h"
30 #include "StarDictPlugin.h"
31 #include "StarDialog.h"
32 #include <QDebug>
33
34
35 StarDictDialog::StarDictDialog(StarDictPlugin *plugin, QObject *parent) :
36     DictDialog(parent) {
37     this->plugin = plugin;
38     _lastDialogParent=0;
39 }
40
41
42 QWidget* StarDictDialog::lastDialogParent() {
43     return _lastDialogParent;
44 }
45
46
47 void StarDictDialog::setLastDialogParent(QWidget *w) {
48     _lastDialogParent = w;
49 }
50
51
52 Settings* StarDictDialog::addNewDictionary(QWidget *parent) {
53     StarDialog d(0, StarDialog::New, parent);
54     setLastDialogParent(parent);
55
56     connect(&d, SIGNAL(notify(Notify::NotifyType,QString)),
57             this, SIGNAL(notify(Notify::NotifyType,QString)));
58
59     if(d.exec() == QDialog::Accepted) {
60         return d.getSettings();
61     }
62     return 0;
63 }
64
65
66 void StarDictDialog::changeSettings(QWidget * parent) {
67     StarDialog d(plugin, StarDialog::Change, parent);
68     setLastDialogParent(parent);
69
70     connect(&d, SIGNAL(notify(Notify::NotifyType,QString)),
71             this, SIGNAL(notify(Notify::NotifyType,QString)));
72
73     if(d.exec() == QDialog::Accepted) {
74         plugin->setSettings(d.getSettings());
75     }
76 }