Mercurial > hg > ltpda
comparison m-toolbox/m/gui/ltpdv/callbacks/ltpdv_buildPropertiesPanel.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 ltpdv_buildPropertiesPanel(panH, mainfig) | |
2 | |
3 EditFontSize = 11; | |
4 vmarg = 0.03; | |
5 pmarg = 0.01; | |
6 CommHeight = EditFontSize/400; | |
7 ph = 1-2*vmarg; | |
8 htab = uipanel('Parent', panH, 'Position', [pmarg vmarg 1-2*pmarg ph]); | |
9 set(htab, 'Units', 'Normalized') | |
10 set(htab, 'Title', 'Properties for ') | |
11 set(htab, 'BackgroundColor', [1 1 0.6]); | |
12 set(htab, 'ForegroundColor', 'k'); | |
13 set(htab, 'Tag', 'LTPDVobjectProperties'); | |
14 | |
15 | |
16 | |
17 | |
18 end | |
19 |