X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FXGUI%2FXGUI_ErrorDialog.h;h=e1f15cc4b601777f3e05ce240e971070805e4eb7;hb=0950719fabb1015dc7e77761eb0889bad9d38f80;hp=b442effba67fe4925700daca9b750bafd3aa4e69;hpb=5b24ea6ca4e9754fa89f7c742dce060abb2f3cda;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_ErrorDialog.h b/src/XGUI/XGUI_ErrorDialog.h index b442effba..e1f15cc4b 100644 --- a/src/XGUI/XGUI_ErrorDialog.h +++ b/src/XGUI/XGUI_ErrorDialog.h @@ -1,21 +1,34 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -/* - * XGUI_ErrorDialog.h - * - * Created on: Apr 28, 2014 - * Author: sbh - */ +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #ifndef XGUI_ERRORDIALOG_H_ #define XGUI_ERRORDIALOG_H_ #include #include +#include class QTextEdit; /** +* \ingroup GUI * A class of dialog to show error message */ class XGUI_ErrorDialog : public QDialog @@ -24,7 +37,8 @@ Q_OBJECT public: /// Constructor /// \param parent a parent widget - XGUI_EXPORT XGUI_ErrorDialog(QWidget* parent);XGUI_EXPORT virtual ~XGUI_ErrorDialog(); + XGUI_EXPORT XGUI_ErrorDialog(QWidget* parent); + XGUI_EXPORT virtual ~XGUI_ErrorDialog(); public slots: /// Update dialog box @@ -34,7 +48,7 @@ Q_OBJECT XGUI_EXPORT void clear(); /// Add error message - XGUI_EXPORT void addError(const QString&); + XGUI_EXPORT void addError(std::shared_ptr theMsg); /// Remove error message XGUI_EXPORT void removeError(const QString&);