]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
A patch by Nicolas GEIMER for the problem of Qt dialogs not appearing in GEOM (for...
authorjfa <jfa@opencascade.com>
Tue, 3 Feb 2009 15:46:25 +0000 (15:46 +0000)
committerjfa <jfa@opencascade.com>
Tue, 3 Feb 2009 15:46:25 +0000 (15:46 +0000)
33 files changed:
src/BasicGUI/BasicGUI_ArcDlg.cxx
src/BasicGUI/BasicGUI_CircleDlg.cxx
src/BasicGUI/BasicGUI_LineDlg.cxx
src/BasicGUI/BasicGUI_MarkerDlg.cxx
src/BasicGUI/BasicGUI_PlaneDlg.cxx
src/BasicGUI/BasicGUI_PointDlg.cxx
src/BasicGUI/BasicGUI_VectorDlg.cxx
src/BasicGUI/BasicGUI_WorkingPlaneDlg.cxx
src/BlocksGUI/BlocksGUI.cxx
src/BlocksGUI/BlocksGUI_BlockDlg.cxx
src/BlocksGUI/BlocksGUI_QuadFaceDlg.cxx
src/BlocksGUI/BlocksGUI_TrsfDlg.cxx
src/BuildGUI/BuildGUI.cxx
src/GenerationGUI/GenerationGUI_PrismDlg.cxx
src/GroupGUI/GroupGUI.cxx
src/MeasureGUI/MeasureGUI.cxx
src/OperationGUI/OperationGUI_ChamferDlg.cxx
src/OperationGUI/OperationGUI_FilletDlg.cxx
src/OperationGUI/OperationGUI_PartitionDlg.cxx
src/PrimitiveGUI/PrimitiveGUI_BoxDlg.cxx
src/PrimitiveGUI/PrimitiveGUI_ConeDlg.cxx
src/PrimitiveGUI/PrimitiveGUI_CylinderDlg.cxx
src/PrimitiveGUI/PrimitiveGUI_DiskDlg.cxx
src/PrimitiveGUI/PrimitiveGUI_FaceDlg.cxx
src/PrimitiveGUI/PrimitiveGUI_SphereDlg.cxx
src/PrimitiveGUI/PrimitiveGUI_TorusDlg.cxx
src/RepairGUI/RepairGUI_GlueDlg.cxx
src/TransformationGUI/TransformationGUI_MultiRotationDlg.cxx
src/TransformationGUI/TransformationGUI_MultiTranslationDlg.cxx
src/TransformationGUI/TransformationGUI_PositionDlg.cxx
src/TransformationGUI/TransformationGUI_RotationDlg.cxx
src/TransformationGUI/TransformationGUI_ScaleDlg.cxx
src/TransformationGUI/TransformationGUI_TranslationDlg.cxx

index b2f18c3cd53084d57c24c44823ac1b927e1fee30..7326a37e2a4578b78f7429f3cd3efeaefc9a2d3c 100644 (file)
@@ -683,7 +683,7 @@ void BasicGUI_ArcDlg::ConstructorsClicked( int constructorId )
 
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
 
   myEditCurrentArgument->setFocus();
   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
index 9cb015a9c947504c2b6d64eee45b90127fc82e0e..3c18582039c4cf5f87acce48ebf07e94aa21a660 100644 (file)
@@ -269,7 +269,7 @@ void BasicGUI_CircleDlg::ConstructorsClicked( int constructorId )
   
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
 
   myEditCurrentArgument->setFocus();
   globalSelection(); // close local contexts, if any
index 992eb6235ad259caa991b73d6b84126ed8917ce7..03159903b6e043f960c48a460d9ed916f304a068 100644 (file)
@@ -226,7 +226,7 @@ void BasicGUI_LineDlg::ConstructorsClicked( int constructorId )
 
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
 
   SelectionIntoArgument();
 }
index 9e9d46b64625150c7ed22b34990c4ab779718a5f..ecd49f54831710b55cbd895c92c97470c770e909 100644 (file)
@@ -301,7 +301,7 @@ void BasicGUI_MarkerDlg::ConstructorsClicked( int constructorId )
 
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
   
   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
           this, SLOT( onSelectionDone() ) );
index 6e9aaa1f50515afb89825c31550315723277f65f..8d5b14f37bdf17c11798a88ef6ba9f6bd7fa5512 100644 (file)
@@ -308,7 +308,7 @@ void BasicGUI_PlaneDlg::ConstructorsClicked( int constructorId )
   
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
 
   myEditCurrentArgument->setFocus();
   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
