]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_PriorityWidget.cxx
Salome HOME
First implementation of automatic mode of regions creation in the calculation case...
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_PriorityWidget.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "HYDROGUI_PriorityWidget.h"
24
25 #include <QLayout>
26 #include <QTableView>
27 #include <QPushButton>
28
29
30 /**
31   Constructor.
32   @param theParent the parent widget
33 */
34 HYDROGUI_PriorityWidget::HYDROGUI_PriorityWidget( QWidget* theParent )
35 : QWidget( theParent )
36 {
37   // Main layout
38   QVBoxLayout* aMainLayout = new QVBoxLayout( this );
39   aMainLayout->setMargin( 0 );
40   aMainLayout->setSpacing( 5 );
41
42   // Buttons
43   myAdd = new QPushButton( tr( "ADD" ) );
44   myRemove = new QPushButton( tr( "REMOVE" ) );
45
46   // Table view
47   myTable = new QTableView( this );
48
49   // Layout
50   // buttons
51   QHBoxLayout* aButtonsLayout = new QHBoxLayout();
52   aButtonsLayout->addWidget( myAdd );
53   aButtonsLayout->addWidget( myRemove );
54   aButtonsLayout->addStretch( 1 );
55
56   // main
57   aMainLayout->addLayout( aButtonsLayout );
58   aMainLayout->addWidget( myTable );
59   
60   // Connections
61   connect( myAdd, SIGNAL( clicked() ), this, SLOT( onAdd() ) );
62   connect( myRemove, SIGNAL( clicked() ), this, SLOT( onRemove() ) );
63 }
64
65 /**
66   Destructor.
67 */
68 HYDROGUI_PriorityWidget::~HYDROGUI_PriorityWidget()
69 {
70 }
71
72 /**
73   Adds the new rule.
74 */
75 void HYDROGUI_PriorityWidget::onAddRule()
76 {
77 }
78
79 /**
80   Removes the selected rule.
81 */
82 void HYDROGUI_PriorityWidget::onRemoveRule()
83 {
84 }