Salome HOME
merge from branch DEV tag mergeto_trunk_04apr08
[modules/yacs.git] / src / gui / YACSGui_PropertyPage.cxx
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
21 // #include <Python.h>
22 // #include <PythonNode.hxx>
23
24 // #include <SALOME_ResourcesManager.hxx>
25 // #include <SALOME_LifeCycleCORBA.hxx>
26
27 #include <YACSGui_InputPanel.h>
28 #include <YACSGui_Module.h>
29 // #include <YACSGui_PlusMinusGrp.h>
30 // #include <YACSGui_Table.h>
31 // #include <YACSGui_Graph.h>
32 // #include <YACSGui_Executor.h>
33 // #include <YACSGui_TreeView.h>
34 // #include <YACSGui_TreeViewItem.h>
35 // #include <YACSGui_LogViewer.h>
36
37 // #include <YACSPrs_ElementaryNode.h>
38
39 // #include <QxGraph_Canvas.h>
40
41 // #include <LightApp_Application.h>
42 // #include <CAM_Application.h>
43 // #include <SUIT_Session.h>
44 // #include <SUIT_Application.h>
45 // #include <SUIT_MessageBox.h>
46 // #include <LogWindow.h>
47
48 // #include <InPort.hxx>
49 // #include <OutPort.hxx>
50 // #include <InputPort.hxx>
51 // #include <OutputPort.hxx>
52 // #include <CalStreamPort.hxx>
53 // #include <ConditionInputPort.hxx>
54 // #include <ForLoop.hxx>
55 // #include <ForEachLoop.hxx>
56 // #include <WhileLoop.hxx>
57 // #include <Switch.hxx>
58 // #include <CORBAPorts.hxx>
59 // #include <PythonPorts.hxx>
60 // #include <XMLPorts.hxx>
61 // #include <InlineNode.hxx>
62 // #include <ServiceNode.hxx>
63 // #include <ServiceInlineNode.hxx>
64 // #include <CORBANode.hxx>
65 // #include <SalomePythonNode.hxx>
66 // #include <CppNode.hxx>
67 // #include <XMLNode.hxx>
68 // #include <Exception.hxx>
69 // #include <Catalog.hxx>
70 // #include <ComponentDefinition.hxx>
71 // #include <CORBAComponent.hxx>
72 // #include <CppComponent.hxx>
73 // #include <SalomeComponent.hxx>
74 // #include <SalomePythonComponent.hxx>
75 // #include <RuntimeSALOME.hxx>
76
77 // #include <qwindowsstyle.h>
78 // #include <qpushbutton.h>
79 // #include <qlayout.h>
80 // #include <qhbox.h>
81 // #include <qlabel.h>
82 // #include <qlineedit.h>
83 // #include <qbuttongroup.h>
84 // #include <qradiobutton.h>
85 // #include <qcombobox.h>
86 // #include <qtextedit.h>
87 // #include <qtoolbutton.h>
88 // #include <qspinbox.h>
89 // #include <qprogressbar.h>
90 // #include <qobjectlist.h>
91 // #include <qfiledialog.h>
92 // #include <qcheckbox.h>
93 #include <qframe.h>
94
95 // #include <sstream>
96
97 // #define SPACING 5
98 // #define MARGIN 5
99
100 using namespace YACS;
101 using namespace YACS::ENGINE;
102 using namespace YACS::HMI;
103 using namespace std;
104
105
106 /*
107   Class : YACSGui_PropertyPage_InputPage
108   Description : This class is used for parameters of input panel.
109                 All pages of input panel must be derived from it
110 */
111
112 YACSGui_PropertyPage::YACSGui_PropertyPage( QWidget* theParent, YACSGui_Module* theModule )
113   : QFrame( theParent ),
114     myModule(theModule),
115     myView(0)
116 {
117   setLineWidth(2);
118   setFrameStyle(QFrame::StyledPanel|QFrame::Raised);
119 }
120
121 YACSGui_PropertyPage::~YACSGui_PropertyPage()
122 {
123 }
124
125 void YACSGui_PropertyPage::onApply()
126 {
127 }
128