index b2475da6038ae26b2a9eaef234ba8076eeb13adc..9b2f525ac58cc383b30df860c32b9763828085e1 100644 (file)
@@ -380,7 +380,7 @@ void BasicGUI_PointDlg::ConstructorsClicked(int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
 
   SelectionIntoArgument();
 }
index d441ce89125b18615d98e307bd495a094a46f964..23a1a8492bf73ab79c6e4ad6330939ee18aebf55 100644 (file)
@@ -229,7 +229,7 @@ void BasicGUI_VectorDlg::ConstructorsClicked( int constructorId )
 
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
 
   displayPreview();
 }
index 92c989ba1c912a784e74e05d3728fd11ac9efee1..5fd3838c9f1fa26e8532835d78804de6e20899f6 100644 (file)
@@ -242,7 +242,7 @@ void BasicGUI_WorkingPlaneDlg::ConstructorsClicked( int constructorId )
 
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
 
   updateWPlane();
 }
index 89a20a56e4f8b387fa277edb8fa1fa1784b50b29..547510dc8a876e715f9f86e4ea5f5dcb56e7f09f 100644 (file)
@@ -78,7 +78,7 @@ bool BlocksGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
 
   if ( aDlg ) {
     aDlg->updateGeometry();
-    aDlg->resize( aDlg->minimumSize() );
+    aDlg->resize( aDlg->minimumSizeHint() );
     aDlg->show();
   }
 
index 332380518e93d178d9b08ca3cb4d35e9de79fb44..5ebb5f4ceb4074052a94508ab7262a5706553af3 100644 (file)
@@ -191,7 +191,7 @@ void BlocksGUI_BlockDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   // on dialog initialization we init the first field with a selected object (if any)
   SelectionIntoArgument();
index de564bcba833df315a7c9cb3570e7ff8dc17fe01..930af1c45ea49c74b1673e64a5225411ae6fbd8e 100644 (file)
@@ -178,7 +178,7 @@ void BlocksGUI_QuadFaceDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   // on dialog initialization we init the first field with a selected object (if any)
   SelectionIntoArgument();
index fc7a5f7206d9f9aaedf9eea5452fec3030a922c7..9e5e91a97b83ad142dc1b246f531ec9fc583e7fa 100644 (file)
@@ -184,7 +184,7 @@ void BlocksGUI_TrsfDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   // on dialog initialization we init the first field with a selected object (if any)
   SelectionIntoArgument();
index 4b6cdf52b4418aad0ddbe896da5ad1ac0ba19e4a..643cbf11af03422f56f94c78a93651122ae122f0 100644 (file)
@@ -79,7 +79,7 @@ bool BuildGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
   
   if ( aDlg ) {
     aDlg->updateGeometry();
-    aDlg->resize( aDlg->minimumSize() );
+    aDlg->resize( aDlg->minimumSizeHint() );
     aDlg->show();
   }
 
index 85cc51d315d52af0a89e7ea100068968becd48f5..e4ff74ff39ab4fb2475cf2a51a912da5ee61de0c 100644 (file)
@@ -276,7 +276,7 @@ void GenerationGUI_PrismDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     myInitial = false;
index cf6ef7b40c1e410fea8378816b8788974dbb92b2..89d84ebf2161500b249aafc4f17ff0faefe3aada 100644 (file)
@@ -113,7 +113,7 @@ bool GroupGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
 
   if ( aDlg ) {
     aDlg->updateGeometry();
-    aDlg->resize( aDlg->minimumSize() );
+    aDlg->resize( aDlg->minimumSizeHint() );
     aDlg->show();
   }
 
index 11f9c4945e6fcdce74a2cad0b42ea45b41b7ccb1..a240d7562abbcd72791a228a3490923c76cce137 100644 (file)
@@ -116,7 +116,7 @@ bool MeasureGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
   }
   if ( dlg ) {
     dlg->updateGeometry();
-    dlg->resize( dlg->minimumSize() );
+    dlg->resize( dlg->minimumSizeHint() );
     dlg->show();
   }
   return true;
index b75458ec9459d5db046bac02b1b333c98d964471..af89feddd4a931f2eaf9580910c50170708ef756 100644 (file)
@@ -358,7 +358,7 @@ void OperationGUI_ChamferDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 }
 
 //=================================================================================
index 4fd97b6beab9c6a6374cf1761a54adbab4cbc011..84a2f3134cdff391ba2d223c87b060e45811de0f 100644 (file)
@@ -296,7 +296,7 @@ void OperationGUI_FilletDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 }
 
 //=================================================================================
