[497] | 1 | %'fill_GUI': fill a GUI with a set of parameters from a Matlab structure |
---|
[360] | 2 | % ----------------------------------------------------------------------- |
---|
[591] | 3 | % function errormsg=fill_GUI(Param,GUI_handle) |
---|
[497] | 4 | % OUPUT: |
---|
| 5 | % errormsg: error message, ='' by default |
---|
| 6 | % |
---|
| 7 | % INPUT: |
---|
| 8 | % Param: matlab structure containing the information to display in the GUI |
---|
| 9 | % handles: Matlab structure containing the handles of the GUI elements |
---|
| 10 | % |
---|
| 11 | % see also the reverse function read_GUI.m |
---|
| 12 | % |
---|
[591] | 13 | function errormsg=fill_GUI(Param,GUI_handle) |
---|
[360] | 14 | %------------------------------------------------------------------------ |
---|
| 15 | errormsg=''; |
---|
[598] | 16 | %handles=guidata(GUI_handle); |
---|
| 17 | children=get(GUI_handle,'children'); |
---|
[603] | 18 | handles=[]; |
---|
[598] | 19 | for ichild=1:numel(children) |
---|
| 20 | handles.(get(children(ichild),'tag'))=children(ichild); |
---|
| 21 | end |
---|
[591] | 22 | UserData=get(GUI_handle,'UserData'); |
---|
[461] | 23 | fields=fieldnames(Param);%list of fields in Param |
---|
[472] | 24 | % loop on the elements of the input structure Param |
---|
[360] | 25 | for ifield=1:numel(fields) |
---|
[500] | 26 | % case of a sub-structure --> fill a panel |
---|
| 27 | if isstruct(Param.(fields{ifield}))% case of a sub-structure |
---|
[360] | 28 | if isfield(handles,fields{ifield}) |
---|
[361] | 29 | set(handles.(fields{ifield}),'Visible','on') |
---|
[606] | 30 | % children=get(handles.(fields{ifield}),'children'); |
---|
| 31 | % for ichild=1:numel(children) |
---|
| 32 | % hchild.(get(children(ichild),'tag'))=children(ichild); |
---|
| 33 | % end |
---|
| 34 | % errormsg=fill_GUI(Param.(fields{ifield}),hchild);% apply the function to the substructure |
---|
| 35 | errormsg=fill_GUI(Param.(fields{ifield}),handles.(fields{ifield}));% apply the function to the substructure |
---|
| 36 | % if the input sub-structure fits with a tag name of the GUI and a |
---|
| 37 | % substructure of UserData |
---|
[591] | 38 | elseif isfield(UserData,fields{ifield})&& isfield(handles,fields{ifield})&&isfield(Param.(fields{ifield}),'Name') |
---|
| 39 | UserData.(fields{ifield})=Param.(fields{ifield}); |
---|
[606] | 40 | set(handles.(fields{ifield}),'String',Param.(fields{ifield}).Name) |
---|
[360] | 41 | end |
---|
[606] | 42 | % case of an element |
---|
[360] | 43 | else |
---|
[361] | 44 | hh=[]; |
---|
[497] | 45 | input_data=Param.(fields{ifield}); |
---|
[379] | 46 | check_done=0; |
---|
[361] | 47 | if isfield(handles,fields{ifield}) |
---|
[497] | 48 | hh=handles.(fields{ifield}); |
---|
[361] | 49 | if strcmp(get(hh,'Type'),'uitable') |
---|
[379] | 50 | set(hh,'Visible','on') |
---|
[427] | 51 | if ischar(input_data) |
---|
[460] | 52 | input_data={input_data};% transform string to a single cell if needed |
---|
[427] | 53 | end |
---|
[363] | 54 | set(hh,'Data',input_data) |
---|
[379] | 55 | check_done=1; |
---|
[360] | 56 | end |
---|
[606] | 57 | elseif isnumeric(input_data) |
---|
| 58 | if numel(input_data)>1 |
---|
[500] | 59 | %deals with array displayed in multiple boxes labeled by an index |
---|
| 60 | for ibox=1:numel(input_data) |
---|
| 61 | if isfield(handles,['num_' fields{ifield} '_' num2str(ibox)]) |
---|
| 62 | hh(ibox)=handles.(['num_' fields{ifield} '_' num2str(ibox)]); |
---|
| 63 | end |
---|
| 64 | end |
---|
| 65 | else % single box (usual case) |
---|
[606] | 66 | if isfield(handles,['num_' fields{ifield}]) |
---|
| 67 | hh=handles.(['num_' fields{ifield}]); |
---|
| 68 | end |
---|
[500] | 69 | end |
---|
[361] | 70 | end |
---|
[500] | 71 | for ibox=1:numel(hh) |
---|
[606] | 72 | if ~isempty(hh(ibox))&& ~check_done |
---|
| 73 | set(hh(ibox),'Visible','on') |
---|
| 74 | % input_data |
---|
[607] | 75 | if isfield(get(hh(ibox)),'Style') |
---|
[606] | 76 | switch get(hh(ibox),'Style') |
---|
| 77 | case {'checkbox','radiobutton','togglebutton'} |
---|
| 78 | if isnumeric(input_data) |
---|
| 79 | set(hh(ibox),'Value',input_data(ibox)) |
---|
| 80 | end |
---|
| 81 | case 'edit' |
---|
| 82 | input_string=''; |
---|
| 83 | if isnumeric(input_data) |
---|
| 84 | if numel(input_data)>0 |
---|
| 85 | input_string=num2str(input_data(ibox)); |
---|
| 86 | end |
---|
| 87 | else |
---|
| 88 | input_string=input_data; |
---|
| 89 | end |
---|
| 90 | set(hh(ibox),'String',input_string) |
---|
| 91 | case{'listbox','popupmenu'} |
---|
| 92 | if isnumeric(input_data) |
---|
| 93 | input_data=num2str(input_data); |
---|
| 94 | end |
---|
| 95 | menu=get(hh(ibox),'String'); |
---|
| 96 | if ischar(input_data) |
---|
| 97 | input_data={input_data}; |
---|
| 98 | end |
---|
| 99 | values=zeros(size(input_data)); |
---|
| 100 | for idata=1:numel(input_data) |
---|
| 101 | iline=find(strcmp(input_data{idata},menu)); |
---|
| 102 | if isempty(iline) |
---|
| 103 | values(idata)=1; |
---|
| 104 | menu=[input_data(idata);menu]; |
---|
| 105 | else |
---|
| 106 | values(idata)=iline(1); |
---|
| 107 | end |
---|
| 108 | end |
---|
| 109 | set(hh(ibox),'String',menu) |
---|
| 110 | set(hh(ibox),'Value',values) |
---|
[361] | 111 | end |
---|
[606] | 112 | end |
---|
[360] | 113 | end |
---|
| 114 | end |
---|
| 115 | end |
---|
| 116 | end |
---|
| 117 | |
---|