X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSUPERVGUI%2FSUPERVGUI_Notification.h;h=82ef1ebd2fc366b0f8ff7b0e6b4bbeaac05fed00;hb=ea7f29f75031ca13b9454f5e9ac73730f1f584eb;hp=3c5f93a8e3a007b0b62e6efa464fd814bd709283;hpb=d2ea75950816c9bb41f70a80a8c4339d3d0ff9a5;p=modules%2Fsuperv.git diff --git a/src/SUPERVGUI/SUPERVGUI_Notification.h b/src/SUPERVGUI/SUPERVGUI_Notification.h index 3c5f93a..82ef1eb 100644 --- a/src/SUPERVGUI/SUPERVGUI_Notification.h +++ b/src/SUPERVGUI/SUPERVGUI_Notification.h @@ -1,9 +1,29 @@ -// File : SUPERVGUI_Notification.h -// Created : 21 / 02 / 2002 -// Author : Francis KLOSS -// Project : SALOME -// Module : SUPERVGUI -// Copyright : CEA +// SUPERV SUPERVGUI : GUI for Supervisor component +// +// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// 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. +// +// 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// +// +// +// File : SUPERVGUI_Notification.h +// Author : Francis KLOSS +// Module : SUPERV #ifndef SUPERVGUI_Notification_H #define SUPERVGUI_Notification_H @@ -18,7 +38,7 @@ using namespace std; #include class SUPERVGUI_Main; -class SUPERVGUI_Node; +class SUPERVGUI_CanvasNode; class SUPERVGUI_NotifWidget; class SUPERVGUI_Notification: public QDialog @@ -66,11 +86,11 @@ private: class SUPERVGUI_NotifWidget : public QWidget { public: - SUPERVGUI_NotifWidget( QWidget* parent, SUPERVGUI_Node* n ); + SUPERVGUI_NotifWidget( QWidget* parent, SUPERVGUI_CanvasNode* n ); SUPERVGUI_NotifWidget( QWidget* parent, QString title ); ~SUPERVGUI_NotifWidget(); - SUPERVGUI_Node* getNode() { return myNode; } + SUPERVGUI_CanvasNode* getNode() { return myNode; } bool getWarning() { return myWarningCheck->isChecked(); } bool getStep() { return myStepCheck->isChecked(); } @@ -87,7 +107,7 @@ private: private: QString myTitle; - SUPERVGUI_Node* myNode; + SUPERVGUI_CanvasNode* myNode; QCheckBox* myWarningCheck; QCheckBox* myStepCheck; QCheckBox* myTraceCheck;