Mercurial > hg > aimmat
view aim-mat/gui/aim_getwindowtitle.m @ 3:20ada0af3d7d
various bugfixes and changed copywrite message
author | Stefan Bleeck <bleeck@gmail.com> |
---|---|
date | Tue, 16 Aug 2011 14:36:30 +0100 |
parents | 74dedb26614d |
children |
line wrap: on
line source
% procedure for 'aim-mat' % function namestr=aim_getwindowtitle(handles) % % INPUT VALUES: % RETURN VALUE: % a string with the current graphics window title % % plots the current graphic in the GUI or in the current windowhandle % % % (c) 2011, University of Southampton % Maintained by Stefan Bleeck (bleeck@gmail.com) % download of current version is on the soundsoftware site: % http://code.soundsoftware.ac.uk/projects/aimmat % documentation and everything is on http://www.acousticscale.org function namestr=aim_getwindowtitle(handles) modus=[];modul=[]; str=[handles.info.completesoundfilename]; op=handles.info.current_plot; if op>1 modus='PCP'; modul=handles.info.current_pcp_module; str=[str ' - ' modus ': ' modul]; end if op>2 modus='BMM'; modul=handles.info.current_bmm_module; str=[str ' - ' modus ': ' modul]; end if op>3 modus='NAP'; modul=handles.info.current_nap_module; str=[str ' - ' modus ': ' modul]; end if op>4 modus='STROBES'; modul=handles.info.current_strobes_module; str=[str ' - ' modus ': ' modul]; end if op>5 modus='SAI'; modul=handles.info.current_sai_module; str=[str ' - ' modus ': ' modul]; end if op>6 modus='USER'; modul=handles.info.current_usermodule_module; str=[str ' - ' modus ': ' modul]; end namestr=str;