X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_ErrorDialog.h;h=ae9b929eaf06465812edcf257181d5ea7e49d2a7;hb=814a346c0ef4b2625779c5ef96be5ff87980acbb;hp=59de5059a20250adf750a256b7e99166d89a5467;hpb=d0128ef99f0d27b41c61eb74770ed6a6cbdf56c9;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_ErrorDialog.h b/src/XGUI/XGUI_ErrorDialog.h index 59de5059a..ae9b929ea 100644 --- a/src/XGUI/XGUI_ErrorDialog.h +++ b/src/XGUI/XGUI_ErrorDialog.h @@ -1,33 +1,62 @@ -/* - * XGUI_ErrorDialog.h - * - * Created on: Apr 28, 2014 - * Author: sbh - */ +// Copyright (C) 2014-2019 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; -class XGUI_ErrorDialog: public QDialog +/** +* \ingroup GUI +* A class of dialog to show error message +*/ +class XGUI_ErrorDialog : public QDialog { - Q_OBJECT -public: +Q_OBJECT + public: + /// Constructor + /// \param parent a parent widget XGUI_EXPORT XGUI_ErrorDialog(QWidget* parent); XGUI_EXPORT virtual ~XGUI_ErrorDialog(); -public slots: + public slots: + /// Update dialog box XGUI_EXPORT void refresh(); + + /// Clear messages XGUI_EXPORT void clear(); - XGUI_EXPORT void addError(const QString&); + + /// Add error message + XGUI_EXPORT void addError(std::shared_ptr theMsg); + + /// Remove error message XGUI_EXPORT void removeError(const QString&); -private: + private: + /// Widget for error log QTextEdit* myErrorLog; + + /// List of errors QStringList myErrors; };