Salome HOME
IPAL21147 TC5.1.2: Wrong default dialog size V5_1_2rc2
authordmv <dmv@opencascade.com>
Tue, 9 Jun 2009 07:06:37 +0000 (07:06 +0000)
committerdmv <dmv@opencascade.com>
Tue, 9 Jun 2009 07:06:37 +0000 (07:06 +0000)
19 files changed:
src/BasicGUI/BasicGUI_CurveDlg.cxx
src/BasicGUI/BasicGUI_EllipseDlg.cxx
src/BooleanGUI/BooleanGUI_Dialog.cxx
src/EntityGUI/EntityGUI_SubShapeDlg.cxx
src/GenerationGUI/GenerationGUI_FillingDlg.cxx
src/GenerationGUI/GenerationGUI_PipeDlg.cxx
src/GenerationGUI/GenerationGUI_RevolDlg.cxx
src/OperationGUI/OperationGUI_ArchimedeDlg.cxx
src/OperationGUI/OperationGUI_GetShapesOnShapeDlg.cxx
src/RepairGUI/RepairGUI_ChangeOrientationDlg.cxx
src/RepairGUI/RepairGUI_CloseContourDlg.cxx
src/RepairGUI/RepairGUI_DivideEdgeDlg.cxx
src/RepairGUI/RepairGUI_RemoveExtraEdgesDlg.cxx
src/RepairGUI/RepairGUI_RemoveHolesDlg.cxx
src/RepairGUI/RepairGUI_RemoveIntWiresDlg.cxx
src/RepairGUI/RepairGUI_SewingDlg.cxx
src/RepairGUI/RepairGUI_SuppressFacesDlg.cxx
src/TransformationGUI/TransformationGUI_MirrorDlg.cxx
src/TransformationGUI/TransformationGUI_OffsetDlg.cxx

index 05a7baf26c76cc831bf7a27618bafffbd2f99275..0212cdb31b650ecc450414675bb56c4a00033f01 100644 (file)
@@ -129,6 +129,7 @@ void BasicGUI_CurveDlg::Init()
           SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) ) ;
  
   initName( tr( "GEOM_CURVE" ) );
+  resize(100,100);
   ConstructorsClicked( 0 );
 }
 
index dee60ede93b426581618fd752cd71deb68ff393d..3faa712772dc1bc97a343cb52f12f654235e2ac0 100644 (file)
@@ -157,6 +157,7 @@ void BasicGUI_EllipseDlg::Init()
 
   initName( tr( "GEOM_ELLIPSE" ) );
 
+  resize(100,100);
   displayPreview();
 }
 
index 85e1f19902c4a0b7eb08b2f5041040dd25bd91ad..7b1e3df5a01ac59c2125bb47baaf2d248364a406 100644 (file)
@@ -161,6 +161,7 @@ void BooleanGUI_Dialog::Init()
 
   myGroup->PushButton1->click();
   SelectionIntoArgument();
+  resize(100,100);
 }
 
 //=================================================================================
index af81a31bb94685883d964619e6bd0a8dd52a4ba0..45e27d2e712569473437c2188f22ef17f360e07b 100644 (file)
@@ -143,7 +143,7 @@ void EntityGUI_SubShapeDlg::Init()
           SIGNAL( currentSelectionChanged( )), this, SLOT( SelectionIntoArgument() ) );
 
   updateButtonState();
-
+  resize(100,100);
   SelectionIntoArgument();
 }
 
index 4f46e1962f51a7749f7c22d20d1945d8fdd0bc80..986f6286464fac7d012d786e737051834db3d140 100644 (file)
@@ -149,6 +149,7 @@ void GenerationGUI_FillingDlg::Init()
           SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
 
   initName( tr( "GEOM_FILLING" ) );
+  resize(100,100);
 }
 
 //=================================================================================
index e560176dc627c1b0a3387fa3ab47027fa2e5ca2c..78d7abfcef1781a149bfb74e4e29f2fd3dc65519 100644 (file)
@@ -135,6 +135,7 @@ void GenerationGUI_PipeDlg::Init()
   connect(GroupPoints->CheckButton1,   SIGNAL(toggled(bool)), this, SLOT(SelectionTypeButtonClicked()));
 
   initName(tr("GEOM_PIPE"));
+  resize(100,100);
 
   GroupPoints->TextLabel3->hide();
   GroupPoints->PushButton3->hide();
index 2a5d00b43dddffff259cd1558d33d11544a9fc58..99d8ba14e5464a8a836db3c1a8be9dcd027aa64a 100644 (file)
@@ -138,6 +138,7 @@ void GenerationGUI_RevolDlg::Init()
   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), this, SLOT(SetDoubleSpinBoxStep(double)));
 
   initName(tr("GEOM_REVOLUTION"));
+  resize(100,100);
 
   GroupPoints->PushButton1->click();
   SelectionIntoArgument();
