source: trunk/src/mouse_down.m @ 710

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

various improvements.

File size: 24.5 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                msgbox_uvmat(['uicontrol: ' get(hchild,'Tag')],display_str,get(hchild,'String'),msg_pos);
143                return %leave the function once a uicontrol has been selected
144            end
145           
146            %if the mouse is over a uipanel, look at the children of the uipanel
147        case 'uipanel'
148            if isequal(get(hObject,'SelectionType'),'alt')
149                panel_pos=PosChildren(ind_object,:);%position of the panel
150                hhchildren=get(hchild,'Children');%handles of all objects in the selected panel
151                check_visible=strcmp(get(hhchildren,'Visible'),'on');%=1 if visible='on', =0 otherwise
152                hhchildren=hhchildren(check_visible); %keep only the visible children
153                PosChildren=get(hhchildren,'Position');
154                PosLength=cellfun('length',PosChildren);
155                hhchildren=hhchildren(PosLength==4);% keep only object with position defined by a 4 element vector
156                PosChildren=cell2mat(PosChildren(PosLength==4));% transform cell array to a matrix of positions
157                xy_panel=(xy_fig-panel_pos(1:2))./panel_pos(3:4);% mouse position relative to the panel
158                xy_panel_mat=ones(size(PosChildren,1),1)*xy_panel;% mouse position on the figure transformed to a matrix
159                check_pos=xy_panel_mat >= PosChildren(:,1:2) & xy_panel_mat <= PosChildren(:,1:2)+PosChildren(:,3:4);% compare object to mouse position
160                ind_object=find(check_pos(:,1) & check_pos(:,2),1);% select the index of the (first) object under the mouse
161                if ~isempty(ind_object)
162                    hhchild=hhchildren(ind_object);% corresponding object handle
163                    if strcmp(get(hhchild,'Type'),'uicontrol')
164                        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);
165                        display_str=get(hhchild,'TooltipString');
166                        msgbox_uvmat(['uicontrol: ' get(hhchild,'Tag')],display_str,get(hhchild,'String'),msg_pos);
167                    else
168                        set(hObject,'CurrentObject',hhchild)
169                    end
170                end
171            end
172    end
173end
174    if ~strcmp(htype,'axes')
175        currentaxes=get(hObject,'CurrentAxes');
176        if ~isempty(currentaxes)
177        AxeData=get(currentaxes,'UserData');% data attached to the axis
178        AxeData.Enable='off';% desactivate current axes for mouse up action
179        set(currentaxes,'UserData',AxeData);
180        end
181    end
182   
183%% zoom has first priority, stop here
184if CheckZoom
185    return
186end
187
188%% Creation of a display window zoom of text_display
189if strcmp(get(hObject,'SelectionType'),'alt') && strcmp(htype,'axes') && ~test_edit && ~test_create
190    set(0,'Unit','pixels')
191    %GUISize=get(0,'ScreenSize');% get the size of the screen, to put the fig on the upper right   
192    Width=300;% fig width in points (1/72 inch)
193    Height=200;
194    Left=GUI_pos(1)+GUI_pos(3)-Width; %right edge close to the right, with margin=40
195    Bottom=GUI_pos(2)+GUI_pos(4)-Height; %put fig at top right
196   % hfig_text=figure('Name','text_display','MenuBar','none','NumberTitle','off','Position',[Left,Bottom,Width,Height]);
197    AxeData.htext_display=uicontrol('Style','edit','Units','normalized', 'Position', [0.05 0.05 0.9 0.9],'Max',2,'BackgroundColor',[1 1 1],...
198        'FontUnits','points','FontSize',14);
199    set(hchild,'UserData',AxeData);
200    return %leave the function once a uicontrol has been selected
201end
202
203%% creation of a zoom subfig
204if isfield(hhCurrentGUI,'CheckZoomFig') && get(hhCurrentGUI.CheckZoomFig,'Value')
205    AxeData.Drawing='zoom'; %initiate drawing mode
206    AxeData.CurrentObject=[];%unselect objects
207    set(hchild,'UserData',AxeData);
208    return
209end
210
211if isempty(huvmat)%further options require the uvmat GUI
212    return
213end
214
215%% ruler has second priority
216if test_ruler && ~isempty(xy)
217    AxeData.RulerCoord(1,1:2)=xy(1,1:2);
218    AxeData.RulerHandle=line([xy(1,1) xy(1,1)],[xy(1,2) xy(1,2)],'Color','m','Tag','ruler');
219    AxeData.Drawing='ruler';
220    set(hchild,'UserData',AxeData);
221    return
222end
223
224%% PIV test
225if test_piv
226    figure
227    newaxes=axes;
228    copyobj(AxeData.CurrentCorrImage,newaxes);
229    set(newaxes,'CLim',[0 1])
230    copyobj(AxeData.CurrentVector,newaxes)
231    copyobj(AxeData.TitleHandle,newaxes)
232    colorbar
233end
234
235%% desable  object creation and vector editing if NbDim different from 2
236if ~(isfield(AxeData,'NbDim') && isequal(AxeData.NbDim,2))
237    test_create=0;
238    test_edit_vect=0;
239end
240
241%% selection of an existing projection object (third priority)
242if  test_edit
243    testdeform=0;
244    if ~(isfield(AxeData,'Drawing') && isequal(AxeData.Drawing,'create'))
245        userdata=get(hcurrentobject,'UserData');
246        if ishandle(userdata)%the selected line depends on a parent line
247            AxeData.CurrentObject=userdata;% the parent object becomes the current one
248        else
249            AxeData.CurrentObject=hcurrentobject;% the selected object becomes the current one
250        end
251        ObjectData=get(AxeData.CurrentObject,'UserData');
252        if isfield(ObjectData,'IndexObj')
253            hother=findobj('Tag','proj_object','Type','line');%find all the proj objects
254            set(hother,'Color','b');%reset all the proj objects in 'blue' by default
255            set(hother,'Selected','off')
256            hother=findobj('Tag','proj_object','Type','rectangle');
257            set(hother,'EdgeColor','b');
258            set(hother,'Selected','off');
259            hother=findobj('Tag','proj_object','Type','image');
260            for iobj=1:length(hother)
261                   Acolor=get(hother(iobj),'CData');
262                   Acolor(:,:,1)=zeros(size(Acolor,1),size(Acolor,2));
263                   set(hother(iobj),'CData',Acolor);
264            end
265            hother=findobj('Tag','DeformPoint');
266            set(hother,'Color','b');
267            set(hother,'Selected','off')   
268            if isequal(get(AxeData.CurrentObject,'Type'),'line')
269                set(AxeData.CurrentObject,'Color','m'); %set the selected object to magenta color
270            elseif isequal(get(AxeData.CurrentObject,'Type'),'rectangle')
271                 set(AxeData.CurrentObject,'EdgeColor','m'); %set the selected object to magenta color
272            end
273            if isfield(ObjectData,'SubObject')& ishandle(ObjectData.SubObject)
274                for iobj=1:length(ObjectData.SubObject)
275                    hsub=ObjectData.SubObject(iobj);
276                    if isequal(get(hsub,'Type'),'rectangle')
277                        set(hsub,'EdgeColor','m'); %set the selected object to magenta color
278                    elseif isequal(get(hsub,'Type'),'image')
279                       Acolor=get(hsub,'CData');
280                       Acolor(:,:,1)=Acolor(:,:,3);
281                       set(hsub,'CData',Acolor);
282                    else
283                        set(hsub,'Color','m')
284                    end
285                end
286            end
287            if isequal(obj_tag,'DeformPoint')
288                 set(hcurrentobject,'Color','m'); %set the selected DeformPoint to magenta color
289            end
290            IndexObj=ObjectData.IndexObj;
291                    %indicate on the list of the GUI uvmat which object has been selected
292            if strcmp(get(hCurrentGUI,'tag'),'uvmat') %if the uvmat graph has been selected, object projection is on the other frame view_field
293                set(hhuvmat.ListObject,'Value',IndexObj);
294            else
295                set(hhuvmat.ListObject_1,'Value',IndexObj);
296                list_str=get(hhuvmat.ListObject_1,'String');
297                UvData.ProjObject{IndexObj}.Name=list_str{IndexObj};
298            end
299            set_object(UvData.ProjObject{IndexObj})
300            axes(hchild);%set back the current axes haxes
301            set(gcbo,'Pointer','circle');
302            AxeData.Drawing='deform';
303            if isequal(obj_tag,'DeformPoint')       
304               if isfield(ObjectData,'DeformPoint')
305                   set(hcurrentobject,'Selected','on')
306                   for ipt=1:length(ObjectData.DeformPoint)
307                       if isequal(ObjectData.DeformPoint(ipt),hcurrentobject)
308                            AxeData.CurrentIndex=ipt;
309                            testdeform=1;
310                       end
311                   end
312               end
313            end
314%             if testdeform==0
315%                 AxeData.Drawing='translate';
316%                 set(AxeData.CurrentObject,'Selected','on')
317%                 set(gcbo,'Pointer','fleur');
318%             end
319        else
320            if strcmp(get(hCurrentGUI,'tag'),'uvmat') %if the uvmat graph has been selected, object projection is on the other frame view_field
321               IndexObj=get(hhuvmat.ListObject,'Value');
322               AxeData.CurrentObject=UvData.ProjObject{IndexObj}.DisplayHandle.uvmat;
323            else
324                IndexObj=get(hhuvmat.ListObject_1,'Value');
325                AxeData.CurrentObject=UvData.ProjObject{IndexObj}.DisplayHandle.view_field;
326            end   
327            ObjectData=get(AxeData.CurrentObject,'UserData');
328            ObjectData.IndexObj=IndexObj;
329            set(AxeData.CurrentObject,'UserData',ObjectData)
330        end
331        if testdeform==0
332                AxeData.Drawing='translate';
333                set(AxeData.CurrentObject,'Selected','on')
334                set(gcbo,'Pointer','fleur');
335        end
336    end
337end
338
339%%  create  projection  object
340if  test_create && ~isempty(xy) && ~strcmp(get(hCurrentGUI,'SelectionType'),'alt')
341    % activate this option if the GUI set_object is opened
342    sethandles=guidata(hset_object);% handles of the elements in the GUI set_object
343    ObjectData=read_GUI(hset_object); %read object parameters in the GUI set_object
344    IndexObj=length(UvData.ProjObject);
345    % if the currently selected object is already finished, a new object is initiated
346    if ~isfield(UvData.ProjObject{IndexObj},'CreateMode')
347        IndexObj=IndexObj+1;%start new object
348        ObjectData.Coord=[];
349        ObjectNameNew=ObjectData.Name;
350        if isempty(ObjectNameNew)
351            ObjectNameNew=ObjectData.Type;
352        end
353        % add an index to the object name if the proposed name already exists
354        vers=0;% index of the name
355        ListObject=get(hhuvmat.ListObject,'String');
356        detectname=1;
357        while ~isempty(detectname)
358            detectname=find(strcmp(ObjectNameNew,ListObject),1);%test the existence of the proposed name in the list
359            if detectname% if the object name already exists
360                indstr=regexp(ObjectNameNew,'\D');
361                if indstr(end)<length(ObjectNameNew) %object name ends by a number
362                    vers=str2double(ObjectNameNew(indstr(end)+1:end))+1;
363                    ObjectNameNew=[ObjectNameNew(1:indstr(end)) num2str(vers)];
364                else
365                    vers=vers+1;
366                    ObjectNameNew=[ObjectNameNew(1:indstr(end)) '_' num2str(vers)];
367                end
368            end
369        end
370        ObjectName=ObjectNameNew;
371        set(sethandles.Name,'String',ObjectName)% display the default name in set_object
372        ListObject=[ListObject;{ObjectName}];
373        set(hhuvmat.ListObject,'String',ListObject);%complement the object list
374        set(hhuvmat.ListObject_1,'String',ListObject);%complement the object list
375        if strcmp(CurrentGUI_tag,'uvmat')
376            set(hhuvmat.ListObject,'Value',IndexObj)
377        else
378            set(hhuvmat.ListObject_1,'Value',IndexObj)
379        end
380        UvData.ProjObject{IndexObj}.DisplayHandle.uvmat=hhuvmat.PlotAxes; % axes for plot_object
381        UvData.ProjObject{IndexObj}.DisplayHandle.view_field=[]; %no plot handle before plot_field operation
382        set(hhuvmat.CheckViewObject,'Value',1)
383    end
384    ObjectData.Coord=[ObjectData.Coord ;xy(1,1:2)];% append the coordinates marked by the mouse to the object
385    %TODO replace 0 by z coord for 3D
386    hobject=UvData.ProjObject{IndexObj}.DisplayHandle.(CurrentGUI_tag);
387    if isempty(hobject)
388        hobject=haxes;
389    end
390    if strcmp(CurrentGUI_tag,'uvmat')
391        ProjObject=UvData.ProjObject{get(hhuvmat.ListObject_1,'Value')};
392    else
393        ProjObject=UvData.ProjObject{get(hhuvmat.ListObject,'Value')};
394    end
395    AxeData.CurrentObject=plot_object(ObjectData,ProjObject,hobject,'m');%draw the object and its handle becomes AxeData.CurrentObject
396    UvData.ProjObject{IndexObj}=ObjectData;
397    UvData.ProjObject{IndexObj}.DisplayHandle.(CurrentGUI_tag)=AxeData.CurrentObject;% attribute the current plot object handle to the Object
398    UvData.ProjObject{IndexObj}.CreateMode='on';% mark the object as in the course of creation
399    set(huvmat,'UserData',UvData)
400    PlotData=get(AxeData.CurrentObject,'UserData');
401    PlotData.IndexObj=IndexObj;
402    set(AxeData.CurrentObject,'UserData',PlotData); %record the object index in the graph (memory used for mouse motion)
403    AxeData.Drawing='create';% flag for mouse motion
404
405    %show object coordinates in the GUI set_object
406    h_set_object=findobj(allchild(0),'Tag','set_object');
407    hh_set_object=guidata(h_set_object);
408    set(hh_set_object.Coord,'Data',ObjectData.Coord);
409end
410
411%% create calibration points if the GUI geometry_calib is opened, if the main axes PlotAxes of uvmat has ben selected
412if  test_cal && ~isempty(haxes) && strcmp(get(haxes,'tag'),'PlotAxes')
413    h_geometry_calib=findobj(allchild(0),'Name','geometry_calib'); %find the geomterty_calib GUI
414    hh_geometry_calib=guidata(h_geometry_calib);
415    h_CheckEnableMouse=hh_geometry_calib.CheckEnableMouse;
416    if isequal(get(h_CheckEnableMouse,'Value'),1) && ~isempty(haxes)
417        if ~isequal(get(hhuvmat.TransformName,'Value'),1); %active only with no transform (px coordinates)
418            set(hhuvmat.TransformName,'Value',1)
419            uvmat('TransformName_Callback',hObject,eventdata,hhuvmat); %file input with xml reading  in uvmat
420            set(hhuvmat.CheckFixLimits,'Value',0)% put FixedLimits option to 'off' (to sse the whole field)
421            return
422        end
423        h_ListCoord=hh_geometry_calib.ListCoord; %findobj(h_geometry_calib,'Tag','ListCoord');
424        Coord=get(h_ListCoord,'Data');
425        %data=read_geometry_calib(Coord);%transform char cell to numbers
426        xlim=get(haxes,'XLim');
427        ind_range_x=abs((xlim(2)-xlim(1))/50);
428        ylim=get(haxes,'YLim');
429        ind_range_y=abs((ylim(2)-ylim(1))/50);
430        ind_range=sqrt(ind_range_x*ind_range_y);
431        test_newpoint=1;
432        %if size(data.Coord,2)>=5 %if calibration points already exist
433        if ~isempty(Coord)
434        XCoord=(Coord(:,4));
435        YCoord=(Coord(:,5));
436        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
437            (YCoord<xy(1,2)+ind_range) & (YCoord>xy(1,2)-ind_range),1);%find the first calibration point in the neighborhood of the mouse
438        test_newpoint=isempty(index_point);%test for no existing calibration point near the mouse position
439        end
440        %end
441        %val=find(Data.Coord(:,6));
442       
443        %create a new calib point if we are not close to an existing one
444        hh=findobj('Tag','calib_points');%look for handle of calibration points
445        if test_newpoint
446            Coord=[Coord;[0 0 0 xy(1,1) xy(1,2) 0]];
447            set(h_ListCoord,'Data',Coord)
448        end
449        if isempty(hh)
450            hh=line(Coord(:,4),Coord(:,5),'Color','m','Tag','calib_points','LineStyle','.','Marker','+');
451        else
452            set(hh,'XData',Coord(:,4))
453            set(hh,'YData',Coord(:,5))
454        end
455         if test_newpoint
456             set(hh,'UserData',size(Coord,1))% flag the points to edit mode
457         else
458             set(hh,'UserData',index_point)% mark the selected point index for future mouse motion
459         end
460        hhh=findobj('Tag','calib_marker');%look for handle of point marker (circle)
461        if ~isempty(hhh)
462            set(hhh,'Position',[xy(1,1)-ind_range/2 xy(1,2)-ind_range/2 ind_range ind_range])
463        else
464            rectangle('Curvature',[1 1],...
465                'Position',[xy(1,1)-ind_range/2 xy(1,2)-ind_range/2 ind_range ind_range],'EdgeColor','m',...
466                'LineStyle','-','Tag','calib_marker');
467        end
468        AxeData.Drawing='calibration';
469    end
470end
471
472%% edit vectors
473if test_edit_vect && ~isempty(ivec)
474    %create the error flag FF if it does not exist
475    if ~isfield(Field,'FF')
476        Field.ListVarName=[Field.ListVarName 'FF'];
477        Field.VarDimName=[Field.VarDimName Field.VarDimName{CellInfo{icell}.VarIndex_coord_x}];
478        nbvar=length(Field.ListVarName);
479        Field.VarAttribute{nbvar}.Role='errorflag';
480        Field.FF=zeros(size(Field.X));
481    end
482    if isequal(Field.FF(ivec),0)
483        Field.FF(ivec)=100; %mark vector #ivec as false
484    else
485        Field.FF(ivec)=0;
486    end
487    PlotParam=read_GUI(hCurrentGUI);
488    plot_field(Field,haxes,PlotParam);
489    eval(['FigData.' tagaxes '=Field;'])%record the modified field in FigData
490    set(hCurrentGUI,'UserData',FigData);
491end 
492set(haxes,'UserData',AxeData);
493
Note: See TracBrowser for help on using the repository browser.