X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IErrorMgr.h;h=9f595fdbbf7bb5e5fa97c9467694d7d1cd882f1c;hb=561ec84c4405975d78d8cd7d50c5bfa6dba8d738;hp=c459183335876849d08ee68f1288a1eab7fe2727;hpb=eecc1410339bbfe9a7ba175a7555c4030bb4a80a;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IErrorMgr.h b/src/ModuleBase/ModuleBase_IErrorMgr.h index c45918333..9f595fdbb 100644 --- a/src/ModuleBase/ModuleBase_IErrorMgr.h +++ b/src/ModuleBase/ModuleBase_IErrorMgr.h @@ -12,11 +12,17 @@ class ModuleBase_IPropertyPanel; +/** + * \class ModuleBase_IErrorMgr + * \ingroup GUI + * \brief An interface to Errors manager object + */ class MODULEBASE_EXPORT ModuleBase_IErrorMgr : public QObject { Q_OBJECT public: /// Default constructor + /// \param theParent a parent object ModuleBase_IErrorMgr(QObject* theParent = 0); /// Virtual destructor virtual ~ModuleBase_IErrorMgr(); @@ -28,10 +34,6 @@ public: /// \return Currently installed property panel ModuleBase_IPropertyPanel* propertyPanel() const { return myPropertyPanel; } -public slots: - /// SLOT, that is called after the operation is validated and feature validation errors have changed. - virtual void onValidationStateChanged() = 0; - protected slots: /// Process values changed event for processing feature attribute validation errors. virtual void onWidgetChanged() = 0;