view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_buildPropertiesPanel.m @ 51:9d5c88356247 database-connection-manager

Make unit tests database connection parameters configurable
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:24:37 +0100
parents f0afece42f48
children
line wrap: on
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