'Cancel' 'Done' push button$B$N(BCallback$B4X?t(B Copyright (C) 2011, ATR All Rights Reserved. License : New BSD License(see VBMEG_LICENSE.txt)
0001 function [] = close_gui(obj, eventdata, dialog, action) 0002 % 'Cancel' 'Done' push button$B$N(BCallback$B4X?t(B 0003 % 0004 % Copyright (C) 2011, ATR All Rights Reserved. 0005 % License : New BSD License(see VBMEG_LICENSE.txt) 0006 0007 this = get(dialog, 'UserData'); 0008 switch lower(action) 0009 case 'done' 0010 case 'cancel', 0011 this.public.current_dir = []; 0012 this.private.current_file = {}; 0013 end 0014 0015 % Dialog$B$rHsI=<(2=$9$k!#(B 0016 set(dialog, 'visible', 'off', 'UserData', this);