- Timestamp:
- Mar 31, 2010, 8:18:15 PM (15 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series.m
r55 r76 2077 2077 set(handles.GetObject,'BackgroundColor',[1 1 0])%put unactivated buttons to yellow 2078 2078 % DataInit.ParentButton=handles.GetObject; 2079 hset_object=findobj(allchild(0),' Name','set_object');%find the set_object interface handle2079 hset_object=findobj(allchild(0),'tag','set_object');%find the set_object interface handle 2080 2080 if ishandle(hset_object) 2081 2081 uistack(hset_object,'top') -
trunk/src/series/aver_stat.m
r55 r76 36 36 test_object=get(hseries.GetObject,'Value'); 37 37 if test_object%isfield(Series,'sethandles') 38 hset_object=findobj(allchild(0),' Name','set_object');38 hset_object=findobj(allchild(0),'tag','set_object'); 39 39 ProjObject=read_set_object(guidata(hset_object)); 40 40 %answeryes=questdlg({['field series projected on ' Series.ProjObject.Style]}); -
trunk/src/series/merge_proj.m
r41 r76 27 27 test_object=get(hseries.GetObject,'Value'); 28 28 if test_object 29 hset_object=findobj(allchild(0),' Name','set_object');29 hset_object=findobj(allchild(0),'tag','set_object'); 30 30 ProjObject=read_set_object(guidata(hset_object)); 31 31 if ~isfield(ProjObject,'Style') -
trunk/src/series/time_series.m
r44 r76 35 35 test_object=get(hseries.GetObject,'Value'); 36 36 if test_object 37 hset_object=findobj(allchild(0),' Name','set_object');37 hset_object=findobj(allchild(0),'tag','set_object'); 38 38 ProjObject=read_set_object(guidata(hset_object)); 39 39 %answeryes=questdlg({['field series projected on ' Series.ProjObject.Style]}); -
trunk/src/uvmat.m
r75 r76 4246 4246 hset_object=set_object(ObjectData,PlotHandles,ZBounds);% call the set_object interface, 4247 4247 set(hset_object,'name',ObjectName) 4248 pos_uvmat=get(handles.uvmat,'Position');4249 % position the set_object GUI with respect to uvmat4250 if isfield(UvData,'SetObjectOrigin')4251 pos_set_object(1:2)=UvData.SetObjectOrigin + pos_uvmat(1:2);4252 pos_set_object(3:4)=UvData.SetObjectSize .* pos_uvmat(3:4);4253 set(hset_object,'Position',pos_set_object)4254 end4248 % pos_uvmat=get(handles.uvmat,'Position'); 4249 % %position the set_object GUI with respect to uvmat 4250 % if isfield(UvData,'SetObjectOrigin') 4251 % pos_set_object(1:2)=UvData.SetObjectOrigin + pos_uvmat(1:2); 4252 % pos_set_object(3:4)=UvData.SetObjectSize .* pos_uvmat(3:4); 4253 % set(hset_object,'Position',pos_set_object) 4254 % end 4255 4255 4256 4256 %project the current field on the object and plot it … … 4262 4262 UvData.Object{IndexObj}.plotaxes=view_field(ProjData); 4263 4263 end 4264 4264 set(handles.uvmat,'UserData',UvData) 4265 4265 hother=findobj('Tag','proj_object');%find all the proj objects 4266 4266 for iobj=1:length(hother)
Note: See TracChangeset
for help on using the changeset viewer.