view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_buildPropertiesPanel.m @ 41:6def6533cb16
database-connection-manager
Report authentication errors to user
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 18:04:34 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
function ltpdv_buildPropertiesPanel(panH, mainfig)
EditFontSize = 11;
vmarg = 0.03;
pmarg = 0.01;
CommHeight = EditFontSize/400;
ph = 1-2*vmarg;
htab = uipanel('Parent', panH, 'Position', [pmarg vmarg 1-2*pmarg ph]);
set(htab, 'Units', 'Normalized')
set(htab, 'Title', 'Properties for ')
set(htab, 'BackgroundColor', [1 1 0.6]);
set(htab, 'ForegroundColor', 'k');
set(htab, 'Tag', 'LTPDVobjectProperties');
end