Salome HOME
Update copyright information
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI_BrowseNodeDlg.h
index 9575f2ac4d7e1b94b220125cd18f148002ee895f..bf432cfd29ccb82f020ac8d825abb2171688672b 100644 (file)
@@ -1,22 +1,34 @@
-//  SUPERV SUPERVGUI : GUI for Supervisor component
+//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+//  Copyright (C) 2003-2007  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.
 //
-//  Copyright (C) 2003  CEA/DEN, EDF R&D
+//  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
 //
+//  SUPERV SUPERVGUI : GUI for Supervisor component
 //  File   : SUPERVGUI_BrowseNodeDlg.h
 //  Author : Vitaly SMETANNIKOV
 //  Module : SUPERV
-
+//
 #ifndef SUPERVGUI_BrowseNodeDlg_H
 #define SUPERVGUI_BrowseNodeDlg_H
 
 #include <qdialog.h>
 #include "SUPERVGUI_Def.h"
-#include "SUPERVGUI_Port.h"
-#include "SALOME_Selection.h"
-
-class SUPERVGUI_Node;
 
 /** 
  * Class for ports values management (for internal using)
@@ -33,8 +45,9 @@ public:
 
   bool isEditable () { return myIsEditable; }
 
-  void setData( const QString& data ) { myValue->setText( data ); myValue->home( false ); }
-  void updateGUI()   { myValue->setText( myPort->ToString() ); }
+  QString getData() const { return myValue->text(); } // mkr : PAL11406
+  void    setData( const QString& data ) { myValue->setText( data ); myValue->home( false ); }
+  void    updateGUI()   { myValue->setText( myPort->ToString() ); }
 
   bool setNewValue();
   
@@ -52,12 +65,14 @@ public:
 /**
  * Browse Node Dialog box
  */
+class SUPERVGUI_CanvasNode;
+
 class SUPERVGUI_BrowseNodeDlg: public QDialog {
   
   Q_OBJECT
 
 public:
-  SUPERVGUI_BrowseNodeDlg( SUPERVGUI_Node* theNode );
+  SUPERVGUI_BrowseNodeDlg( SUPERVGUI_CanvasNode* theNode );
   virtual ~SUPERVGUI_BrowseNodeDlg();
 
   void setValues();
@@ -72,23 +87,25 @@ protected:
   void showEvent( QShowEvent* theEvent );
 
 private:
-  SUPERVGUI_Node*               myNode;
+  void init();
+
+  SUPERVGUI_CanvasNode*         myNodeCanvas;
+  
   bool                          myIsEditable;
   QPtrList<SUPERVGUI_PortField> myPortsList;
   SUPERVGUI_PortField*          myActiveField;
-  SALOME_Selection*             mySelection;
 };
 
 /**
  * Get Value dialog box
  */
+class SUPERVGUI_CanvasPort;
+
 class SUPERVGUI_GetValueDlg: public QDialog {
   Q_OBJECT
 
 public:
-//  SUPERVGUI_GetValueDlg( SUPERVGUI_Port thePort );
-  SUPERVGUI_GetValueDlg( SUPERVGUI_PortIn* thePort );
-  SUPERVGUI_GetValueDlg( SUPERVGUI_PortInESNode* thePort );
+  SUPERVGUI_GetValueDlg( SUPERVGUI_CanvasPort* thePort );
   ~SUPERVGUI_GetValueDlg();
 
 private slots:
@@ -97,12 +114,57 @@ private slots:
   void onSelectionChanged();
   
 private:
+  void init();
+
   QPushButton*         myOKBtn;
   QPushButton*         myCancelBtn;    
   SUPERVGUI_PortField* myField;
-  SUPERVGUI_PortIn*    myPort;
-  SUPERVGUI_PortInESNode*    myPortESNode;  //last correction
-  SALOME_Selection*    mySelection;
+
+  SUPERVGUI_CanvasPort*      myPortCanvas;
+
+};
+
+
+/**
+ * Stream Port Parameter dialog box
+ */
+class SUPERVGUI_CanvasStreamPortIn;
+class SUPERVGUI_StreamInDlg: public QDialog
+{
+  Q_OBJECT
+public:
+  SUPERVGUI_StreamInDlg(SUPERVGUI_CanvasStreamPortIn* thePort);
+  virtual ~SUPERVGUI_StreamInDlg() {};
+
+protected slots:
+  void accept();
+
+private:
+  void init();
+  void setData(); 
+
+  SUPERVGUI_CanvasStreamPortIn* myPortCanvas;
+  QComboBox* mySchemaCombo;
+  QComboBox* myInterCombo;
+  QComboBox* myExterCombo;
+};
+
+class SUPERVGUI_CanvasStreamPortOut;
+class SUPERVGUI_StreamOutDlg: public QDialog
+{
+  Q_OBJECT
+public:
+  SUPERVGUI_StreamOutDlg(SUPERVGUI_CanvasStreamPortOut* thePort);
+  virtual ~SUPERVGUI_StreamOutDlg() {};
+
+protected slots:
+  void accept();
+
+private:
+  void init();
+
+  SUPERVGUI_CanvasStreamPortOut* myPortCanvas;
+  QLineEdit* myValEdit;
 };
 
 #endif