Salome HOME
Copyrights update
[modules/geom.git] / src / MeasureGUI / MeasureGUI_CheckShapeDlg.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //
23 //
24 //  File   : MeasureGUI_CheckShapeDlg.cxx
25 //  Author : Nicolas REJNERI
26 //  Module : GEOM
27 //  $Header$
28
29 #include "MeasureGUI_CheckShapeDlg.h"
30 #include "MeasureGUI_1Sel1TextView_QTD.h"
31
32 #include "utilities.h"
33 #include "SUIT_Session.h"
34 #include "SalomeApp_Tools.h"
35
36 #include <qtextedit.h>
37 #include <qlineedit.h>
38 #include <qlabel.h>
39 #include <qlayout.h>
40 #include <qpushbutton.h>
41 #include <qradiobutton.h>
42 #include <qbuttongroup.h>
43
44 #define TEXTEDIT_FONT_FAMILY "Courier"
45 #define TEXTEDIT_FONT_SIZE 11
46
47 //=================================================================================
48 // class    : MeasureGUI_CheckShapeDlg()
49 // purpose  : Constructs a MeasureGUI_CheckShapeDlg which is a child of 'parent', with the
50 //            name 'name' and widget flags set to 'f'.
51 //            The dialog will by default be modeless, unless you set 'modal' to
52 //            TRUE to construct a modal dialog.
53 //=================================================================================
54 MeasureGUI_CheckShapeDlg::MeasureGUI_CheckShapeDlg( GeometryGUI* GUI, QWidget* parent )
55 : MeasureGUI_Skeleton( GUI, parent, "MeasureGUI_CheckShapeDlg" )
56 {
57   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap(
58     "GEOM",tr( "ICON_DLG_CHECKSHAPE" ) ) );
59   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap(
60     "GEOM",tr( "ICON_SELECT" ) ) );
61
62   setCaption( tr( "GEOM_CHECK_TITLE" ) );
63
64   /***************************************************************/
65
66   GroupConstructors->setTitle( tr( "GEOM_CHECK_SHAPE" ) );
67   RadioButton1->setPixmap( image0 );
68
69   myGrp = new MeasureGUI_1Sel1TextView_QTD( this, "myGrp" );
70   myGrp->GroupBox1->setTitle( tr( "GEOM_CHECK_INFOS" ) );
71   myGrp->TextLabel1->setText( tr( "GEOM_OBJECT" ) );
72   myGrp->TextEdit1->setReadOnly( TRUE );
73   
74   QFont aFont( TEXTEDIT_FONT_FAMILY, TEXTEDIT_FONT_SIZE );
75   aFont.setStyleHint( QFont::TypeWriter, QFont::PreferAntialias );
76   myGrp->TextEdit1->setFont( aFont );
77   myGrp->PushButton1->setPixmap( image1 );
78   myGrp->LineEdit1->setReadOnly( true );
79
80   Layout1->addWidget( myGrp, 1, 0 );
81
82   /***************************************************************/
83
84   /* Initialisation */
85   Init();
86 }
87
88
89 //=================================================================================
90 // function : ~MeasureGUI_CheckShapeDlg()
91 // purpose  : Destroys the object and frees any allocated resources
92 //=================================================================================
93 MeasureGUI_CheckShapeDlg::~MeasureGUI_CheckShapeDlg()
94 {
95 }
96
97
98 //=================================================================================
99 // function : Init()
100 // purpose  :
101 //=================================================================================
102 void MeasureGUI_CheckShapeDlg::Init()
103 {
104   mySelBtn = myGrp->PushButton1;
105   mySelEdit = myGrp->LineEdit1;
106   MeasureGUI_Skeleton::Init();
107 }
108
109 //=================================================================================
110 // function : getParameters
111 // purpose  :
112 //=================================================================================
113 bool MeasureGUI_CheckShapeDlg::getParameters ( bool& theIsValid, QString& theMsg )
114 {
115   if ( myObj->_is_nil() )
116     return false;
117   else
118   {
119     try
120     {
121       char* aMsg;
122       theIsValid = GEOM::GEOM_IMeasureOperations::_narrow( getOperation() )->CheckShape( myObj, aMsg );
123       theMsg = aMsg;
124     }
125     catch( const SALOME::SALOME_Exception& e )
126     {
127       SalomeApp_Tools::QtCatchCorbaException( e );
128       return false;
129     }
130
131     return getOperation()->IsDone();
132   }
133 }
134
135
136 //=================================================================================
137 // function : processObject
138 // purpose  :
139 //=================================================================================
140 void MeasureGUI_CheckShapeDlg::processObject()
141 {
142   bool isShapeValid;
143   QString aMsg;
144   if ( !getParameters( isShapeValid, aMsg ) )
145   {
146     myGrp->TextEdit1->setText( "" );
147     return;
148   }
149
150   if (isShapeValid) {
151     myGrp->TextEdit1->setText("This Shape seems to be valid.");
152   } else {
153     QString aDescr ("This Shape is not valid.\n");
154     aDescr += aMsg;
155     myGrp->TextEdit1->setText(aDescr);
156 //    myGrp->TextEdit1->setText("This Shape is not valid.");
157   }
158 }