Clean and order documentation in source files. Source ready to beta 2 release
[mdictionary] / src / include / DictDialog.h
index 1cfd403..f17e26f 100644 (file)
@@ -21,6 +21,7 @@
 
 /*! \file DictDialog.h
     \brief Interface for plugin dialog provider
+
     \author Mateusz Półrola <mateusz.polrola@comarch.com>
 */
 
@@ -31,6 +32,7 @@
 #define DICTDIALOG_H
 
 #include <QObject>
+#include "Notify.h"
 
 class Settings;
 
@@ -42,16 +44,19 @@ public:
     DictDialog(QObject *parent = 0) : QObject(parent) {}
 
     /*!
-      Shows "add new dictionary" dialog and returns settings of new dict
-      \param parent parent widget on which dialog will be displayed
+      Shows "add a new dictionary" dialog and returns settings of a new dict
+      \param parent parent widget on which the dialog will be displayed
       */
     virtual Settings* addNewDictionary(QWidget*parent=0)=0;
 
     /*!
       Shows "settings" dialog and saves new settings in plugin
-      \param parent parent widget on which dialog will be displayed
+      \param parent parent widget on which the dialog will be displayed
       */
     virtual void changeSettings(QWidget *parent = 0) = 0;
+
+Q_SIGNALS:
+    void notify(Notify::NotifyType, QString);
 };
 
 #endif // DICTDIALOG_H