view m-toolbox/test/test_LTPDAprefs_cl_set.m @ 33:5e7477b94d94 database-connection-manager

Add known repositories list to LTPDAPreferences
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

% Check that direct setting of LTPDA preferences is working.
% 
% M Hewitson
% 
% $Id: test_LTPDAprefs_cl_set.m,v 1.1 2010/08/31 08:25:28 hewitson Exp $
% 
function test_LTPDAprefs_cl_set
  
  % Display
  LTPDAprefs('Display', 'verboseLevel', LTPDAprefs.verboseLevel)
  LTPDAprefs('Display', 'wrapstrings', LTPDAprefs.wrapStrings)
  
  % plot
  LTPDAprefs('plot', 'axesFontSize', LTPDAprefs.axesFontSize);
  LTPDAprefs('plot', 'axesFontWeight', LTPDAprefs.axesFontWeight);
  LTPDAprefs('plot', 'axesLineWidth', LTPDAprefs.axesLineWidth);
  LTPDAprefs('plot', 'lineLineWidth', LTPDAprefs.lineLineWidth);
  LTPDAprefs('plot', 'lineMarkerSize', LTPDAprefs.lineMarkerSize);
  LTPDAprefs('plot', 'gridStyle', LTPDAprefs.gridStyle);
  LTPDAprefs('plot', 'minorGridStyle', LTPDAprefs.minorGridStyle);
  
  % time
  LTPDAprefs('time', 'timezone', LTPDAprefs.timezone);
  LTPDAprefs('time', 'timeformat', LTPDAprefs.timeformat);
  
  % misc
  LTPDAprefs('misc', 'default_window', LTPDAprefs.default_window);
  
  
end