]> SALOME platform Git repositories - modules/visu.git/blob - src/VISUGUI/VisuGUI_EditContainerDlg.h
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/visu.git] / src / VISUGUI / VisuGUI_EditContainerDlg.h
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : VisuGUI_EditContainerDlg.h
21 //  Author : VSV
22 //  Module : VISU
23
24 #ifndef VISUGUI_EDITCONTAINER_H
25 #define VISUGUI_EDITCONTAINER_H
26
27 #include <qdialog.h>
28 #include <qlistview.h>
29 #include <qvaluevector.h>
30 #include <qtoolbutton.h>
31
32 #include "SALOMEDSClient_SObject.hxx"
33
34 class VisuGUI;
35
36 namespace VISU {
37   class Container_i;
38 }
39
40
41 struct CurveStruct {
42   QString TableName;
43   QString CurveName;
44   QString CurveEntry;
45 };
46
47
48 class VisuGUI_EditContainerDlg: public QDialog
49 {
50   Q_OBJECT;
51
52  public:
53   VisuGUI_EditContainerDlg (VisuGUI* theModule, bool theIsModal = true);
54   ~VisuGUI_EditContainerDlg() {};
55
56   void initFromPrsObject (VISU::Container_i* theContainer);
57   void storeToPrsObject  (VISU::Container_i* theContainer);
58   
59  private:
60   void keyPressEvent( QKeyEvent* e );
61
62  private slots:
63   void onLeftClicked();
64   void onRightClicked();
65   void onLeftSelected();
66   void onRightSelected();
67   void onHelp();
68
69  private:
70   QString getSObjectName (_PTR(SObject) theSObject);
71
72   QListView*   myStudyLst;
73   QListView*   myContainerLst;
74   QToolButton* myLeftBtn;
75   QToolButton* myRightBtn;
76
77   VisuGUI* myVisuGUI;
78 };
79
80 #endif // VISUGUI_EDITCONTAINER_H