view m-toolbox/classes/@repogui/cb_tabChanged.m @ 3:960fe1aa1c10
database-connection-manager
Add LTPDADatabaseConnectionManager implementation. Java code
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % CB_TABCHANGED callback executed when the user changes tabs.
+ − %
+ − % M Hewitson 22-09-08
+ − %
+ − % $Id: cb_tabChanged.m,v 1.2 2009/07/29 16:19:38 nicola Exp $
+ − %
+ −
+ − function cb_tabChanged(varargin)
+ −
+ − myh = varargin{1};
+ − edata = varargin{2};
+ − mainfig = varargin{end};
+ −
+ − % Set tab color
+ − set(myh, 'BackgroundColor', mainfig.Gproperties.Gcol{edata.NewValue});
+ − % Set status color
+ − set(findobj(mainfig.handle, 'Tag', 'RepoguiStatusLabel'), 'BackgroundColor', mainfig.Gproperties.Gcol{edata.NewValue});
+ − % Set mainfig color
+ − set(mainfig.handle, 'Color', mainfig.Gproperties.Gcol{edata.NewValue});
+ −
+ − treeHndl = get(findobj(gcf,'Tag','treeHandle'),'UserData');
+ −
+ − switch edata.NewValue
+ − case 2
+ − if ~isempty(treeHndl)
+ − treeHndl.setVisible(true)
+ − else
+ − tree = repogui.cb_treegui();
+ − set(findobj(gcf,'Tag','treeHandle'),'UserData',tree);
+ − end
+ − otherwise
+ − if ~isempty(treeHndl)
+ − treeHndl.setVisible(false)
+ − end
+ − end
+ −
+ − end