change in jsonParse in GooglePlugin
[mdictionary] / trunk / src / plugins / google / src / GoogleDictDialog.h
1 #ifndef GOOGLEDICTDIALOG_H
2 #define GOOGLEDICTDIALOG_H
3
4 #include "../../../includes/DictDialog.h"
5 #include "GooglePlugin.h"
6
7 class GooglePlugin;
8
9 class GoogleDictDialog : public DictDialog
10 {
11      Q_OBJECT
12 public:
13     explicit GoogleDictDialog(GooglePlugin* plugin, QObject *parent = 0);
14     /*!
15       Shows add new xdxf dictionary dialog and returns settings of new dict
16       \param parent parent widget on which will be displayed dialog
17       */
18     Settings* addNewDictionary(QWidget *parent);
19
20     /*!
21       Shows settings dialog and save new settings in plugin
22       \param parent parent widget on which will be displayed dialog
23       */
24     void changeSettings(QWidget *parent);
25
26 private:
27     GooglePlugin* plugin;
28 };
29
30 #endif // GOOGLEDICTDIALOG_H