0001
0002
0003
0004 function editbox(text,title,button)
0005
0006
0007
0008
0009 if ~exist('title','var')
0010 title='';
0011 end
0012
0013 fig = figure('NumberTitle','off','MenuBar','none','Name',title,'Visible','off');
0014
0015
0016
0017
0018 if exist('button','var')
0019 e=.05;
0020 buttonh=uicontrol('Style','pushbutton','Units','normalized','Position',[.4 0 .2 e],'String','OK','Callback','close');
0021 else
0022 e=0;
0023 end
0024
0025 edith = uicontrol('Style','edit','Units','normalized','Position',[0 e 1 1-e],'BackgroundColor',[1 1 1]);
0026
0027 set(edith, 'FontSize', 10);
0028 set(edith, 'HorizontalAlignment','Left');
0029
0030
0031
0032
0033 set(edith,'Max',length(text));
0034 set(edith,'String',text);
0035
0036 drawnow
0037 set(fig,'Visible','on')
0038