comparison m-toolbox/m/gui/gltpda/panXyettocome.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 function varargout = panXyettocome(varargin)
2
3 % ========================================================================
4 % ======================= Panel yet to come ==============================
5 % ========================================================================
6 % This is the GUI m-file to show that the relative panel (see ltpdagui.m)
7 % is yet to be programmed.
8 %
9 % $Id: panXyettocome.m,v 1.1 2008/03/01 13:43:20 nicola Exp $
10
11 currPanel = varargin{1};
12 panelDimens = get(currPanel, 'Position');
13 backColor = get(currPanel, 'BackgroundColor');
14
15 uicontrol(...
16 'Parent',currPanel,...
17 'BackgroundColor',backColor,...
18 'Units','pixels',...
19 'HorizontalAlignment','center',...
20 'Position',[50, (panelDimens(4)-30)/2, panelDimens(3)-100, 30],...
21 'Fontname','Times New Roman',...
22 'FontSize',13,...
23 'FontAngle','italic',...
24 'String','This panel is yet to come, but it''s not intended for release in v1.0',...
25 'TooltipString','You ain''t seen anything yet',...
26 'Visible','on',...
27 'Style','text');
28