source: trunk/src/mouse_up.m @ 701

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

several bugs repaired

File size: 18.8 KB
Line 
1%'mouse_up': function  activated when the mouse button is released
2%------------------------------------------------------------------------
3% function mouse_up(hObject,eventdata,handles)
4% activated by the command:
5% set(hObject,'WindowButtonUpFcn',{'mouse_up'}),
6% where hObject is the handle of the figure
7
8%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
9%  Copyright Joel Sommeria, 2008, LEGI / CNRS-UJF-INPG, sommeria@coriolis-legi.org.
10%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
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%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
23
24function mouse_up(hObject,eventdata,handles)
25
26test_ruler=0;%default
27hcurrentaxes=get(hObject,'CurrentAxes');
28if isempty(hcurrentaxes)
29    return % no axes in the current figure
30end
31AxeData=get(hcurrentaxes,'UserData');
32if isfield(AxeData,'ParentAxes')% case of a zoom plot as current axis
33    hcurrentaxes=AxeData.ParentAxes;
34    AxeData=get(hcurrentaxes,'UserData');
35    hcurrentfig=get(hcurrentaxes,'parent');%handles of the GUI parent of the zoom plot
36    testsubplot=1;% mouse selection is on a zoom subplot
37else
38    hcurrentfig=hObject;
39    testsubplot=0;
40end
41%set(get(hcurrentfig,'CurrentObject'),'Selected','off')
42
43CurrentOrigin=[];
44if isfield(AxeData,'CurrentOrigin')
45    CurrentOrigin=AxeData.CurrentOrigin;
46end
47FigTag=get(hcurrentfig,'tag');
48hhcurrentfig=guidata(hcurrentfig);%the current figure is a GUI (uvmat or view_field)
49CheckZoom=get(hhcurrentfig.CheckZoom,'Value');
50CheckZoomFig=get(hhcurrentfig.CheckZoomFig,'Value');%exclusive to CheckZoom
51huvmat=findobj(allchild(0),'tag','uvmat');%find the uvmat interface handle
52if ~isempty(huvmat)
53    hhuvmat=guidata(huvmat);
54    UvData=get(huvmat,'UserData');
55   test_ruler=~CheckZoom && isequal(get(hhuvmat.MenuRuler,'checked'),'on');%test for ruler  action, second priority
56end
57test_drawing=0;%default, =1 to allow drawing by further mouse action
58if ~(isfield(AxeData,'Enable')&& strcmp(AxeData.Enable,'on'))
59    return
60end
61
62xy=get(hcurrentaxes,'CurrentPoint');%xy(1,1),xy(1,2): current x,y positions in axes coordinates
63
64
65%% proceed with the creation or editing (translation/deformation) of an object
66if ~isempty(huvmat) && isfield(AxeData,'Drawing') && ~isequal(AxeData.Drawing,'off') && isfield(AxeData,'CurrentObject')...
67        && ~isempty(AxeData.CurrentObject) && ishandle(AxeData.CurrentObject)
68    set(AxeData.CurrentObject,'Selected','off')
69    PlotData=get(AxeData.CurrentObject,'UserData');%get data attached to the current projection object
70    IndexObj=PlotData.IndexObj;
71    ObjectData=UvData.ProjObject{IndexObj};
72    check_multiple=0;
73   
74    h_set_object=findobj(allchild(0),'Tag','set_object');
75    hh_set_object=guidata(h_set_object);
76    ObjectData.Coord=get(hh_set_object.Coord,'Data');
77   
78    % ending translation
79    if isequal(AxeData.Drawing,'translate')
80        XYData=AxeData.CurrentOrigin;
81        DX=xy(1,1)-XYData(1);%translation from initial position
82        DY=xy(1,2)-XYData(2);
83        ObjectData.Coord(:,1)=ObjectData.Coord(:,1)+DX;
84        ObjectData.Coord(:,2)=ObjectData.Coord(:,2)+DY;
85        set(hh_set_object.Coord,'Data',ObjectData.Coord);
86        %ending object deformation
87    elseif isequal(AxeData.Drawing,'deform')
88        ind_move=AxeData.CurrentIndex;
89        ObjectData.Coord(ind_move,1)=xy(1,1);
90        ObjectData.Coord(ind_move,2)=xy(1,2);
91        set(hh_set_object.Coord,'Data',ObjectData.Coord);
92        %creating object
93    else
94        switch ObjectData.Type
95            case {'line'}
96                if size(ObjectData.Coord,1)==1 % this is the mouse up for the first point, continue until next click
97                    check_multiple=1;
98                end
99            case {'rectangle','ellipse','volume'}
100                ObjectData.Coord=(CurrentOrigin+xy(1,1:2))/2;% keep only the first point coordinate
101                ObjectData.RangeX=abs(ObjectData.Coord(1,1)-xy(1,1));%rectangle width
102                ObjectData.RangeY=abs(ObjectData.Coord(1,2)-xy(1,2));%rectangle height
103                if isequal(ObjectData.RangeX,0)||isequal(ObjectData.RangeY,0)
104                    check_multiple=1;% pass to next mous up if width of height=0
105                end
106            case 'plane' %case of 'plane'
107                DX=(xy(1,1)-ObjectData.Coord(1,1));
108                DY=(xy(1,2)-ObjectData.Coord(1,2));
109                ObjectData.Phi=(angle(DX+i*DY))*180/pi;%rectangle width
110                if isfield(ObjectData,'RangeX')
111                    XMax=sqrt(DX*DX+DY*DY);
112                    if XMax>max(ObjectData.RangeX)
113                        ObjectData.RangeX=[min(ObjectData.RangeX) XMax];
114                    end
115                end
116            otherwise
117                check_multiple=1;
118        end
119    end
120   
121    %show object coordinates in the GUI set_object
122    if strcmp(ObjectData.Type,'rectangle')||strcmp(ObjectData.Type,'ellipse')
123        set(hh_set_object.num_RangeX_2,'String',num2str(ObjectData.RangeX,4));
124        set(hh_set_object.num_RangeY_2,'String',num2str(ObjectData.RangeY,4));
125    end
126   
127    %% stop drawing and plot the projected field if the object manipulation is finished
128    if check_multiple==0  || isequal(get(hcurrentfig,'SelectionType'),'alt')
129        AxeData.CurrentOrigin=[]; %suppress the current origin
130        hobject=UvData.ProjObject{IndexObj}.DisplayHandle.(FigTag);
131        if ~isempty(hObject)
132            ProjObject=UvData.ProjObject{get(hhuvmat.ListObject_1,'Value')};
133            AxeData.CurrentObject=plot_object(ObjectData,ProjObject,hobject,'m');%draw the object and its handle becomes AxeData.CurrentObject
134        end
135        %%
136        if  ~isempty(ObjectData)
137            % plot the field projected on the object
138            ProjData= proj_field(UvData.Field,ObjectData);%project the current interface field on ObjectData
139            if ~isempty(ProjData)
140                if strcmp(FigTag,'uvmat')% uvmat plot selected, projection plot seen in view_field
141                    hview_field=findobj(allchild(0),'tag','view_field');
142                    if isempty(hview_field)
143                        hview_field=view_field(ProjData); %open the view_field GUI for plot
144                    else
145                        hhview_field=guidata(hview_field);
146                        [PlotType,PlotParam]=plot_field(ProjData,hhview_field.PlotAxes,read_GUI(hview_field));%update an existing  plot in view_field
147                        errormsg=fill_GUI(PlotParam,hview_field);
148                    end
149                    ViewFieldData=get(hview_field,'UserData');
150                    haxes=findobj(hview_field,'tag','axes3');
151                    if strcmp(get(haxes,'Visible'),'off')%sempty(PlotParam.Coordinates)% case of no plot display (pure text table)
152                        h_TableDisplay=findobj(hview_field,'tag','TableDisplay');
153                        pos_table=get(h_TableDisplay,'Position');
154                        pos=get(hview_field,'Position');
155                        set(hview_field,'Position',[pos(1)+pos(3)-pos_table(3) pos(2)+pos(4)-pos_table(4) pos_table(3) pos_table(4)])
156                        drawnow
157                        set(hview_field,'UserData',ViewFieldData);% restore the previously stored GUI position after GUI resizing
158                    elseif isfield(ViewFieldData,'GUISize')
159                        set(hview_field,'Position',ViewFieldData.GUISize)
160                    end
161                else
162                    UvData.PlotAxes=ProjData;
163                    [PlotType,PlotParam]=plot_field(ProjData,hhuvmat.PlotAxes,read_GUI(huvmat));%update an existing field plot
164                    errormsg=fill_GUI(PlotParam,huvmat);
165                end
166            end
167            set(hhuvmat.CheckViewField,'Value',1);%
168            set(hhuvmat.CheckEditObject,'Value',1);%   
169            set(hhuvmat.MenuObject,'checked','off'); %desactivate object creation mode
170            set(hhuvmat.CheckEditObject,'Enable','on');%
171            set(get(h_set_object,'children'),'Enable','on')
172        end
173        UvData.ProjObject{IndexObj}=ObjectData;
174        if isfield(UvData.ProjObject{IndexObj},'CreateMode')
175            UvData.ProjObject{IndexObj}=rmfield(UvData.ProjObject{IndexObj},'CreateMode');%remove createMode to mark the object as finished
176        end
177    else
178        test_drawing=1;%allow continuation of drawing object
179        AxeData.CurrentOrigin=[xy(1,1) xy(1,2)]; %the current point becomes the next current origin
180    end
181    %     UvData.ProjObject{IndexObj}=ObjectData;
182    hother=findobj('Tag','deformpoint');%find all the deformpoints
183    set(hother,'Color','b');%reset all the deformpoints in 'blue'
184end
185
186%% creation or update of a  zoom sub-plot
187if CheckZoomFig && isequal(get(hcurrentfig,'SelectionType'),'normal')&&...%if left button has been pressed
188     ~isempty(CurrentOrigin) && ~isequal(CurrentOrigin(1),xy(1,1)) && ~isequal(CurrentOrigin(2),xy(1,2))%if mouse moved in x and y since presed down
189    hparentfig=hcurrentfig;
190    %open or update a new zoom figure if a rectangle has been drawn
191    if ishandle(hcurrentaxes);
192        if isfield(AxeData,'CurrentRectZoom') && ~isempty(AxeData.CurrentRectZoom) && ishandle(AxeData.CurrentRectZoom)
193            %PosRect=get(AxeData.CurrentRectZoom,'Position');
194            if isfield(AxeData,'CurrentVec') && ~isempty(AxeData.CurrentVec) && ishandle(AxeData.CurrentVec)
195                delete(AxeData.CurrentVec)
196            end
197            if ~testsubplot% if we are not already on a zoom plot
198                hfig2=findobj(allchild(0),'Tag','zoom_fig');
199                if isempty(hfig2)% create zoom sub plot if absent
200                    hfig2=figure('name',['zoom_' FigTag],'tag','zoom_fig');%create new figure (unit='pixels' by default)
201                    set(0,'Unit','pixels')
202                    FigPos=get(hfig2,'Position');%get the standard width and height of the fig
203                    ScreenSize=get(0,'ScreenSize');% get the size of the screen, to put the fig on the upper right
204                    Left=ScreenSize(3)- FigPos(3)-40; %right edge close to the right, with margin=40
205                    Bottom=ScreenSize(4)-FigPos(4)-40; %put fig at top right
206                    FigPos(1:2)=[Left Bottom];
207                    set(hfig2,'Position',FigPos);% put the zoom fig close to the upper right of the screen
208                    map=colormap(hcurrentaxes);
209                    colormap(map);%transmit the current colormap to the zoom fig
210                    set(hfig2,'KeyPressFcn',{@keyboard_callback,handles})%set keyboard action function
211                    set(hfig2,'WindowButtonMotionFcn',{@mouse_motion,handles})%set mouse action function
212                    set(hfig2,'WindowButtonDownFcn',{@mouse_down})%set mouse click action function
213                    set(hfig2,'WindowButtonUpFcn',{@mouse_up,handles})
214                else
215                    zoom_axes=findobj(hfig2,'Type','axes');%delete existing axes
216                    axes(zoom_axes);%make the zoom axes apparent
217                    delete(zoom_axes)
218                end
219                set(hfig2,'DeleteFcn',{@close_fig,AxeData.CurrentRectZoom})
220                set(hfig2,'UserData',AxeData.CurrentRectZoom)% record the parent object (zoom rectangle) in the new fig   
221                AxeData.ZoomAxes=copyobj(hcurrentaxes,hfig2); %copy the current graph axes to the zoom figure
222                hrect_zoom=findobj(AxeData.ZoomAxes,'Tag','rect_zoom');%find and delete the copy of the rect_zoom rectangle
223                delete(hrect_zoom)
224                hcol=findobj(hparentfig,'Tag','Colorbar'); %look for colorbar axes
225                if ~isempty(hcol)
226                    hcol_new=colorbar;
227                    YTick=get(hcol,'YTick');
228                    YTicklabel=get(hcol,'Yticklabel');
229                    colbarlim=get(hcol,'YLim');
230                    newcolbarlim=get(hcol_new,'YLim');
231                    scale_bar=(newcolbarlim(2)-newcolbarlim(1))/(colbarlim(2)-colbarlim(1));
232                    YTick_rescaled=newcolbarlim(1)+scale_bar*(YTick-colbarlim(1));
233                    set(hcol_new,'YTick',YTick_rescaled);
234                    set(hcol_new,'Yticklabel',YTicklabel);
235                end
236                ChildAxeData=get(AxeData.ZoomAxes,'UserData');
237            end 
238            ChildAxeData.CurrentOrigin=[];% forget the current origin
239            ChildAxeData.CurrentRectZoom=[]; % no rect zoom in the new window
240            ChildAxeData.Drawing='off';
241            ChildAxeData.ParentAxes=hcurrentaxes;
242            ChildAxeData.ParentRect=AxeData.CurrentRectZoom;%set the rectangle drawing as a 'parent' associated to the new axe
243            if xy(1,1)>CurrentOrigin(1)
244            set(AxeData.ZoomAxes,'Xlim',[CurrentOrigin(1) xy(1,1)])
245            else
246                set(AxeData.ZoomAxes,'Xlim',[xy(1,1) CurrentOrigin(1)])
247            end
248            if xy(1,2)>CurrentOrigin(2)
249            set(AxeData.ZoomAxes,'Ylim',[CurrentOrigin(2) xy(1,2)])
250            else
251                set(AxeData.ZoomAxes,'Ylim',[xy(1,2) CurrentOrigin(2)])
252            end
253            set(AxeData.ZoomAxes,'UserData',ChildAxeData);%update the AxeData of the new axes
254        end
255    end
256end
257
258%% zoom in or out by a factor 2 if no new figure is created
259if CheckZoom
260    if testsubplot
261        haxes=gca;% zoom on a zoom sub-plot
262    else
263        haxes=hcurrentaxes;% zoom on the main plot
264    end
265   % xy=get(haxes,'CurrentPoint');%xy(1,1),xy(1,2): current x,y positions in axes coordinates
266    xlim=get(haxes,'XLim');
267    ylim=get(haxes,'YLim');
268    % if left mouse button has been pressed, zoom in by a factor of 2
269    if  isequal(get(gcf,'SelectionType'),'normal');%if left button has been pressed, zoom in by a factor of 2
270        PlotBoxAspectRatio=get(haxes,'PlotBoxAspectRatio');
271        yoverx=PlotBoxAspectRatio(2)/PlotBoxAspectRatio(1);
272        if yoverx <2
273            xlim(1)=0.5*xy(1,1)+0.5*xlim(1);
274            xlim(2)=0.5*xy(1,1)+0.5*xlim(2);%double the field whith the middle at the selected points
275            set(haxes,'XLim',xlim)
276        end
277        if yoverx >0.5
278            ylim(2)=0.5*xy(1,2)+0.5*ylim(2);
279            ylim(1)=0.5*xy(1,2)+0.5*ylim(1);
280            set(haxes,'YLim',ylim)
281        end
282       
283        % if right mouse button has been pressed, zoom out by a factor of 2
284    else
285        xlim(1)=2*xlim(1)-xy(1,1);% reverse of the zoom on action
286        xlim(2)=2*xlim(2)-xy(1,1);
287        ylim(1)=2*ylim(1)-xy(1,2);
288        ylim(2)=2*ylim(2)-xy(1,2);
289        % adjust the zoom out to the available field
290        if ~testsubplot && isfield(AxeData,'RangeX')&& isfield(AxeData,'RangeY')
291            xlim(1)=max(AxeData.RangeX(1),xlim(1));
292            xlim(2)=min(AxeData.RangeX(2),xlim(2));
293            ylim(1)=max(AxeData.RangeY(1),ylim(1));
294            ylim(2)=min(AxeData.RangeY(2),ylim(2));
295            if ylim(1)>=ylim(2)|| xlim(1)>=xlim(2)
296                xlim=AxeData.RangeX;
297                ylim=AxeData.RangeY;
298            end
299            % desactivate the zoom if the full field is visible within the axes
300            if isequal(xlim,AxeData.RangeX) && isequal(ylim,AxeData.RangeY)
301                set(hhuvmat.CheckZoom,'Value',0)
302               % set(hhuvmat.CheckZoom,'BackgroundColor',[0.7 0.7 0.7])
303                set(hhuvmat.CheckFixLimits,'Value',0)
304              %  set(hhuvmat.CheckFixLimits,'BackgroundColor',[0.7 0.7 0.7])
305            end
306        end
307        set(haxes,'XLim',xlim)
308        set(haxes,'YLim',ylim)
309        %test whther zoom out is operating (to inactivate AxedAta
310        if ~isfield(AxeData,'CurrentXLim')|| ~isequal(xlim,AxeData.CurrentXLim)
311            AxeData.CurrentXLim=xlim;%
312        end
313    end
314    %if isfield(AxeData,'LimEditBox')&& AxeData.LimEditBox% update display of the GUI containing the axis (uvmat or view_field)
315    if testsubplot
316        set(AxeData.CurrentRectZoom,'Position',[xlim(1) ylim(1) xlim(2)-xlim(1) ylim(2)-ylim(1)])
317    else
318        set(hhcurrentfig.num_MinX,'String',num2str(xlim(1)))
319        set(hhcurrentfig.num_MaxX,'String',num2str(xlim(2)))
320        set(hhcurrentfig.num_MinY,'String',num2str(ylim(1)))
321        set(hhcurrentfig.num_MaxY,'String',num2str(ylim(2)))
322    end
323end
324
325%% editing calibration point
326if ~CheckZoom && isfield(AxeData,'Drawing') && isequal(AxeData.Drawing,'calibration')
327    h_geometry_calib=findobj(allchild(0),'tag','geometry_calib'); %find the geomterty_calib GUI
328    if ~isempty(h_geometry_calib)
329        hh_geometry_calib=guidata(h_geometry_calib);
330        edit_test=get(hh_geometry_calib.CheckEnableMouse,'Value');
331        hh=findobj(hcurrentaxes,'tag','calib_points');%look for handle of calibration points
332        if ~isempty(hh) && edit_test
333            index_point=get(hh,'UserData');
334            set(hh,'UserData',[])%remove edit mode
335            h_ListCoord=hh_geometry_calib.ListCoord; %handles of the coordinate list
336            Coord=get(h_ListCoord,'Data');
337            Coord(index_point,4)=xy(1,1);
338            Coord(index_point,5)=xy(1,2);
339            set(h_ListCoord,'Data',Coord)
340            set(hh,'XData',Coord(:,4))
341            set(hh,'YData',Coord(:,5))
342        end
343    end
344end
345
346%% finalising ruler
347if test_ruler && ~isempty(xy)
348    set(hhuvmat.MenuRuler,'checked','off')%desable the ruler option in uvmat
349    xy=get(hcurrentaxes,'CurrentPoint');% get the current mouse coordinates
350    RulerCoord=[AxeData.RulerCoord ;xy(1,1:2)];% append the recorded ruler origin to the current mouse coordinates
351    RulerCoord=diff(RulerCoord,1);% coordiante difference between segment end and beginning
352    RulerCoord=RulerCoord(1)+i*RulerCoord(2);
353    distance=abs(RulerCoord);
354    azimuth=(180/pi)*angle(RulerCoord);
355    msgbox_uvmat('RULER','',['length: ' num2str(distance,3) ',  angle(degrees): ' num2str(azimuth,3)])
356    delete(AxeData.RulerHandle)%delete the ruler graphic object
357    AxeData=rmfield(AxeData,'RulerHandle');%remove the ruler handle in AxeData
358    AxeData.Drawing='off';%exit the ruler drawing mode
359end
360
361
362%% update
363if test_drawing==0
364        AxeData.Drawing='off';%stop current drawing action
365end
366set(hcurrentaxes,'UserData',AxeData);
367if ~isempty(huvmat)
368    set(huvmat,'UserData',UvData);
369end
370
371%------------------------------------------------------------------------   
372% --- 'close_fig': function  activated when a zoom figure is closed
373%------------------------------------------------------------------------
374function close_fig(ggg,eventdata,hparent)
375
376hfig=get(get(hparent,'parent'),'parent');
377hbutton=findobj(hfig,'Tag','CheckZoomFig');
378if ~isempty(hbutton)
379    set(hbutton,'Value',0)% desactivate the zoom fig option
380end
381delete(hparent)  % delete the rectangle showing the zoom graph in the parent fig
382
Note: See TracBrowser for help on using the repository browser.