source: trunk/src/mouse_down.m @ 713

Last change on this file since 713 was 713, checked in by sommeria, 10 years ago

improving figure extracting and keyboard callback

File size: 26.8 KB
Line 
1%'mouse_down': function activated when the mouse button is pressed on a figure (callback for 'WindowButtonDownFcn'
2%--------------------------------------------------------------
3% xy=mouse_down(hObject,eventdata)
4% activated by the command:
5% set(hObject,'WindowButtonDownFcn',{'mouse_down'}),
6% where hObject is the handle of the figure
7%
8%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
9%  Copyright Joel Sommeria, 2008, LEGI / CNRS-UJF-INPG, sommeria@coriolis-legi.org.
10%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
11%     This file is part of the toolbox UVMAT.
12%
13%     UVMAT is free software; you can redistribute it and/or modify
14%     it under the terms of the GNU General Public License as published by
15%     the Free Software Foundation; either version 2 of the License, or
16%     (at your option) any later version.
17%
18%     UVMAT is distributed in the hope that it will be useful,
19%     but WITHOUT ANY WARRANTY; without even the implied warranty of
20%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21%     GNU General Public License (file UVMAT/COPYING.txt) for more details.
22%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
23
24function xy=mouse_down(hObject,eventdata)
25
26%% look for parameters set by the current figure (handle=input parameter hObject)
27AxeData=[];%default data stored on the current axes
28FigData=get(hObject,'UserData'); %default data stored on the current object
29if ishandle(FigData)% case of a zoom plot, the handle of the parent rectangle is stored in UserData, its parent is the plotting axes of the rectangle
30    hCurrentGUI=get(get(FigData,'parent'),'parent');%handle of the current GUI: zoom plot
31else
32    hCurrentGUI=hObject; % handle of the current GUI: usual plot
33end
34hhCurrentGUI=guidata(hCurrentGUI);% tags of the children of the current GUI
35CheckZoom=0;
36if isfield(hhCurrentGUI,'CheckZoom') && get(hhCurrentGUI.CheckZoom,'Value');%test for zoom action, first priority
37    CheckZoom=1;
38end
39test_piv=isfield(FigData,'CivHandle');
40set(hCurrentGUI,'Units','pixels')
41GUI_pos=get(hCurrentGUI,'Position');%position of the GUI series on the screen (in pixels), used to position message boxes
42set(hCurrentGUI,'Units','normalized')% back to current unit for fig position
43
44%% determine the currently selected items
45hcurrentobject=gco;% current object handle (selected by the mouse)
46CurrentGUI_tag=get(hCurrentGUI,'Tag');
47obj_tag=get(gco,'Tag');%tag of the currently selected object
48xy=[];%default
49xy_fig=get(hObject,'CurrentPoint');% current point of the current figure (gcbo)
50haxes=[];
51
52%% look for parameters set by the GUI uvmat
53test_ruler=0;
54test_edit=0;
55test_create=0;
56test_edit_vect=0;
57huvmat=findobj(allchild(0),'tag','uvmat');%find the uvmat interface handle which controls the option of  mouse action
58if ~isempty(huvmat)
59    hhuvmat=guidata(huvmat);%handles of elements in uvmat
60    UvData=get(huvmat,'UserData');
61    test_ruler=isequal(get(hhuvmat.MenuRuler,'checked'),'on');%test for ruler  action, second priority;
62    test_edit=get(hhuvmat.CheckEditObject,'Value');%&& (isequal(obj_tag,'proj_object')||isequal(obj_tag,'DeformPoint'));%test for object editing, third priority
63    hset_object=findobj(allchild(0),'Name','set_object');
64    if ~isempty(hset_object)
65        hPLOT=findobj(hset_object,'tag','REFRESH');
66        test_create=strcmp(get(hPLOT,'enable'),'on') &&~get(hhuvmat.CheckEditObject,'Value');% create new object if set_object is in mode enable and uvmat not in mode 'EditObject'
67    end
68    test_edit_vect=get(hhuvmat.edit_vect,'Value') && ~test_create && ~(isequal(obj_tag,'proj_object')||isequal(obj_tag,'DeformPoint')) ;%test for vector editing,  priority 4
69    test_cal=isequal(get(hhuvmat.MenuCalib,'checked'),'on');% test for calibration
70    if test_cal% test for calibration popints,  priority 6
71        h_calib=findobj(allchild(0),'tag','geometry_calib');
72        if isempty(h_calib)
73            test_cal=0;
74            set(hhuvmat.MenuCalib,'checked','off');% test for calibration off
75        else
76            hh_calib=guidata(h_calib);
77            test_cal=get(hh_calib.CheckEnableMouse,'Value');
78        end
79    end
80end
81
82%% loop on all the objects in the current figure (selected by the last mouse click)
83hchildren=get(hObject,'Children');%handles of all objects in the current figure
84check_visible=strcmp(get(hchildren,'Visible'),'on')& ~strcmp(get(hchildren,'Type'),'uimenu');% if visible='on', =0 otherwise
85hchildren=hchildren(check_visible); %keep only the visible children
86set(hchildren,'Units','normalized');
87PosChildren=get(hchildren,'Position');% set of object positions
88if iscell(PosChildren)% only one child
89    PosLength=cellfun('length',PosChildren);% set of vector lengths for object positions
90    hchildren=hchildren(PosLength==4);% keep only objects with position defined by a 4 element vector
91    PosChildren=cell2mat(PosChildren(PosLength==4));% convert cells to matrix of positions
92end
93if size(PosChildren,2)~=4
94    return
95end
96xy_fig_mat=ones(size(PosChildren,1),1)*xy_fig;% mouse position set to a matrix
97check_pos=xy_fig_mat >= PosChildren(:,1:2) & xy_fig_mat <= PosChildren(:,1:2)+PosChildren(:,3:4);% compare object to mouse position
98ind_object=find(check_pos(:,1) & check_pos(:,2),1);% select the index of the (first) object under the mouse
99hchild=hchildren(ind_object);% corresponding object handle
100htype='';
101if ~isempty(hchild)
102    htype=get(hchild,'Type');%type of object child of the current figure
103    switch htype
104        %if the mouse is over an axis, look at the data
105        case 'axes'
106            haxes=hchild;
107            xy=get(hchild,'CurrentPoint');%xy(1,1),xy(1,2): current x,y positions in axes coordinates
108            AxeData=get(hchild,'UserData');% data attached to the axis
109            AxeData.Enable='on';% unable current axes for mouse up action
110            AxeData.CurrentOrigin=xy(1,1:2);% The current point set by the mouse becomes the current origin
111           
112            if test_edit_vect
113                ivec=[];
114                FigData=get(hCurrentGUI,'UserData');
115                tagaxes=get(hchild,'tag');
116                if isfield(FigData,tagaxes)
117                    Field=FigData.(tagaxes);
118                    [CellInfo,NbDim,errormsg]=find_field_cells(Field);%analyse the physical fields contained in Field
119                    if isempty(errormsg)
120                    for icell=1:numel(CellInfo)%look for all physical fields
121                        if NbDim(icell)==2 % select 2D field
122                            if  isfield(Field,'CoordMesh') && ~isempty(Field.CoordMesh)&&...
123                                    ~isempty(CellInfo{icell}.VarIndex_coord_x) && ~isempty(CellInfo{icell}.VarIndex_coord_y)%case of unstructured data
124                                X=Field.(Field.ListVarName{CellInfo{icell}.VarIndex_coord_x});
125                                Y=Field.(Field.ListVarName{CellInfo{icell}.VarIndex_coord_y});
126                                flag_vec=(X<(xy(1,1)+Field.CoordMesh/4) & X>(xy(1,1)-Field.CoordMesh/4)) & ...%flagx=1 for the vectors with x position selected by the mouse
127                                    (Y<(xy(1,2)+Field.CoordMesh/4) & Y>(xy(1,2)-Field.CoordMesh/4));%f
128                                ivec=find(flag_vec,1);% search the (first) selected vector index ivec
129                            end
130                        end
131                    end
132                    end
133                end
134            end
135            set(hchild,'UserData',AxeData)
136            %if the mouse is over a uicontrol, with right mouse button activated, duplicate the display in an editable  zoom window
137        case 'uicontrol'
138            if isequal(get(hObject,'SelectionType'),'alt') %% && ~isequal(get(hchild,'tag'),'frame_object')
139                obj_pos=PosChildren(ind_object,:);
140                msg_pos(1:2)=GUI_pos(1:2)+obj_pos(1:2).*GUI_pos(3:4);
141                display_str=get(hchild,'TooltipString');
142                output=msgbox_uvmat(['uicontrol: ' get(hchild,'Tag')],display_str,get(hchild,'String'),msg_pos);
143                %update the parent edit box and indicat that refresh is needed with the new input
144                if strcmp(get(hchild,'Style'),'edit')&&strcmp(get(hchild,'Enable'),'on')
145                    set(hchild,'String',output)
146                    if strcmp(get(get(hchild,'parent'),'tag'),'InputFile')
147                                hhREFRESH=hhCurrentGUI.InputFileREFRESH;
148                            else
149                                hhREFRESH=hhCurrentGUI.REFRESH;
150                            end
151                    switch get(hchild,'tag')% tag of the current edit box
152                        case {'RootPath', 'SubDir','RootFile','FileExt','RootPath_1', 'SubDir_1','RootFile_1','FileExt_1'}
153                            set(hhREFRESH,'BackgroundColor',[1 0 1])%indicat that REFRESH must be activated (intyroduce the whole series)
154                        case 'num_IndexIncrement'% no action
155                        otherwise
156                            set(hhREFRESH,'BackgroundColor',[1 0 1])%indicat that run0 must be activated
157                    end
158                end
159                return %leave the function once a uicontrol has been selected
160            end
161           
162            %if the mouse is over a uipanel, look at the children of the uipanel
163        case 'uipanel'
164            if isequal(get(hObject,'SelectionType'),'alt')
165                panel_pos=PosChildren(ind_object,:);%position of the panel
166                hhchildren=get(hchild,'Children');%handles of all objects in the selected panel
167                check_visible=strcmp(get(hhchildren,'Visible'),'on');%=1 if visible='on', =0 otherwise
168                hhchildren=hhchildren(check_visible); %keep only the visible children
169                PosChildren=get(hhchildren,'Position');
170                PosLength=cellfun('length',PosChildren);
171                hhchildren=hhchildren(PosLength==4);% keep only object with position defined by a 4 element vector
172                PosChildren=cell2mat(PosChildren(PosLength==4));% transform cell array to a matrix of positions
173                xy_panel=(xy_fig-panel_pos(1:2))./panel_pos(3:4);% mouse position relative to the panel
174                xy_panel_mat=ones(size(PosChildren,1),1)*xy_panel;% mouse position on the figure transformed to a matrix
175                check_pos=xy_panel_mat >= PosChildren(:,1:2) & xy_panel_mat <= PosChildren(:,1:2)+PosChildren(:,3:4);% compare object to mouse position
176                ind_object=find(check_pos(:,1) & check_pos(:,2),1);% select the index of the (first) object under the mouse
177                if ~isempty(ind_object)
178                    hhchild=hhchildren(ind_object);% corresponding object handle
179                    if strcmp(get(hhchild,'Type'),'uicontrol')
180                        msg_pos=GUI_pos(1:2)+panel_pos(1:2).*GUI_pos(3:4)+PosChildren(ind_object,1:2).*panel_pos(3:4).*GUI_pos(3:4);
181                        display_str=get(hhchild,'TooltipString');
182                        output=msgbox_uvmat(['uicontrol: ' get(hhchild,'Tag')],display_str,get(hhchild,'String'),msg_pos);
183                        %update the parent edit box and indicat that refresh is needed with the new input
184                        if strcmp(get(hhchild,'Style'),'edit')&&strcmp(get(hhchild,'Enable'),'on')
185                            set(hhchild,'String',output)
186                            if strcmp(get(get(hhchild,'parent'),'tag'),'InputFile')
187                                hhREFRESH=hhCurrentGUI.InputFileREFRESH;
188                            else
189                                hhREFRESH=hhCurrentGUI.REFRESH;
190                            end
191                            switch get(hhchild,'tag')% tag of the current edit box
192                                case {'RootPath', 'SubDir','RootFile','FileExt','RootPath_1', 'SubDir_1','RootFile_1','FileExt_1'}
193                                    set(hhREFRESH,'BackgroundColor',[1 0 1])%indicat that REFRESH must be activated (intyroduce the whole series)
194                                case 'num_IndexIncrement'% no action
195                                otherwise
196                                    set(hhREFRESH,'BackgroundColor',[1 0 1])%indicat that run0 must be activated
197                            end
198                        end
199                    else
200                        set(hObject,'CurrentObject',hhchild)
201                    end
202                end
203            end
204    end
205end
206    if ~strcmp(htype,'axes')
207        currentaxes=get(hObject,'CurrentAxes');
208        if ~isempty(currentaxes)
209        AxeData=get(currentaxes,'UserData');% data attached to the axis
210        AxeData.Enable='off';% desactivate current axes for mouse up action
211        set(currentaxes,'UserData',AxeData);
212        end
213    end
214   
215%% zoom has first priority, stop here
216if CheckZoom
217    return
218end
219
220%% Creation of a display window zoom of text_display
221if strcmp(get(hObject,'SelectionType'),'alt') && strcmp(htype,'axes') && ~test_edit && ~test_create
222    set(0,'Unit','pixels')
223    %GUISize=get(0,'ScreenSize');% get the size of the screen, to put the fig on the upper right   
224    Width=300;% fig width in points (1/72 inch)
225    Height=200;
226    Left=GUI_pos(1)+GUI_pos(3)-Width; %right edge close to the right, with margin=40
227    Bottom=GUI_pos(2)+GUI_pos(4)-Height; %put fig at top right
228   % hfig_text=figure('Name','text_display','MenuBar','none','NumberTitle','off','Position',[Left,Bottom,Width,Height]);
229    AxeData.htext_display=uicontrol('Style','edit','Units','normalized', 'Position', [0.05 0.05 0.9 0.9],'Max',2,'BackgroundColor',[1 1 1],...
230        'FontUnits','points','FontSize',14);
231    set(hchild,'UserData',AxeData);
232    return %leave the function once a uicontrol has been selected
233end
234
235%% creation of a zoom subfig
236if isfield(hhCurrentGUI,'CheckZoomFig') && get(hhCurrentGUI.CheckZoomFig,'Value')
237    AxeData.Drawing='zoom'; %initiate drawing mode
238    AxeData.CurrentObject=[];%unselect objects
239    set(hchild,'UserData',AxeData);
240    return
241end
242
243if isempty(huvmat)%further options require the uvmat GUI
244    return
245end
246
247%% ruler has second priority
248if test_ruler && ~isempty(xy)
249    AxeData.RulerCoord(1,1:2)=xy(1,1:2);
250    AxeData.RulerHandle=line([xy(1,1) xy(1,1)],[xy(1,2) xy(1,2)],'Color','m','Tag','ruler');
251    AxeData.Drawing='ruler';
252    set(hchild,'UserData',AxeData);
253    return
254end
255
256%% PIV test
257if test_piv
258    figure
259    newaxes=axes;
260    copyobj(AxeData.CurrentCorrImage,newaxes);
261    set(newaxes,'CLim',[0 1])
262    copyobj(AxeData.CurrentVector,newaxes)
263    copyobj(AxeData.TitleHandle,newaxes)
264    colorbar
265end
266
267%% desable  object creation and vector editing if NbDim different from 2
268if ~(isfield(AxeData,'NbDim') && isequal(AxeData.NbDim,2))
269    test_create=0;
270    test_edit_vect=0;
271end
272
273%% selection of an existing projection object (third priority)
274if  test_edit
275    testdeform=0;
276    if ~(isfield(AxeData,'Drawing') && isequal(AxeData.Drawing,'create'))
277        userdata=get(hcurrentobject,'UserData');
278        if ishandle(userdata)%the selected line depends on a parent line
279            AxeData.CurrentObject=userdata;% the parent object becomes the current one
280        else
281            AxeData.CurrentObject=hcurrentobject;% the selected object becomes the current one
282        end
283        ObjectData=get(AxeData.CurrentObject,'UserData');
284        if isfield(ObjectData,'IndexObj')
285            hother=findobj('Tag','proj_object','Type','line');%find all the proj objects
286            set(hother,'Color','b');%reset all the proj objects in 'blue' by default
287            set(hother,'Selected','off')
288            hother=findobj('Tag','proj_object','Type','rectangle');
289            set(hother,'EdgeColor','b');
290            set(hother,'Selected','off');
291            hother=findobj('Tag','proj_object','Type','image');
292            for iobj=1:length(hother)
293                   Acolor=get(hother(iobj),'CData');
294                   Acolor(:,:,1)=zeros(size(Acolor,1),size(Acolor,2));
295                   set(hother(iobj),'CData',Acolor);
296            end
297            hother=findobj('Tag','DeformPoint');
298            set(hother,'Color','b');
299            set(hother,'Selected','off')   
300            if isequal(get(AxeData.CurrentObject,'Type'),'line')
301                set(AxeData.CurrentObject,'Color','m'); %set the selected object to magenta color
302            elseif isequal(get(AxeData.CurrentObject,'Type'),'rectangle')
303                 set(AxeData.CurrentObject,'EdgeColor','m'); %set the selected object to magenta color
304            end
305            if isfield(ObjectData,'SubObject')& ishandle(ObjectData.SubObject)
306                for iobj=1:length(ObjectData.SubObject)
307                    hsub=ObjectData.SubObject(iobj);
308                    if isequal(get(hsub,'Type'),'rectangle')
309                        set(hsub,'EdgeColor','m'); %set the selected object to magenta color
310                    elseif isequal(get(hsub,'Type'),'image')
311                       Acolor=get(hsub,'CData');
312                       Acolor(:,:,1)=Acolor(:,:,3);
313                       set(hsub,'CData',Acolor);
314                    else
315                        set(hsub,'Color','m')
316                    end
317                end
318            end
319            if isequal(obj_tag,'DeformPoint')
320                 set(hcurrentobject,'Color','m'); %set the selected DeformPoint to magenta color
321            end
322            IndexObj=ObjectData.IndexObj;
323                    %indicate on the list of the GUI uvmat which object has been selected
324            if strcmp(get(hCurrentGUI,'tag'),'uvmat') %if the uvmat graph has been selected, object projection is on the other frame view_field
325                set(hhuvmat.ListObject,'Value',IndexObj);
326            else
327                set(hhuvmat.ListObject_1,'Value',IndexObj);
328                list_str=get(hhuvmat.ListObject_1,'String');
329                UvData.ProjObject{IndexObj}.Name=list_str{IndexObj};
330            end
331            set_object(UvData.ProjObject{IndexObj})
332            axes(hchild);%set back the current axes haxes
333            set(gcbo,'Pointer','circle');
334            AxeData.Drawing='deform';
335            if isequal(obj_tag,'DeformPoint')       
336               if isfield(ObjectData,'DeformPoint')
337                   set(hcurrentobject,'Selected','on')
338                   for ipt=1:length(ObjectData.DeformPoint)
339                       if isequal(ObjectData.DeformPoint(ipt),hcurrentobject)
340                            AxeData.CurrentIndex=ipt;
341                            testdeform=1;
342                       end
343                   end
344               end
345            end
346%             if testdeform==0
347%                 AxeData.Drawing='translate';
348%                 set(AxeData.CurrentObject,'Selected','on')
349%                 set(gcbo,'Pointer','fleur');
350%             end
351        else
352            if strcmp(get(hCurrentGUI,'tag'),'uvmat') %if the uvmat graph has been selected, object projection is on the other frame view_field
353               IndexObj=get(hhuvmat.ListObject,'Value');
354               AxeData.CurrentObject=UvData.ProjObject{IndexObj}.DisplayHandle.uvmat;
355            else
356                IndexObj=get(hhuvmat.ListObject_1,'Value');
357                AxeData.CurrentObject=UvData.ProjObject{IndexObj}.DisplayHandle.view_field;
358            end   
359            ObjectData=get(AxeData.CurrentObject,'UserData');
360            ObjectData.IndexObj=IndexObj;
361            set(AxeData.CurrentObject,'UserData',ObjectData)
362        end
363        if testdeform==0
364                AxeData.Drawing='translate';
365                set(AxeData.CurrentObject,'Selected','on')
366                set(gcbo,'Pointer','fleur');
367        end
368    end
369end
370
371%%  create  projection  object
372if  test_create && ~isempty(xy) && ~strcmp(get(hCurrentGUI,'SelectionType'),'alt')
373    % activate this option if the GUI set_object is opened
374    sethandles=guidata(hset_object);% handles of the elements in the GUI set_object
375    ObjectData=read_GUI(hset_object); %read object parameters in the GUI set_object
376    IndexObj=length(UvData.ProjObject);
377    % if the currently selected object is already finished, a new object is initiated
378    if ~isfield(UvData.ProjObject{IndexObj},'CreateMode')
379        IndexObj=IndexObj+1;%start new object
380        ObjectData.Coord=[];
381        ObjectNameNew=ObjectData.Name;
382        if isempty(ObjectNameNew)
383            ObjectNameNew=ObjectData.Type;
384        end
385        % add an index to the object name if the proposed name already exists
386        vers=0;% index of the name
387        ListObject=get(hhuvmat.ListObject,'String');
388        detectname=1;
389        while ~isempty(detectname)
390            detectname=find(strcmp(ObjectNameNew,ListObject),1);%test the existence of the proposed name in the list
391            if detectname% if the object name already exists
392                indstr=regexp(ObjectNameNew,'\D');
393                if indstr(end)<length(ObjectNameNew) %object name ends by a number
394                    vers=str2double(ObjectNameNew(indstr(end)+1:end))+1;
395                    ObjectNameNew=[ObjectNameNew(1:indstr(end)) num2str(vers)];
396                else
397                    vers=vers+1;
398                    ObjectNameNew=[ObjectNameNew(1:indstr(end)) '_' num2str(vers)];
399                end
400            end
401        end
402        ObjectName=ObjectNameNew;
403        set(sethandles.Name,'String',ObjectName)% display the default name in set_object
404        ListObject=[ListObject;{ObjectName}];
405        set(hhuvmat.ListObject,'String',ListObject);%complement the object list
406        set(hhuvmat.ListObject_1,'String',ListObject);%complement the object list
407        if strcmp(CurrentGUI_tag,'uvmat')
408            set(hhuvmat.ListObject,'Value',IndexObj)
409        else
410            set(hhuvmat.ListObject_1,'Value',IndexObj)
411        end
412        UvData.ProjObject{IndexObj}.DisplayHandle.uvmat=hhuvmat.PlotAxes; % axes for plot_object
413        UvData.ProjObject{IndexObj}.DisplayHandle.view_field=[]; %no plot handle before plot_field operation
414        set(hhuvmat.CheckViewObject,'Value',1)
415    end
416    ObjectData.Coord=[ObjectData.Coord ;xy(1,1:2)];% append the coordinates marked by the mouse to the object
417    %TODO replace 0 by z coord for 3D
418    hobject=UvData.ProjObject{IndexObj}.DisplayHandle.(CurrentGUI_tag);
419    if isempty(hobject)
420        hobject=haxes;
421    end
422    if strcmp(CurrentGUI_tag,'uvmat')
423        ProjObject=UvData.ProjObject{get(hhuvmat.ListObject_1,'Value')};
424    else
425        ProjObject=UvData.ProjObject{get(hhuvmat.ListObject,'Value')};
426    end
427    AxeData.CurrentObject=plot_object(ObjectData,ProjObject,hobject,'m');%draw the object and its handle becomes AxeData.CurrentObject
428    UvData.ProjObject{IndexObj}=ObjectData;
429    UvData.ProjObject{IndexObj}.DisplayHandle.(CurrentGUI_tag)=AxeData.CurrentObject;% attribute the current plot object handle to the Object
430    UvData.ProjObject{IndexObj}.CreateMode='on';% mark the object as in the course of creation
431    set(huvmat,'UserData',UvData)
432    PlotData=get(AxeData.CurrentObject,'UserData');
433    PlotData.IndexObj=IndexObj;
434    set(AxeData.CurrentObject,'UserData',PlotData); %record the object index in the graph (memory used for mouse motion)
435    AxeData.Drawing='create';% flag for mouse motion
436
437    %show object coordinates in the GUI set_object
438    h_set_object=findobj(allchild(0),'Tag','set_object');
439    hh_set_object=guidata(h_set_object);
440    set(hh_set_object.Coord,'Data',ObjectData.Coord);
441end
442
443%% create calibration points if the GUI geometry_calib is opened, if the main axes PlotAxes of uvmat has ben selected
444if  test_cal && ~isempty(haxes) && strcmp(get(haxes,'tag'),'PlotAxes')
445    h_geometry_calib=findobj(allchild(0),'Name','geometry_calib'); %find the geomterty_calib GUI
446    hh_geometry_calib=guidata(h_geometry_calib);
447    h_CheckEnableMouse=hh_geometry_calib.CheckEnableMouse;
448    if isequal(get(h_CheckEnableMouse,'Value'),1) && ~isempty(haxes)
449        if ~isequal(get(hhuvmat.TransformName,'Value'),1); %active only with no transform (px coordinates)
450            set(hhuvmat.TransformName,'Value',1)
451            uvmat('TransformName_Callback',hObject,eventdata,hhuvmat); %file input with xml reading  in uvmat
452            set(hhuvmat.CheckFixLimits,'Value',0)% put FixedLimits option to 'off' (to sse the whole field)
453            return
454        end
455        h_ListCoord=hh_geometry_calib.ListCoord; %findobj(h_geometry_calib,'Tag','ListCoord');
456        Coord=get(h_ListCoord,'Data');
457        %data=read_geometry_calib(Coord);%transform char cell to numbers
458        xlim=get(haxes,'XLim');
459        ind_range_x=abs((xlim(2)-xlim(1))/50);
460        ylim=get(haxes,'YLim');
461        ind_range_y=abs((ylim(2)-ylim(1))/50);
462        ind_range=sqrt(ind_range_x*ind_range_y);
463        test_newpoint=1;
464        %if size(data.Coord,2)>=5 %if calibration points already exist
465        if ~isempty(Coord)
466        XCoord=(Coord(:,4));
467        YCoord=(Coord(:,5));
468        index_point=find((XCoord<xy(1,1)+ind_range) & (XCoord>xy(1,1)-ind_range) & ...%flagx=1 for the vectors with x position selected by the mouse
469            (YCoord<xy(1,2)+ind_range) & (YCoord>xy(1,2)-ind_range),1);%find the first calibration point in the neighborhood of the mouse
470        test_newpoint=isempty(index_point);%test for no existing calibration point near the mouse position
471        end
472        %end
473        %val=find(Data.Coord(:,6));
474       
475        %create a new calib point if we are not close to an existing one
476        hh=findobj('Tag','calib_points');%look for handle of calibration points
477        if test_newpoint
478            Coord=[Coord;[0 0 0 xy(1,1) xy(1,2) 0]];
479            set(h_ListCoord,'Data',Coord)
480        end
481        if isempty(hh)
482            hh=line(Coord(:,4),Coord(:,5),'Color','m','Tag','calib_points','LineStyle','.','Marker','+');
483        else
484            set(hh,'XData',Coord(:,4))
485            set(hh,'YData',Coord(:,5))
486        end
487         if test_newpoint
488             set(hh,'UserData',size(Coord,1))% flag the points to edit mode
489         else
490             set(hh,'UserData',index_point)% mark the selected point index for future mouse motion
491         end
492        hhh=findobj('Tag','calib_marker');%look for handle of point marker (circle)
493        if ~isempty(hhh)
494            set(hhh,'Position',[xy(1,1)-ind_range/2 xy(1,2)-ind_range/2 ind_range ind_range])
495        else
496            rectangle('Curvature',[1 1],...
497                'Position',[xy(1,1)-ind_range/2 xy(1,2)-ind_range/2 ind_range ind_range],'EdgeColor','m',...
498                'LineStyle','-','Tag','calib_marker');
499        end
500        AxeData.Drawing='calibration';
501    end
502end
503
504%% edit vectors
505if test_edit_vect && ~isempty(ivec)
506    %create the error flag FF if it does not exist
507    if ~isfield(Field,'FF')
508        Field.ListVarName=[Field.ListVarName 'FF'];
509        Field.VarDimName=[Field.VarDimName Field.VarDimName{CellInfo{icell}.VarIndex_coord_x}];
510        nbvar=length(Field.ListVarName);
511        Field.VarAttribute{nbvar}.Role='errorflag';
512        Field.FF=zeros(size(Field.X));
513    end
514    if isequal(Field.FF(ivec),0)
515        Field.FF(ivec)=100; %mark vector #ivec as false
516    else
517        Field.FF(ivec)=0;
518    end
519    PlotParam=read_GUI(hCurrentGUI);
520    plot_field(Field,haxes,PlotParam);
521    eval(['FigData.' tagaxes '=Field;'])%record the modified field in FigData
522    set(hCurrentGUI,'UserData',FigData);
523end 
524set(haxes,'UserData',AxeData);
525
Note: See TracBrowser for help on using the repository browser.