From 6fe6415db6957767e13079ea243b6b64b4a8e9f5 Mon Sep 17 00:00:00 2001
From: Jacques Grelet <jacques.grelet@ird.fr>
Date: Wed, 9 Jan 2008 09:38:48 +0000
Subject: [PATCH] modifie l'emplacement des uicontrol text pour l'affichage de
 la date-heure, position et temp-sal qui n'etait pas corrects sous linux

---
 tsgqc_GUI.m | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/tsgqc_GUI.m b/tsgqc_GUI.m
index 604b6dc..3279f89 100644
--- a/tsgqc_GUI.m
+++ b/tsgqc_GUI.m
@@ -232,7 +232,7 @@ uicontrol(...
   'Fontsize', 12, ...
   'Fontweight', 'bold', ...
   'HorizontalAlignment', 'left', ...
-  'Position',[.17, .95, .05, .03], ...
+  'Position',[.17, .95, .03, .03], ...
   'String', 'Date:');
 
 hInfoDateText = uicontrol(...
@@ -243,7 +243,7 @@ hInfoDateText = uicontrol(...
   'Units', 'normalized',...
   'HorizontalAlignment', 'left', ...
   'String', 'N/A', ...
-  'Position', [.20, .95, .09, .03]);
+  'Position', [.21, .95, .11, .03]);
 
 % Text area that displays the latitude
 % ------------------------------------
@@ -254,7 +254,7 @@ uicontrol(...
   'Fontsize', 12, ...
   'Fontweight', 'bold', ...
   'HorizontalAlignment', 'left', ...
-  'Position',[.30, .95, .04, .03], ...
+  'Position',[.35, .95, .05, .03], ...
   'String', 'Latitude:');
 
 hInfoLatText = uicontrol(...
@@ -265,7 +265,7 @@ hInfoLatText = uicontrol(...
   'Units', 'normalized',...
   'HorizontalAlignment', 'left', ...
   'String', 'N/A', ...
-  'Position', [.35, .95, .09, .03]);
+  'Position', [.41, .95, .07, .03]);
 
 % Text area that displays the longitude
 % -------------------------------------
@@ -276,7 +276,7 @@ uicontrol(...
   'Fontsize', 12, ...
   'Fontweight', 'bold', ...
   'HorizontalAlignment', 'left', ...
-  'Position',[.45, .95, .05, .03], ...
+  'Position',[.50, .95, .06, .03], ...
   'String', 'Longitude:');
 
 hInfoLongText = uicontrol(...
@@ -287,7 +287,7 @@ hInfoLongText = uicontrol(...
   'Units', 'normalized',...
   'HorizontalAlignment', 'left', ...
   'String', 'N/A', ...
-  'Position', [.51, .95, .09, .03]);
+  'Position', [.57, .95, .07, .03]);
 
 % Text area that display salinity and temperature
 % -----------------------------------------------
@@ -298,7 +298,7 @@ uicontrol(...
   'Fontsize', 12, ...
   'Fontweight', 'bold', ...
   'HorizontalAlignment', 'left', ...
-  'Position',[.6, .95, .03, .03], ...
+  'Position',[.65, .95, .03, .03], ...
   'String', 'SSPS:');
 
 hInfoSSPSText = uicontrol(...
@@ -309,7 +309,7 @@ hInfoSSPSText = uicontrol(...
   'Units', 'normalized',...
   'HorizontalAlignment', 'left', ...
   'String', 'N/A', ...
-  'Position', [.64, .95, .05, .03]);
+  'Position', [.69, .95, .05, .03]);
 
 uicontrol(...
   'Parent', hMainFig, ...
@@ -318,7 +318,7 @@ uicontrol(...
   'Fontsize', 12, ...
   'Fontweight', 'bold', ...
   'HorizontalAlignment', 'left', ...
-  'Position',[.7, .95, .03, .03], ...
+  'Position',[.75, .95, .03, .03], ...
   'String', 'SSJT:');
 
 hInfoSSJTText = uicontrol(...
@@ -329,7 +329,7 @@ hInfoSSJTText = uicontrol(...
   'Units', 'normalized',...
   'HorizontalAlignment', 'left', ...
   'String', 'N/A', ...
-  'Position', [.74, .95, .05, .03]);
+  'Position', [.79, .95, .05, .03]);
 
 uicontrol(...
   'Parent', hMainFig, ...
@@ -338,7 +338,7 @@ uicontrol(...
   'Fontsize', 12, ...
   'Fontweight', 'bold', ...
   'HorizontalAlignment', 'left', ...
-  'Position',[.8, .95, .03, .03], ...
+  'Position',[.85, .95, .03, .03], ...
   'String', 'SSTP:');
 
 hInfoSSTPText = uicontrol(...
@@ -349,7 +349,7 @@ hInfoSSTPText = uicontrol(...
   'Units', 'normalized',...
   'HorizontalAlignment', 'left', ...
   'String', 'N/A', ...
-  'Position', [.84, .95, .05, .03]);
+  'Position', [.89, .95, .05, .03]);
 
 %% Construct the plot axes
 % -----------------------
@@ -509,7 +509,7 @@ tsg_initialisation(hMainFig, hQcCmenu)
     % a unique structure : 'sample'
     % -----------------------------------------------------------
     %@ desactive le merge pour l'instant en attente d'une structure de
-    %données validee
+    %donn�es validee
     %@[sample] = tsg_mergesample( hMainFig );
 
     %@ Save the 'sample' struct. as an application data
@@ -796,7 +796,7 @@ tsg_initialisation(hMainFig, hQcCmenu)
         if x > tsg.DAYD(1) && x < tsg.DAYD(end)
           indCursor = find( tsg.DAYD > x);
           set( hInfoDateText, 'String',...
-            datestr(tsg.DAYD(indCursor(1)),'dd/mm/yyyy HH:MM'));
+            datestr(tsg.DAYD(indCursor(1)),'dd/mm/yyyy   HH:MM'));
           set( hInfoLatText,  'String', dd2dm(tsg.LATX(indCursor(1)),0));
           set( hInfoLongText, 'String', dd2dm(tsg.LONX(indCursor(1)),1));
           set( hInfoSSPSText, 'String', tsg.SSPS(indCursor(1)));
-- 
GitLab