add test: getNew() in xdxf plugin, and add some comments
[mdictionary] / trunk / src / plugins / xdxf / src / xdxfplugin.h
index 4feb602..b0a0b65 100644 (file)
@@ -91,17 +91,30 @@ public Q_SLOTS:
     void stop();
 
 private:
+/*! returns true or false depending on whether the dictionary is cached
+    or not, not implemented yet
+ */
     bool isCached();
+
+//! sets the path to dictionary file and adds it to settings
     void setPath(QString);
+
+    //! language from which we translate
     QString _langFrom;
+    //! language to which we translate
     QString _langTo;
+    //! name of a dictionary
     QString _name;
+    //! type of a dictionary
     QString _type;
+    //! information about dictionary
     QString _infoNote;
     QDialog *_loadDialog;
     QDialog *_settingsDialog;
+    //! path to dictionary file
     QString path;
     uint _hash;
+
     volatile bool stopped;
     Settings *_settings;
     XdxfDictDialog* _dictDialog;