Salome HOME
Update classes documentation
[modules/shaper.git] / src / ParametersPlugin / ParametersPlugin_WidgetParamsMgr.h
index 9762385768bc638a93dc6a822f0dad77bf46564e..4fe132ed730dbd751b153472c6e13140000fb0e8 100644 (file)
@@ -18,13 +18,22 @@ class QPushButton;
 class QToolButton;
 
 
+/*!
+ * \ingroup GUI
+ * Redefinition of QTreeWidget for processing of closeEditor event
+ */
 class ParametersPlugin_TreeWidget: public QTreeWidget
 {
  Q_OBJECT
 public:
+  /// Constructor
+  /// \param theParent a parent widget
   ParametersPlugin_TreeWidget(QWidget* theParent = 0) : QTreeWidget(theParent) {}
 
 protected slots:
+  /// Redefinition of virtual method
+  /// \param theEditor a editor widget
+  /// \param theHint end of editing hint
   virtual void closeEditor(QWidget* theEditor, QAbstractItemDelegate::EndEditHint theHint);
 };