index fc1d24ad3c52788e96f7b53b9992e868855227ad..e52df271c4f2bf71e5cdbf5ff4c4ad22a1506ef1 100644 (file)
@@ -192,7 +192,7 @@ void OperationGUI_PartitionDlg::ConstructorsClicked( int constructorId )
 
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
 
   myEditCurrentArgument->setFocus();
   connect( myGeomGUI->getApp()->selectionMgr(), 
index aaf190676cbb34947f77900c16dcf47535fbbc82..ab47b76d39101dd0728d1667f4d7ce896713f1b0 100644 (file)
@@ -194,7 +194,7 @@ void PrimitiveGUI_BoxDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     // on dialog initialization we init the first field with a selected object (if any)
index 21afcbac513d3a20048dd4bb8e2628f8743fe9d7..5bbe434789fbe33daf34fc6c7acbb6ae9cc8ee07 100644 (file)
@@ -209,7 +209,7 @@ void PrimitiveGUI_ConeDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     // on dialog initialization we init the first field with a selected object (if any)
index e5d76a05b8328dfa68e217f3ec27c4cce8175557..b77bd11a36ee62b7b0373fb1d973e232e02efe79 100644 (file)
@@ -200,7 +200,7 @@ void PrimitiveGUI_CylinderDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     myInitial = false;
index b6131514c6c1db35d02e240a125292c24eaf45de..9344092c872b93cb65eea459d0f955270ae068d2 100755 (executable)
@@ -254,7 +254,7 @@ void PrimitiveGUI_DiskDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     myInitial = false;
index 27e362206d9de502efa2d6625422b8d801a48ed9..3f6d5fe6aa5c2c5b9f1bff44171d0bd418b8ae04 100755 (executable)
@@ -301,7 +301,7 @@ void PrimitiveGUI_FaceDlg::ConstructorsClicked( int constructorId )
 
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
   SelectionIntoArgument();
   //displayPreview();
 }
index 32192677b131590ff5716f4b5f9c47d9b8ae9319..6fc293005d19334c908758395155505f43bb890a 100644 (file)
@@ -191,7 +191,7 @@ void PrimitiveGUI_SphereDlg::ConstructorsClicked( int constructorId )
 
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
 
   displayPreview();
 }
index 7ca9f5d4021d035a8af8b0809947c948f600cb9e..a756fdf623340ec678f0037baf18f738883aab1f 100644 (file)
@@ -199,7 +199,7 @@ void PrimitiveGUI_TorusDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     myInitial = false;
index b1c64113170832b8d19359ebfd36d0ab3d40c367..3425fc433131600aab3db40ecf76b1ad0af2c362 100644 (file)
@@ -233,7 +233,7 @@ void RepairGUI_GlueDlg::ConstructorsClicked( int constructorId )
 
   qApp->processEvents();
   updateGeometry();
-  resize( minimumSize() );
+  resize( minimumSizeHint() );
 
   displayPreview();
   updateButtonState();
index 471fdd0fadb632c130ee423410509d284fac1119..80d028e25d36d829edc69fff1cca0fb6e71d9224 100644 (file)
@@ -246,7 +246,7 @@ void TransformationGUI_MultiRotationDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     myInitial = false;
index 6cd2525987e09a6163d53e56fb5279ee4090ec2d..e4c81518b93c8e3a4799f741adc95d19a15c71f0 100644 (file)
@@ -265,7 +265,7 @@ void TransformationGUI_MultiTranslationDlg::ConstructorsClicked (int constructor
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     myInitial = false;
index bbbd6b6be18bee9f9edf2c21039f25d24ad83785..e6cd6c213fe075e8acfa93052af0dfa037acfd80 100644 (file)
@@ -243,7 +243,7 @@ void TransformationGUI_PositionDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     myInitial = false;
index fda7909f47938f8b9fb66692540b9afbbb459599..c56fd9c9b935de0f116db7ae06fd9121793e570c 100644 (file)
@@ -204,7 +204,7 @@ void TransformationGUI_RotationDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     myInitial = false;
index c441f62041b3cb671ed704ba465390fc5e55f592..32daa0cb5799c1b738d50bc74fb94259111ad44c 100644 (file)
@@ -225,7 +225,7 @@ void TransformationGUI_ScaleDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     myInitial = false;
index 0ded760cbff913a0d96e3f22bdd970fbb61f6569..bdbd96a7c9bc2927809958b7cdbb9e64daf79830 100644 (file)
@@ -240,7 +240,7 @@ void TransformationGUI_TranslationDlg::ConstructorsClicked (int constructorId)
 
   qApp->processEvents();
   updateGeometry();
-  resize(minimumSize());
+  resize(minimumSizeHint());
 
   if (myInitial) {
     myInitial = false;