Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
function [colParaNo, error] = lbvParameterChoice( header )
%
%function [colParaNo, error] = lbvParameterChoice( header )
%
% Display the parameters present in the header
% Build a GUI form to choose the parameters
%
% Input
% -----
% header .......... Header of the labview type file
%
% Output
% ------
% colParaNo .......... Column/line of the chosen parameter
% error .............. 1: OK ; -1 : an error occured
% Initialisation
% --------------
error = -1;
colParaNo = [];
nHeader = length( header );
indSelectedHeader = zeros(nHeader,1);
% Current and minimum FontSize
% ----------------------------
fontsize = 11;
minFontsize = 5;
% Change default units to centimeters
% -----------------------------------
oldUnits = get(0, 'units' );
set(0, 'units', 'centimeters');
% Get the screen dimension in centimeters
% ---------------------------------------
screenSize = get(0, 'screensize' );
% Pushbutton dimension in cm
% ---------------------------
pbHeight = 0.8;
pbWidth = 2.5;
nbPushbutton = 2;
% Set the left and bottom limit of the GUI
% ----------------------------------------
XBorder = .5;
YBorder = 1;
% Pre-selected parameter
% ----------------------
selectedPara = { 'date';'time';'temp';'sal';'cond';'raw';'lat';'lon' };
nSelectedPara = length( selectedPara );
% Get the order number of pre-selected parameter
% ----------------------------------------------
for i = 1:nSelectedPara
x = strfind( header, char(selectedPara(i)) );
% Look for the first not-empty cell
% ---------------------------------
for j = 1:nHeader
if ~isempty(x{j})
indSelectedHeader(j) = 1;
break;
end
end
end
% Compute the size of the GUI depending on the number of UIcontrol
% If it does not fit into the PC screen, change the FontSize
% -------------------------------------------------------------------
figWidth = 2*screenSize(3);
while figWidth > screenSize(3) && fontsize > minFontsize
% Determine the max size of the UIcontrol
% ----------------------------------------
hf = figure('Visible', 'off', 'Position', screenSize);
for ipar = nHeader : -1 : 1
h = uicontrol( 'Parent', hf, 'Style', 'checkbox', 'String', header(ipar), ...
'Fontsize', fontsize, 'Units', 'centimeters', 'visible', 'off');
% Get the dimension of the string in the Uicontrol
% ------------------------------------------------
extent = get(h, 'extent');
cbWidth(ipar) = extent(3);
cbHeight(ipar) = extent(4);
delete( h )
end
delete( hf )
% Checkboxes dimension - + 0.5 : size of the checkbox
% ---------------------------------------------------
cbWidth = max(cbWidth) + .5;
cbHeight = max(cbHeight);
cbYinterval = .1;
% Compute figure height using the number of UIcontrol +
% the height of some pushbutton + the border height
% -----------------------------------------------------
nbCol = 0;
figHeight = 2*screenSize(4);
while figHeight > screenSize(4)
nbCol = nbCol + 1;
nbLine = floor( nHeader / nbCol );
figHeight = (cbYinterval + pbHeight) + ...
cbHeight*nbLine + cbYinterval*(nbLine+1) + YBorder*2;
end
% Compute figure height using the number of UIcontrol +
% the height of some pushbutton
% ---------------------------------------------------
figHeight = (cbYinterval + pbHeight) + ...
cbHeight*nbLine + cbYinterval*(nbLine+1);
% Compute figure width using the number of UIcontrol +
% border width
% ---------------------------------------------------
figWidth = cbWidth * nbCol + 2*XBorder;
fontsize = fontsize -1;
end
% Compute figure width using the number of UIcontrol
% --------------------------------------------------
figWidth = cbWidth * nbCol;
figWidth = max( figWidth, nbPushbutton*pbWidth);
% Center the GUI
% --------------
XBorder = (screenSize(3) - figWidth)/2;
YBorder = (screenSize(4) - figHeight)/2;
% header Uicontrols in a new figure
% ---------------------------------
hParamFig = figure(...
'Name', 'Parameters', ...
'NumberTitle', 'off', ...
'Resize', 'off', ...
'Menubar','none', 'Toolbar', 'none', ...
'Tag', 'TAG_LBV_CHOIX', ...
'Visible','on',...
'HandleVisibility', 'callback',...
'Units', 'centimeters',...
'Position',[XBorder, YBorder, figWidth, figHeight], ...
'Color', get(0, 'DefaultUIControlBackgroundColor'));
% 'WindowStyle', 'modal', ...
% Iterate from each element
% -------------------------
ipar = 1;
x_left = .05;
for i = 1 : nbCol
% Set the upper UIcontrol first
% -----------------------------
y_bottom = (pbHeight + cbYinterval) + ...
cbHeight*(nbLine-1) + cbYinterval*(nbLine);
for j = 1 : nbLine
if ipar > nHeader
break;
end
% display dynamically uicontrol
% -----------------------------
ui(ipar) = uicontrol(...
'Parent', hParamFig, ...
'Style', 'checkbox', ...
'String', header(ipar), ...
'Fontsize', fontsize, ...
'Value', indSelectedHeader(ipar), ...
'Tag', ['TAG_CHECK_BOX_' num2str(ipar)], ...
'HandleVisibility', 'on',...
'Units', 'centimeters', ...
'Position', [x_left y_bottom cbWidth cbHeight ]);
y_bottom = y_bottom - cbHeight - cbYinterval;
ipar = ipar + 1;
end
x_left = x_left + cbWidth;
end
% CONTINUE PUSH BUTTON
% --------------------
uicontrol( ...
'Parent', hParamFig, ...
'Style','pushbutton',...
'Fontsize', fontsize,...
'String','Continue',...
'Interruptible','off',...
'BusyAction','cancel',...
'Tag','PUSH_BUTTON',...
'Units', 'centimeters', ...
'Position',[.05, cbYinterval, pbWidth, pbHeight],...
'Callback', @continueCallback);
% CANCEL PUSH BUTTON
% ------------------
uicontrol( ...
'Parent', hParamFig, ...
'Style','pushbutton',...
'Fontsize', fontsize,...
'String','Cancel',...
'Interruptible','off',...
'BusyAction','cancel',...
'Tag','PUSH_BUTTON',...
'Units', 'centimeters', ...
'Position',[.05+pbWidth, cbYinterval, pbWidth, pbHeight],...
'Callback', @cancelCallback);
set(0, 'units', oldUnits);
% stop execution until push-button Continue was press
% and hParamFig is deleted
% ---------------------------------------------------
uiwait(hParamFig);
%% Nested callback
% -----------------------------------------------------------------------
% Continue action, get uicontrol fields and populate tsg structure
% -----------------------------------------------------------------------
function continueCallback(obj, event)
% Everything's ok
% ---------------
error = 1;
% Get the values of the checkboxes
% --------------------------------
for i = 1 : nHeader
indSelectedHeader(i) = get( ui(i), 'value');
end
for i = 1 : nSelectedPara
x = strfind( header(indSelectedHeader == 1), char(selectedPara(i)) );
% Look for the first not-empty cell
% ---------------------------------
n = 0;
for j = 1:length(x)
if ~isempty(x{j})
n = n + 1;
end
end
switch n
case 0
msgbox( ['Choose a ' char(selectedPara(i))], 'modal' );
error = -1;
break;
case 1
continue
otherwise
msgbox( ['Choose only ONE ' char(selectedPara(i))], 'modal' );
error = -1;
break;
end
end
% If everything'ok. Close the GUI
% -------------------------------
if error == 1
% Return the column/line number of the parameter
% -----------------------------------------
colParaNo = find( indSelectedHeader == 1 );
% close windows (replace call to uiresume(hParamFig))
% ----------------------------------------------------
close(hParamFig);
% flushes the event queue and updates the figure window
% -----------------------------------------------------
drawnow;
% return
end
end
% -----------------------------------------------------------------------
% Cancel button, no action
% -----------------------------------------------------------------------
function cancelCallback(obj, event)
% return error code (no change)
% -----------------------------
error = -1;
% close windows
% -------------
close(hParamFig);
% flushes the event queue and updates the figure window
% -----------------------------------------------------
drawnow;
% return
end
end