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