Added comments to XdxfLoadDialog
[mdictionary] / trunk / src / includes / DictDialog.h
index 0e32ee1..7932404 100644 (file)
 
 class Settings;
 
+//! Interface for plugin dialog provider
 class DictDialog : public QObject {
     Q_OBJECT
 
 public:
     DictDialog(QObject*parent=0) : QObject(parent) {}
+
+    /*!
+      Shows add new dictionary dialog and returns settings of new dict
+      \param parent parent widget on which will be displayed dialog
+      */
     virtual Settings* addNewDictionary(QWidget*parent=0)=0;
+
+    /*!
+      Shows settings dialog and save new settings in plugin
+      \param parent parent widget on which will be displayed dialog
+      */
     virtual void changeSettings(QWidget*parent=0)=0;
 };