index fdf1778e3e1ea4b340f01fa12eb3f5d029cf59cd..96840b012167322ae45df629ae42abf6055c7010 100644 (file)
@@ -130,6 +130,7 @@ void OperationGUI_ArchimedeDlg::Init()
   globalSelection( GEOM_ALLSHAPES );
 
   SelectionIntoArgument();
+  resize(100,100);
 }
 
 
index 778af7b67a5633e418c9b3eaf109f9282450ecaa..70e011f7a34b229e2baa656384dfd8e7219bbf07 100644 (file)
@@ -144,6 +144,7 @@ void OperationGUI_GetShapesOnShapeDlg::Init()
 
   GroupPoints->PushButton1->click();
   SelectionIntoArgument();
+  resize(100,100);
 }
 
 //=================================================================================
index 485127b1fb13a0a5572f23612fa99f2aa83d8df3..4d6e6aeefa8faf5beed47659d6af5b02691621ee 100644 (file)
@@ -116,6 +116,7 @@ void RepairGUI_ChangeOrientationDlg::Init()
           SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
 
   initName( tr( "CHANGE_ORIENTATION_NEW_OBJ_NAME" ) );
+  resize(100,100);
 }
 
 
index 85705502ff33ddc36d90ba4ddfcd53b01fb71716..a65cd69f7fc6c2268d98cebd94746269e9d938e6 100644 (file)
@@ -133,6 +133,7 @@ void RepairGUI_CloseContourDlg::Init()
 
   GroupPoints->PushButton1->click();
   SelectionIntoArgument();
+  resize(100,100);
 }
 
 //=================================================================================
index fa5bfd0a124d410f445d2346eaed0748aeb1feac..2f3d7a58235d6d2f2fbcc507bc84d71d1a75df57 100644 (file)
@@ -144,6 +144,7 @@ void RepairGUI_DivideEdgeDlg::Init()
           SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
 
   initName( tr( "DEVIDE_EDGE_NEW_OBJECT_NAME" ) );
+  resize(100,100);
 }
 
 //=================================================================================
index 8d7be6e729405d9fc87bd034acb5e642594161d3..25fceb12f45c0b1083e07aec07312ca2121a74b3 100644 (file)
@@ -121,6 +121,7 @@ void RepairGUI_RemoveExtraEdgesDlg::Init()
           this, SLOT( SelectionIntoArgument() ) );
 
   initName( tr( "REMOVE_EXTRA_EDGES_NEW_OBJ_NAME" ) );
+  resize(100,100);
 }
 
 
index 3ef74ca4a92685d6d8956f4c7c39c9b2463648c3..cc90a25cd9a53a55177ac4dfe22a3acd28ed0a8c 100644 (file)
@@ -134,6 +134,7 @@ void RepairGUI_RemoveHolesDlg::Init()
 
   GroupPoints->PushButton1->click();
   SelectionIntoArgument();
+  resize(100,100);
 }
 
 //=================================================================================
index 8079b166d4e3c0fd2a82df72c20a4563c8d6c499..90b89b872a52c4ce6a12f21a080a1c319ff770fa 100644 (file)
@@ -122,6 +122,7 @@ void RepairGUI_RemoveIntWiresDlg::Init()
 
   GroupPoints->PushButton1->click();
   SelectionIntoArgument();
+  resize(100,100);
 }
 
 //=================================================================================
index a5d6465d92d050570f6e8d71b940f16211d66b58..a709997e5041b86385b449eab82aa7cfe1be27c8 100644 (file)
@@ -134,6 +134,7 @@ void RepairGUI_SewingDlg::Init()
   connect( myFreeBoundBtn, SIGNAL( clicked() ), this, SLOT( onDetect() ) );
 
   initName( tr( "SEWING_NEW_OBJ_NAME" ) );
+  resize(100,100);
 }
 
 
index 7daaab8e1e1407a4c16ef01209d3940691e4be91..6149e963fa2729cb7ab42b3dbd60249c904d3d26 100644 (file)
@@ -118,6 +118,7 @@ void RepairGUI_SuppressFacesDlg::Init()
           SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
 
   initName( tr( "SUPRESS_FACE_NEW_OBJ_NAME" ) );
+  resize(100,100);
 }
 
 
index 4e3abf68326a323175100e08f7e5b42384549fe2..772755da5326b7660fb94e879ad762bb2a89afc8 100644 (file)
@@ -139,6 +139,7 @@ void TransformationGUI_MirrorDlg::Init()
   initName(tr("GEOM_MIRROR"));
 
   ConstructorsClicked(0);
+  resize(0,0);
 }
 
 //=================================================================================
index f548ca48e4a7ee33eb75987aee9092953c677573..df5a0dd1e1fb5441ed7fb265ee1ace7c925e0022 100644 (file)
@@ -128,6 +128,7 @@ void TransformationGUI_OffsetDlg::Init()
   initName( tr( "GEOM_OFFSET" ) );
 
   globalSelection( GEOM_ALLSHAPES );
+  resize(100,100);
 }