]> Creatis software - crea.git/commitdiff
Feature #1711 CreaDevManager application implementation
authorunknown <gonzalez@EI-ED-345.creatis.insa-lyon.fr>
Tue, 16 Apr 2013 16:39:17 +0000 (18:39 +0200)
committerunknown <gonzalez@EI-ED-345.creatis.insa-lyon.fr>
Tue, 16 Apr 2013 16:39:17 +0000 (18:39 +0200)
Fix: Welcome buttons not showing on launch

13 files changed:
lib/creaDevManagerLib/wxCDMAppliDescriptionPanel.cpp
lib/creaDevManagerLib/wxCDMApplicationDescriptionPanel.cpp
lib/creaDevManagerLib/wxCDMBlackBoxDescriptionPanel.cpp
lib/creaDevManagerLib/wxCDMCMakeListsDescriptionPanel.cpp
lib/creaDevManagerLib/wxCDMFileDescriptionPanel.cpp
lib/creaDevManagerLib/wxCDMFolderDescriptionPanel.cpp
lib/creaDevManagerLib/wxCDMLibDescriptionPanel.cpp
lib/creaDevManagerLib/wxCDMLibraryDescriptionPanel.cpp
lib/creaDevManagerLib/wxCDMMainDescriptionPanel.cpp
lib/creaDevManagerLib/wxCDMPackageDescriptionPanel.cpp
lib/creaDevManagerLib/wxCDMPackageManagerPanel.cpp
lib/creaDevManagerLib/wxCDMProjectActionsPanel.cpp
lib/creaDevManagerLib/wxCDMProjectDescriptionPanel.cpp

index 710d1eefdc1bc344fcd192bcb89a75d7095ec16b..ac06179f96fee894b51d7ee69f93da8e5dc48aec 100644 (file)
@@ -80,13 +80,11 @@ bool wxCDMAppliDescriptionPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
-
+  this->appli = appli;
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-
-  this->appli = appli;
-  CreateControls();
   return TRUE;
 }
 
index 00cf8cc12719f170b0a451c6e67e345bbbe47473..dd48c2a3a4045bc5dfbc3c36bbb0c2fca2f18d40 100644 (file)
@@ -82,13 +82,11 @@ bool wxCDMApplicationDescriptionPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
-
+  this->application = application;
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-
-  this->application = application;
-  CreateControls();
   return TRUE;
 }
 
index c562ef74054392b4e6c70c6b3ca60baa5057d228..b694aee05b7c3b033917157b1424f2619e117b02 100644 (file)
@@ -78,14 +78,12 @@ bool wxCDMBlackBoxDescriptionPanel::Create(
     long style
 )
 {
+  this->blackBox = blackBox;
   wxPanel::Create(parent, id, pos, size, style);
-
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-
-  this->blackBox = blackBox;
-  CreateControls();
   return TRUE;
 }
 
index 40c2c336d65d0c0dbbe0576274bb88d61f0e6610..ea0d465b08fd266d7d2ce4e614e4f6c8b973fb47 100644 (file)
@@ -73,11 +73,11 @@ bool wxCDMCMakeListsDescriptionPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
+  this->cMakeLists = makefile;
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-  this->cMakeLists = makefile;
-  CreateControls();
   return TRUE;
 }
 
index 81768a97aaaded19ee78ee99074362f539c84998..e99603acf523f1ff414da26d0118e3ea62bb3549 100644 (file)
@@ -75,12 +75,11 @@ bool wxCDMFileDescriptionPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
+  this->file = file;
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-
-  this->file = file;
-  CreateControls();
   return TRUE;
 }
 
index 7f95533059e6dc0f3d4d49cb191b552851b85d8d..2f1c18175ae3b78444c0b813e58d41b3096a3ecc 100644 (file)
@@ -76,12 +76,11 @@ bool wxCDMFolderDescriptionPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
+  this->folder = folder;
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-
-  this->folder = folder;
-  CreateControls();
   return TRUE;
 }
 
index 039c45a37cfd78b55f68bf8ebb9ec2b964a87b4c..5a7147055ab8222ab49db8ee700b3b7c913c3d5f 100644 (file)
@@ -78,12 +78,11 @@ bool wxCDMLibDescriptionPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
+  this->lib = lib;
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-
-  this->lib = lib;
-  CreateControls();
   return TRUE;
 }
 
index 8c767219e27dc74cdffb5c651871b77d8b285d3a..42f58fef4567100c5368beff1dd3fe0c2630c265 100644 (file)
@@ -81,12 +81,11 @@ bool wxCDMLibraryDescriptionPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
+  this->library = library;
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-
-  this->library = library;
-  CreateControls();
   return TRUE;
 }
 
index 41daf68640a7484c386aba72f6255635b0e75b87..71d45083aef70b6c5d22ec329196faffd1954e7d 100644 (file)
@@ -74,11 +74,12 @@ bool wxCDMMainDescriptionPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
+  CreateControls();
   //to scroll
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
 
-  CreateControls();
+  
   return TRUE;
 }
 
index 5ac469193a929be3c6b55f486a63caffd56a7680..6858c551ff5381b80ff3164eebb880244c6e0146 100644 (file)
@@ -89,12 +89,11 @@ bool wxCDMPackageDescriptionPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
+  this->package = package;
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-
-  this->package = package;
-  CreateControls();
   return TRUE;
 }
 
index a706c175ca2c5021e182aaee68b75c6298a8bae8..c7d0d778821b4749822ea380943725594c4981ad 100644 (file)
@@ -80,12 +80,11 @@ bool wxCDMPackageManagerPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
+  this->project = project;
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-
-  this->project = project;
-  CreateControls();
   return TRUE;
 }
 
index 5b5510e77a9568c4a241d90952ee932a221652d1..35a98be2edae555c1206e95872204c6e0dca11b9 100755 (executable)
@@ -75,14 +75,12 @@ bool wxCDMProjectActionsPanel::Create(
 )
 {
   wxPanel::Create(parent,id,pos,size,style);
-  // this part makes the scrollbars show up
-  this->FitInside(); // ask the sizer about the needed size
-  this->SetScrollRate(5, 5);
-
   wxBoxSizer* sizer = new wxBoxSizer(wxHORIZONTAL);
   this->SetSizer(sizer);
-
   CreateControls();
+  // this part makes the scrollbars show up
+  this->FitInside(); // ask the sizer about the needed size
+  this->SetScrollRate(5, 5);
 
   return TRUE;
 }
index 503d51113b292c6e874a048b1971cca1e3894c0d..844d8cb1bf70dbec010dc2ec10f307a4b37e508b 100644 (file)
@@ -81,12 +81,11 @@ bool wxCDMProjectDescriptionPanel::Create(
 )
 {
   wxPanel::Create(parent, id, pos, size, style);
+  this->project = project;
+  CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size
   this->SetScrollRate(5, 5);
-
-  this->project = project;
-  CreateControls();
   return TRUE;
 }