diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/m-toolbox/m/gui/gltpda/panXyettocome.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,28 @@
+function varargout = panXyettocome(varargin)
+
+% ========================================================================
+% ======================= Panel yet to come ==============================
+% ========================================================================
+% This is the GUI m-file to show that the relative panel (see ltpdagui.m)
+% is yet to be programmed.
+%
+%  $Id: panXyettocome.m,v 1.1 2008/03/01 13:43:20 nicola Exp $
+
+currPanel   = varargin{1};
+panelDimens = get(currPanel, 'Position');
+backColor   = get(currPanel, 'BackgroundColor');
+
+uicontrol(...
+    'Parent',currPanel,...
+    'BackgroundColor',backColor,...
+    'Units','pixels',...
+    'HorizontalAlignment','center',...
+    'Position',[50, (panelDimens(4)-30)/2, panelDimens(3)-100, 30],...
+    'Fontname','Times New Roman',...
+    'FontSize',13,...
+    'FontAngle','italic',...
+    'String','This panel is yet to come, but it''s not intended for release in v1.0',...
+    'TooltipString','You ain''t seen anything yet',...
+    'Visible','on',...
+    'Style','text');
+