Changeset 329 for trunk/src/series.m


Ignore:
Timestamp:
Dec 10, 2011, 2:24:45 PM (12 years ago)
Author:
sommeria
Message:

bugs repaired in series, default size of view_field changed. ';' added in proj_field

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series.m

    r276 r329  
    125125    FieldCell{1}=param.list_fields{param.index_fields};
    126126end
    127 set(hObject,'WindowButtonDownFcn',{'mouse_alt_gui',handles}) % allows mouse action with right button (zoom for uicontrol display)
     127set(hObject,'WindowButtonDownFcn',{'mouse_down'})%allows mouse action with right button (zoom for uicontrol display)
    128128NomType_Callback(hObject, eventdata, handles)
    129129
    130130%loads the information stored in prefdir to initiate  the list of ACTION functions
    131 fct_menu={'check_files';'aver_stat';'time_series';'merge_proj';'clean_civ_cmx'};
     131fct_menu={'check_data_files';'aver_stat';'time_series';'merge_proj';'clean_civ_cmx'};
    132132transform_menu={'';'phys';'px';'phys_polar'};
    133133nb_builtin_ACTION=numel(fct_menu); %number of functions
     
    194194set(handles.transform_fct,'UserData',fct_handle)% store the list of path in UserData of ACTION
    195195
    196 % display the GUI for the default action 'check_files'
     196% display the GUI for the default action 'check_data_files'
    197197ACTION_Callback(hObject, eventdata, handles)
    198198
     
    216216RootFileCell=get(handles.RootFile,'String');
    217217oldfile=''; %default
    218 if isempty(RootPathCell)|isequal(RootPathCell,{''})%loads the previously stored file name and set it as default in the file_input box
     218if isempty(RootPathCell)||isequal(RootPathCell,{''})%loads the previously stored file name and set it as default in the file_input box
    219219     dir_perso=prefdir;
    220220     profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
    221221     if exist(profil_perso,'file')
    222222          h=load (profil_perso);
    223          if isfield(h,'filebase')&ischar(h.filebase)
     223         if isfield(h,'filebase')&&ischar(h.filebase)
    224224                 oldfile=h.filebase;
    225225         end
    226          if isfield(h,'RootPath')&ischar(h.RootPath)
     226         if isfield(h,'RootPath')&&ischar(h.RootPath)
    227227                 oldfile=h.RootPath;
    228228         end
     
    743743last_i_Callback(hObject, eventdata, handles)
    744744
    745 %------------------------------------------------------------
     745%------------------------------------------------------------------------
    746746function RootPath_Callback(hObject, eventdata, handles)
     747%------------------------------------------------------------------------
    747748Val=get(handles.RootPath,'Value');
    748749synchronise_view(handles,Val)
    749750NomType_Callback(hObject, eventdata, handles)
    750 %------------------------------------------------------------
    751 
     751
     752%------------------------------------------------------------------------
    752753function synchronise_view(handles,Val)
     754%------------------------------------------------------------------------
    753755set(handles.RootPath,'Value',Val)
    754756set(handles.SubDir,'Value',Val)
     
    762764
    763765
    764 %---------------------------------------------------------
     766%------------------------------------------------------------------------
    765767% Executes on carriage return on the subdir civ1 edit window
    766 %--------------------------------------------------------
    767768function SubDir_Callback(hObject, eventdata, handles)
    768 
     769%------------------------------------------------------------------------
    769770Val=get(handles.SubDir,'Value');
    770771synchronise_view(handles,Val)
    771772NomType_Callback(hObject, eventdata, handles)
    772773
    773 %--------------------------------------------------------------
    774 %function activated when a new filebase (image series) is introduced
    775 %------------------------------------------------------------
     774%------------------------------------------------------------------------
     775% --- function activated when a new filebase (image series) is introduced
    776776function RootFile_Callback(hObject, eventdata, handles)
     777%------------------------------------------------------------------------
    777778Val=get(handles.RootFile,'Value');
    778779synchronise_view(handles,Val)
     
    813814Val=get(handles.time_last,'Value');
    814815synchronise_view(handles,Val)
    815 
    816 %--------------------------------------------------------------
    817 %function activated by NomType
    818 %------------------------------------------------------------
    819816NomType_Callback(hObject, eventdata, handles)
    820817
Note: See TracChangeset for help on using the changeset viewer.